Interface RandomAccessible<T>

All Superinterfaces:
EuclideanSpace, Typed<T>
All Known Subinterfaces:
Img<T>, NativeImg<T,A>, RandomAccessibleInterval<T>, TransformedRandomAccessible<T>
All Known Implementing Classes:
AbstractCellImg, AbstractConvertedIterableRandomAccessibleInterval, AbstractConvertedRandomAccessible, AbstractConvertedRandomAccessibleInterval, AbstractImg, AbstractListImg, AbstractLongListImg, AbstractNativeImg, ARGBScreenImage, ArrayImg, ArrayImgAWTScreenImage, BiConvertedRandomAccessible, BiConvertedRandomAccessibleInterval, BundleView, ByteAWTScreenImage, CellGrid.CellIntervals, CellImg, CompositeIntervalView, CompositeView, ConvertedRandomAccessible, ConvertedRandomAccessibleInterval, DiscreteFrequencyDistribution, DoubleAWTScreenImage, ExtendedRandomAccessibleInterval, FloatAWTScreenImage, FunctionRandomAccessible, FunctionView, Grid.CellIntervals, Histogram1d, HistogramNd, HyperSlice, HyperSlicesView, ImgView, InflateView, IntAWTScreenImage, InterleaveView, IntervalView, IterableRandomAccessibleInterval, LazyCellImg, LazyCellImg.LazyCells, ListImg, Localizables.LocationRandomAccessible, MixedTransformView, NtreeImg, PlanarImg, PositionRandomAccessible, RandomAccessibleOnRealRandomAccessible, RandomAccessiblePair, ShortAWTScreenImage, StackView, SubsampleIntervalView, SubsampleView, TransformView, UnsignedByteAWTScreenImage, UnsignedIntAWTScreenImage, UnsignedShortAWTScreenImage, WriteConvertedIterableRandomAccessibleInterval, WriteConvertedRandomAccessible, WriteConvertedRandomAccessibleInterval

public interface RandomAccessible<T> extends EuclideanSpace, Typed<T>

f:Zn→T

A function over integer space that can create a random access Sampler.

If your algorithm takes a RandomAccessible, this usually means that you expect that the domain is infinite. (In contrast to this, RandomAccessibleIntervals have a finite domain.)

A RandomAccessible might be defined only partially. You should be aware of this especially when creating RandomAccessibleIntervals. While it is straightforward to turn a RandomAccessible into a RandomAccessibleInterval by adding interval boundaries via Views.interval(RandomAccessible, long[], long[]), it is your responsibility to ensure that the RandomAccessible is fully defined within these boundaries.

  • Method Details

    • randomAccess

      RandomAccess<T> randomAccess()
      Create a random access sampler for integer coordinates.

      The returned random access covers as much of the domain as possible.

      Please note: RandomAccessibleIntervals have a finite domain (their Interval), so randomAccess() is only guaranteed to cover this finite domain. This may lead to unexpected results when using Views. In the following code
      RandomAccessible<T> extended = Views.extendBorder( img )
      RandomAccessibleInterval<T> cropped = Views.interval( extended, img );
      RandomAccess<T> a1 = extended.randomAccess();
      RandomAccess<T> a2 = cropped.randomAccess();
      
      The access a1 on the extended image is valid everywhere. However, somewhat counter-intuitively, the access a2 on the extended and cropped image is only valid on the interval img to which the extended image was cropped. The access is only required to cover this interval, because it is the domain of the cropped image. Views attempts to provide the fastest possible access that meets this requirement, and will therefore strip the extension. To deal with this, if you know that you need to access pixels outside the domain of the RandomAccessibleInterval, and you know that the RandomAccessibleInterval is actually defined beyond its interval boundaries, then use the randomAccess(Interval) variant and specify which interval you actually want to access. In the above example,
      RandomAccess<T> a2 = cropped.randomAccess( Intervals.expand( img, 10 ) );
      
      will provide the extended access as expected.
      Returns:
      random access sampler
    • randomAccess

      RandomAccess<T> randomAccess(Interval interval)
      Create a random access sampler for integer coordinates.

      The returned random access is intended to be used in the specified interval only. Thus, the RandomAccessible may provide optimized versions. If the interval is completely contained in the domain, the random access is guaranteed to provide the same values as that obtained by randomAccess() within the interval.

      Parameters:
      interval - in which interval you intend to use the random access.
      Returns:
      random access sampler
    • getAt

      default T getAt(long... position)
      Convenience method to query a RandomAccessible for the value at a position.

      WARNING: This method is VERY SLOW, and memory inefficient when used in tight loops, or called many times!!! Use randomAccess() when efficiency is important.

      This method is a short cut for randomAccess().setPositionAndGet( position );

      Parameters:
      position - , length must be ≥ EuclideanSpace.numDimensions()
      Returns:
      value of the the RandomAccessible at position.
    • getAt

      default T getAt(int... position)
      Convenience method to query a RandomAccessible for the value at a position.

      WARNING: This method is VERY SLOW, and memory inefficient when used in tight loops, or called many times!!! Use randomAccess() when efficiency is important.

      This method is a short cut for randomAccess().setPositionAndGet( position );

      Parameters:
      position - , length must be ≥ EuclideanSpace.numDimensions()
      Returns:
      value of the the RandomAccessible at position.
    • getAt

      default T getAt(Localizable position)
      Convenience method to query a RandomAccessible for the value at a position.

      WARNING: This method is VERY SLOW, and memory inefficient when used in tight loops, or called many times!!! Use randomAccess() when efficiency is important.

      This method is a short cut for randomAccess().setPositionAndGet( position );

      Parameters:
      position - , EuclideanSpace.numDimensions() must be ≥ EuclideanSpace.numDimensions()
      Returns:
      value of the the RandomAccessible at position.