net.imglib2.img.unsafe.UnsafeImg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imglib2-unsafe Show documentation
Show all versions of imglib2-unsafe Show documentation
ImgLib2 data structures using Unsafe.
The newest version!
/*
* #%L
* ImgLib2 data structures using Unsafe.
* %%
* Copyright (C) 2017 - 2024 Howard Hughes Medical Institute.
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* #L%
*/
package net.imglib2.img.unsafe;
import net.imglib2.FlatIterationOrder;
import net.imglib2.Interval;
import net.imglib2.img.AbstractNativeLongAccessImg;
import net.imglib2.img.Img;
import net.imglib2.type.NativeLongAccessType;
import net.imglib2.util.Fraction;
import net.imglib2.util.IntervalIndexer;
import net.imglib2.util.Intervals;
import net.imglib2.view.iteration.SubIntervalIterable;
/**
* This {@link Img} stores an image in a single linear array of basic types. By
* that, it provides the fastest possible access to data while limiting the
* number of basic types stored to {@link Integer#MAX_VALUE}. Keep in mind that
* this does not necessarily reflect the number of pixels, because a pixel can
* be stored in less than or more than a basic type entry.
*
* @param
* @param
*
* @author Stephan Preibisch
* @author Stephan Saalfeld
*/
public class UnsafeImg< T extends NativeLongAccessType< T >, A > extends AbstractNativeLongAccessImg< T, A > implements SubIntervalIterable< T >
{
final long[] steps, dim;
// the DataAccess created by the ArrayContainerFactory
final private A data;
/**
* TODO check for the size of numPixels being {@code < Integer.MAX_VALUE}?
* TODO Type is suddenly not necessary anymore
*
* @param data
* @param dim
* @param entitiesPerPixel
*/
public UnsafeImg( final A data, final long[] dim, final Fraction entitiesPerPixel )
{
super( dim, entitiesPerPixel );
this.dim = dim;
this.steps = new long[ n ];
IntervalIndexer.createAllocationSteps( this.dim, this.steps );
this.data = data;
}
@Override
public A update( final Object o )
{
return data;
}
@Override
public UnsafeCursor< T > cursor()
{
return new UnsafeCursor<>( this );
}
@Override
public UnsafeLocalizingCursor< T > localizingCursor()
{
return new UnsafeLocalizingCursor<>( this );
}
@Override
public UnsafeRandomAccess< T > randomAccess()
{
return new UnsafeRandomAccess<>( this );
}
@Override
public UnsafeRandomAccess< T > randomAccess( final Interval interval )
{
return randomAccess();
}
@Override
public FlatIterationOrder iterationOrder()
{
return new FlatIterationOrder( this );
}
@Override
public UnsafeImgFactory< T > factory()
{
return new UnsafeImgFactory<>();
}
@Override
public UnsafeImg< T, ? > copy()
{
final UnsafeImg< T, ? > copy = factory().create( dimension, firstElement().createVariable() );
final UnsafeCursor< T > source = this.cursor();
final UnsafeCursor< T > target = copy.cursor();
while ( source.hasNext() )
target.next().set( source.next() );
return copy;
}
/**
* {@inheritDoc}
*/
@Override
public UnsafeSubIntervalCursor< T > cursor( final Interval interval )
{
final int dimLength = fastCursorAvailable( interval );
assert dimLength > 0;
return new UnsafeSubIntervalCursor<>( this, ( int ) offset( interval ), ( int ) size( interval, dimLength ) );
}
private long size( final Interval interval, final int length )
{
long size = interval.dimension( 0 );
for ( int d = 1; d < length; ++d )
size *= interval.dimension( d );
return size;
}
private long offset( final Interval interval )
{
final int maxDim = numDimensions() - 1;
long i = interval.min( maxDim );
for ( int d = maxDim - 1; d >= 0; --d )
i = i * dimension( d ) + interval.min( d );
return i;
}
/**
* If method returns -1 no fast cursor is available, else the amount of dims
* (starting from zero) which can be iterated fast are returned.
*/
private int fastCursorAvailable( final Interval interval )
{
// first check whether the interval is completely contained.
if ( !Intervals.contains( this, interval ) )
return -1;
// find the first dimension in which image and interval differ
int dimIdx = 0;
for ( ; dimIdx < n; ++dimIdx )
if ( interval.dimension( dimIdx ) != dimension( dimIdx ) )
break;
if ( dimIdx == n )
return dimIdx;
// in the dimension after that, image and interval may differ
++dimIdx;
// but image extents of all higher dimensions must equal 1
for ( int d = dimIdx; d < n; ++d )
if ( interval.dimension( d ) != 1 )
return -1;
return dimIdx;
}
/**
* {@inheritDoc}
*/
@Override
public UnsafeLocalizingSubIntervalCursor< T > localizingCursor( final Interval interval )
{
final int dimLength = fastCursorAvailable( interval );
assert dimLength > 0;
return new UnsafeLocalizingSubIntervalCursor<>( this, ( int ) offset( interval ), ( int ) size( interval, dimLength ) );
}
/**
* {@inheritDoc}
*/
@Override
public boolean supportsOptimizedCursor( final Interval interval )
{
return fastCursorAvailable( interval ) > 0;
}
/**
* {@inheritDoc}
*/
@Override
public Object subIntervalIterationOrder( final Interval interval )
{
return new FlatIterationOrder( interval );
}
@Override
public T getType()
{
return linkedType;
}
}