Package net.imglib2

Class RealPointSample<T>

    • Field Detail

      • sampleSupplier

        protected final java.util.function.Supplier<T> sampleSupplier
    • Constructor Detail

      • RealPointSample

        protected RealPointSample​(java.util.function.Supplier<T> sampleSupplier,
                                  double[] position,
                                  boolean copyPosition)
        Protected constructor that can re-use the passed position array.
        Parameters:
        sampleSupplier -
        position - array used to store the position.
        copyPosition - flag indicating whether position array should be duplicated.
      • RealPointSample

        public RealPointSample​(java.util.function.Supplier<T> sampleSupplier,
                               int n)
        Create a point in nDimensional space initialized to 0,0,...
        Parameters:
        n - number of dimensions of the space
      • RealPointSample

        public RealPointSample​(java.util.function.Supplier<T> sampleSupplier,
                               double... position)
        Create a point at a definite location in a space of the dimensionality of the position.
        Parameters:
        position - the initial position. The length of the array determines the dimensionality of the space.
      • RealPointSample

        public RealPointSample​(java.util.function.Supplier<T> sampleSupplier,
                               float... position)
        Create a point at a definite location in a space of the dimensionality of the position.
        Parameters:
        position - the initial position. The length of the array determines the dimensionality of the space.
      • RealPointSample

        public RealPointSample​(java.util.function.Supplier<T> sampleSupplier,
                               RealLocalizable localizable)
        Create a point using the position and dimensionality of a RealLocalizable
        Parameters:
        localizable - the initial position. Its dimensionality determines the dimensionality of the space.
    • Method Detail

      • fwd

        public void fwd​(int d)
        Description copied from interface: Positionable
        Move by 1 in one dimension.
        Specified by:
        fwd in interface Positionable
        Parameters:
        d - dimension
      • bck

        public void bck​(int d)
        Description copied from interface: Positionable
        Move by -1 in one dimension.
        Specified by:
        bck in interface Positionable
        Parameters:
        d - dimension
      • move

        public void move​(int distance,
                         int d)
        Description copied from interface: Positionable
        Move the element in one dimension for some distance.
        Specified by:
        move in interface Positionable
        Parameters:
        distance - relative offset in dimension d
        d - dimension
      • move

        public void move​(long distance,
                         int d)
        Description copied from interface: Positionable
        Move the element in one dimension for some distance.
        Specified by:
        move in interface Positionable
        Parameters:
        distance - relative offset in dimension d
        d - dimension
      • move

        public void move​(int[] distance)
        Description copied from interface: Positionable
        Move the element relative to its current location using an int[] as distance vector.
        Specified by:
        move in interface Positionable
        Parameters:
        distance - relative offset, length must be ≥ EuclideanSpace.numDimensions()
      • move

        public void move​(long[] distance)
        Description copied from interface: Positionable
        Move the element relative to its current location using a long[] as distance vector.
        Specified by:
        move in interface Positionable
        Parameters:
        distance - relative offset, length must be ≥ EuclideanSpace.numDimensions()
      • setPosition

        public void setPosition​(int position,
                                int d)
        Description copied from interface: Positionable
        Set the position of the element for one dimension.
        Specified by:
        setPosition in interface Positionable
        Parameters:
        position - absolute position in dimension d
        d - dimension
      • setPosition

        public void setPosition​(long position,
                                int d)
        Description copied from interface: Positionable
        Set the position of the element for one dimension.
        Specified by:
        setPosition in interface Positionable
        Parameters:
        position - absolute position in dimension d
        d - dimension
      • move

        public void move​(float distance,
                         int d)
        Description copied from interface: RealPositionable
        Move the element in one dimension for some distance.
        Specified by:
        move in interface RealPositionable
      • move

        public void move​(double distance,
                         int d)
        Description copied from interface: RealPositionable
        Move the element in one dimension for some distance.
        Specified by:
        move in interface RealPositionable
      • setPosition

        public void setPosition​(float position,
                                int d)
        Description copied from interface: RealPositionable
        Set the position of the element for one dimension.
        Specified by:
        setPosition in interface RealPositionable
      • setPosition

        public void setPosition​(double position,
                                int d)
        Description copied from interface: RealPositionable
        Set the position of the element for one dimension.
        Specified by:
        setPosition in interface RealPositionable
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • wrap

        public static <T> RealPointSample<T> wrap​(T sample,
                                                  double[] position)
        Create a RealPointSample that carries the provided sample and stores its coordinates in the provided position array. Note that making a copy() of the result will not make a copy of the sample.
        Parameters:
        sample - the re-usable sample instance that is used by this PointSample (like Type)
        position - array to use for storing the position.
      • wrapSupplier

        public static <T> RealPointSample<T> wrapSupplier​(java.util.function.Supplier<T> sampleSupplier,
                                                          double[] position)
        Create a RealPointSample that carries the provided sample and stores its coordinates in the provided position array.
        Parameters:
        sampleSupplier - a supplier to create the sample instance (can be () -> t) for instances that are re-used (like Type).
        position - array to use for storing the position.
      • get

        public T get()
        Description copied from interface: Sampler
        Access the actual T instance providing access to a pixel, sub-pixel or integral region value the Sampler points at.
        Specified by:
        get in interface Sampler<T>
      • getType

        public T getType()
        Description copied from interface: Typed
        Get an instance of T.

        It should not be assumed that the returned T instance is an independent copy. In particular, repeated calls to getType() may return the same instance.

        Specified by:
        getType in interface Sampler<T>
        Specified by:
        getType in interface Typed<T>
        Returns:
        an instance of T
      • copy

        public RealPointSample<T> copy()
        Specified by:
        copy in interface RealRandomAccess<T>
        Specified by:
        copy in interface Sampler<T>
        Returns:
        - A new Sampler in the same state accessing the same values. It does NOT copy T, just the state of the Sampler. Otherwise use T.copy() if available. Sampler.copy().get() == Sampler.get(), i.e. both hold the same value, not necessarily the same instance (this is the case for an ArrayCursor for example)