Uses of Interface
boofcv.alg.interpolate.InterpolateRectangle
Package
Description
-
Uses of InterpolateRectangle in boofcv.abst.tracker
ModifierConstructorDescriptionPointTrackerKltPyramid
(ConfigKlt config, double toleranceFB, int templateRadius, boolean performPruneClose, PyramidDiscrete<I> pyramid, GeneralFeatureDetector<I, D> detector, ImageGradient<I, D> gradient, InterpolateRectangle<I> interpInput, InterpolateRectangle<D> interpDeriv, Class<D> derivType) Constructor which specified the KLT track manager and how the image pyramids are computed.PointTrackerKltPyramid_MT
(ConfigKlt config, double toleranceFB, int templateRadius, boolean performPruneClose, PyramidDiscrete<I> pyramid, GeneralFeatureDetector<I, D> detector, ImageGradient<I, D> gradient, InterpolateRectangle<I> interpInput, InterpolateRectangle<D> interpDeriv, Class<D> derivType) -
Uses of InterpolateRectangle in boofcv.alg.interpolate
Modifier and TypeMethodDescriptionInterpolateRectangle.copy()
Creates new instance that's configured the same but completely decoupledInterpolateRectangle.copyConcurrent()
Creates a copy that can be run in parallel with the original as long as the image isn't modified -
Uses of InterpolateRectangle in boofcv.alg.interpolate.impl
Modifier and TypeClassDescriptionclass
Performs bilinear interpolation to extract values between pixels in an image.class
Performs bilinear interpolation to extract values between pixels in an image.class
Performs bilinear interpolation to extract values between pixels in an image.class
Nearest Neighbor interpolation for a rectangular regionModifier and TypeMethodDescriptionBilinearRectangle_F32.copy()
BilinearRectangle_S16.copy()
BilinearRectangle_U8.copy()
NearestNeighborRectangle_F32.copy()
BilinearRectangle_F32.copyConcurrent()
BilinearRectangle_S16.copyConcurrent()
BilinearRectangle_U8.copyConcurrent()
NearestNeighborRectangle_F32.copyConcurrent()
-
Uses of InterpolateRectangle in boofcv.alg.tracker.klt
Modifier and TypeFieldDescriptionprotected InterpolateRectangle<D>
KltTracker.interpDeriv
protected InterpolateRectangle<I>
KltTracker.interpInput
ModifierConstructorDescriptionKltTracker
(InterpolateRectangle<I> interpInput, InterpolateRectangle<D> interpDeriv, ConfigKlt config) -
Uses of InterpolateRectangle in boofcv.factory.interpolate
Modifier and TypeMethodDescriptionstatic <T extends ImageGray<T>>
InterpolateRectangle<T>FactoryInterpolation.bilinearRectangle
(Class<T> type) static <T extends ImageGray<T>>
InterpolateRectangle<T>FactoryInterpolation.bilinearRectangle
(T image) static <T extends ImageGray<T>>
InterpolateRectangle<T>FactoryInterpolation.nearestNeighborRectangle
(Class<?> type)