Uses of Interface
net.imglib2.RealCursor
Packages that use RealCursor
Package
Description
-
Uses of RealCursor in net.imglib2
Subinterfaces of RealCursor in net.imglib2Modifier and TypeInterfaceDescriptioninterfaceCursor<T>A Cursor iterates over a set of Localizable elements, for example the image values at the (integer) pixel positions of an image.Classes in net.imglib2 that implement RealCursorModifier and TypeClassDescriptionclassAbstract implementation ofCursor.classAbstract implementation ofCursor.classAbstract base class for localizingCursors.classAbstract base class for localizingCursors.final classclassclassMethods in net.imglib2 that return RealCursorModifier and TypeMethodDescriptionRealCursor.copy()RealPointSampleList.RealPointSampleListCursor.copy()default RealCursor<T> RealCursor.copyCursor()Deprecated.IterableRealInterval.cursor()Returns aRealCursorthat iterates with optimal speed without calculating the location at each iteration step.RealPointSampleList.cursor()IterableRealInterval.localizingCursor()Returns aRealLocalizableIteratorthat calculates its location at each iteration step.RealPointSampleList.localizingCursor() -
Uses of RealCursor in net.imglib2.converter
Classes in net.imglib2.converter that implement RealCursorModifier and TypeClassDescriptionclassTODOclassTODOFields in net.imglib2.converter declared as RealCursorModifier and TypeFieldDescriptionprotected final RealCursor<A> AbstractConvertedRealCursor.sourceConstructors in net.imglib2.converter with parameters of type RealCursor -
Uses of RealCursor in net.imglib2.converter.read
Classes in net.imglib2.converter.read that implement RealCursorModifier and TypeClassDescriptionclassBiConvertedCursor<A,B, C> TODOclassBiConvertedRealCursor<A,B, C> TODOclassConvertedCursor<A,B> TODOclassConvertedRealCursor<A,B> TODOFields in net.imglib2.converter.read declared as RealCursorConstructors in net.imglib2.converter.read with parameters of type RealCursorModifierConstructorDescriptionBiConvertedRealCursor(RealCursor<A> sourceA, RealCursor<B> sourceB, Supplier<BiConverter<? super A, ? super B, ? super C>> converterSupplier, Supplier<? extends C> convertedSupplier) Creates a copy of c for conversion that can be accessed throughBiConvertedRealCursor.get().BiConvertedRealCursor(RealCursor<A> sourceA, RealCursor<B> sourceB, BiConverter<? super A, ? super B, ? super C> converter, Supplier<? extends C> convertedSupplier) Creates a copy of c for conversion that can be accessed throughBiConvertedRealCursor.get().ConvertedRealCursor(RealCursor<A> source, Supplier<Converter<? super A, ? super B>> converterSupplier, Supplier<? extends B> convertedSupplier) Creates a copy of b for conversion that can be accessed throughConvertedRealCursor.get().ConvertedRealCursor(RealCursor<A> source, Converter<? super A, ? super B> converter, Supplier<? extends B> convertedSupplier) Creates a copy of b for conversion that can be accessed throughConvertedRealCursor.get(). -
Uses of RealCursor in net.imglib2.converter.readwrite
Classes in net.imglib2.converter.readwrite that implement RealCursorConstructors in net.imglib2.converter.readwrite with parameters of type RealCursorModifierConstructorDescriptionWriteConvertedRealCursor(RealCursor<A> source, Supplier<SamplerConverter<? super A, B>> converterSupplier) WriteConvertedRealCursor(RealCursor<A> source, SamplerConverter<? super A, B> converter) -
Uses of RealCursor in net.imglib2.img.array
Classes in net.imglib2.img.array that implement RealCursorModifier and TypeClassDescriptionclassAbstractArrayCursor<T extends NativeType<T>>classAbstractArrayLocalizingCursor<T extends NativeType<T>>final classArrayCursor<T extends NativeType<T>>final classArrayLocalizingCursor<T extends NativeType<T>>final classArrayLocalizingSubIntervalCursor<T extends NativeType<T>>LocalizingAbstractArrayLocalizingCursoron anArrayImg.final classArraySubIntervalCursor<T extends NativeType<T>> -
Uses of RealCursor in net.imglib2.img.cell
Classes in net.imglib2.img.cell that implement RealCursorModifier and TypeClassDescriptionclassCellCursor<T extends NativeType<T>, C extends Cell<?>>Cursoron aAbstractCellImg.classCellLocalizingCursor<T extends NativeType<T>, C extends Cell<?>>LocalizingCursoron aAbstractCellImg. -
Uses of RealCursor in net.imglib2.img.list
Classes in net.imglib2.img.list that implement RealCursor -
Uses of RealCursor in net.imglib2.img.planar
Classes in net.imglib2.img.planar that implement RealCursorModifier and TypeClassDescriptionclassPlanarCursor<T extends NativeType<T>>Basic Iterator forPlanarContainersclassPlanarCursor1D<T extends NativeType<T>>Basic Iterator for 1dPlanarContainersclassPlanarCursor2D<T extends NativeType<T>>Basic Iterator for 2dPlanarContainersclassPlanarLocalizingCursor<T extends NativeType<T>>Localizing Iterator for aPlanarContainersclassPlanarLocalizingCursor1D<T extends NativeType<T>>TODOclassPlanarLocalizingCursor2D<T extends NativeType<T>>TODOclassPlanarPlaneSubsetCursor<T extends NativeType<T>>Basic Iterator forPlanarContainersclassPlanarPlaneSubsetLocalizingCursor<T extends NativeType<T>>Cursor optimized for one plane in an PlanarImg. -
Uses of RealCursor in net.imglib2.img.sparse
Classes in net.imglib2.img.sparse that implement RealCursor -
Uses of RealCursor in net.imglib2.neighborsearch
Fields in net.imglib2.neighborsearch declared as RealCursorModifier and TypeFieldDescriptionprotected RealCursor<T> NearestNeighborSearchOnIterableRealInterval.elementprotected final RealCursor<T>[]KNearestNeighborSearchOnIterableRealInterval.elementsMethods in net.imglib2.neighborsearch that return RealCursor -
Uses of RealCursor in net.imglib2.stream
Fields in net.imglib2.stream declared as RealCursorModifier and TypeFieldDescriptionprivate final RealCursor<T> RealCursorSpliterator.cursorThe underlying cursor, positioned such thatcursor.next()yields the element atindex.Constructors in net.imglib2.stream with parameters of type RealCursorModifierConstructorDescriptionRealCursorSpliterator(RealCursor<T> cursor, long origin, long fence, int additionalCharacteristics) Creates a spliterator covering the given range. -
Uses of RealCursor in net.imglib2.view
Classes in net.imglib2.view that implement RealCursorModifier and TypeClassDescriptionfinal classACursorthat iterates anyRandomAccessibleIntervalby moving aRandomAccessin flat iteration order. -
Uses of RealCursor in net.imglib2.view.iteration
Classes in net.imglib2.view.iteration that implement RealCursorModifier and TypeClassDescriptionclassWrap a cursor that runs on a hyperslice and apply coordinate transform on localize calls.
RealCursor.copy()instead