Uses of Interface
boofcv.abst.feature.orientation.RegionOrientation
Package
Description
-
Uses of RegionOrientation in boofcv.abst.feature.orientation
Modifier and TypeInterfaceDescriptioninterface
OrientationGradient<D extends ImageGray<D>>
Estimates the orientation of a region from the image gradient.interface
OrientationImage<T extends ImageGray<T>>
Estimates the orientation of a region directly from the image's pixels.interface
OrientationIntegral<II extends ImageGray<II>>
Estimate the orientation of an image from anintegral image
.Modifier and TypeClassDescriptionclass
OrientationGradientToImage<T extends ImageGray<T>,
D extends ImageGray<D>> Converts an implementation ofOrientationGradient
intoOrientationImage
.class
OrientationIntegralToImage<T extends ImageGray<T>,
II extends ImageGray<II>> Converts an implementation ofOrientationIntegral
intoOrientationImage
.class
OrientationSiftToImage<T extends ImageGray<T>>
Wrapper aroundOrientationHistogramSift
forOrientationImage
. -
Uses of RegionOrientation in boofcv.alg.feature.orientation
Modifier and TypeClassDescriptionclass
OrientationAverage<D extends ImageGray<D>>
Computes the orientation of a region by summing up the derivative along each axis independently then computing the direction fom the sum.class
OrientationHistogram<D extends ImageGray<D>>
Estimates the orientation by creating a histogram of discrete angles around the entire circle.class
OrientationImageAverage<T extends ImageGray<T>>
Computes the orientation of a region by computing a weighted sum of each pixel's intensity using their respective sine and cosine values.class
OrientationIntegralBase<II extends ImageGray<II>,
G extends GradientValue> Common base class for integral image region orientation algorithms.class
OrientationSlidingWindow<D extends ImageGray<D>>
Estimates the orientation by sliding window across all angles. -
Uses of RegionOrientation in boofcv.alg.feature.orientation.impl
Modifier and TypeClassDescriptionclass
Implementation ofOrientationAverage
for a specific image type.class
Implementation ofOrientationAverage
for a specific image type.class
Implementation ofOrientationAverage
for a specific image type.class
ImplOrientationAverageGradientIntegral<T extends ImageGray<T>,
G extends GradientValue> Estimates the orientation of a region by computing the image derivative from an integral image.class
Implementation ofOrientationHistogram
for a specific image type.class
Implementation ofOrientationHistogram
for a specific image type.class
Implementation ofOrientationHistogram
for a specific image type.class
Implementation ofOrientationImageAverage
for a specific image type.class
Implementation ofOrientationImageAverage
for a specific image type.class
ImplOrientationImageAverageIntegral<T extends ImageGray<T>,
G extends GradientValue> Estimates the orientation of a region using a "derivative free" method.class
Implementation ofOrientationSlidingWindow
for a specific image type.class
Implementation ofOrientationSlidingWindow
for a specific image type.class
Implementation ofOrientationSlidingWindow
for a specific image type.class
ImplOrientationSlidingWindowIntegral<T extends ImageGray<T>,
G extends GradientValue> Implementation ofOrientationSlidingWindow
for integral images.Modifier and TypeMethodDescriptionImplOrientationAverage_F32.copy()
ImplOrientationAverage_S16.copy()
ImplOrientationAverage_S32.copy()
ImplOrientationAverageGradientIntegral.copy()
ImplOrientationHistogram_F32.copy()
ImplOrientationHistogram_S16.copy()
ImplOrientationHistogram_S32.copy()
ImplOrientationImageAverage_F32.copy()
ImplOrientationImageAverage_U8.copy()
ImplOrientationImageAverageIntegral.copy()
ImplOrientationSlidingWindow_F32.copy()
ImplOrientationSlidingWindow_S16.copy()
ImplOrientationSlidingWindow_S32.copy()
ImplOrientationSlidingWindowIntegral.copy()
-
Uses of RegionOrientation in boofcv.factory.feature.orientation
Modifier and TypeMethodDescriptionstatic <T extends ImageGray<T>>
OrientationImage<T>FactoryOrientation.convertImage
(RegionOrientation algorithm, Class<T> imageType) Adds wrappers around implementations ofRegionOrientation
such that they can be used as aOrientationImage
.