Uses of Interface
boofcv.abst.feature.orientation.RegionOrientation
Packages that use RegionOrientation
Package
Description
-
Uses of RegionOrientation in boofcv.abst.feature.orientation
Subinterfaces of RegionOrientation in boofcv.abst.feature.orientationModifier and TypeInterfaceDescriptioninterfaceOrientationGradient<D extends ImageGray<D>>Estimates the orientation of a region from the image gradient.interfaceOrientationImage<T extends ImageGray<T>>Estimates the orientation of a region directly from the image's pixels.interfaceOrientationIntegral<II extends ImageGray<II>>Estimate the orientation of an image from anintegral image.Classes in boofcv.abst.feature.orientation that implement RegionOrientationModifier and TypeClassDescriptionclassOrientationGradientToImage<T extends ImageGray<T>,D extends ImageGray<D>> Converts an implementation ofOrientationGradientintoOrientationImage.classOrientationIntegralToImage<T extends ImageGray<T>,II extends ImageGray<II>> Converts an implementation ofOrientationIntegralintoOrientationImage.classOrientationSiftToImage<T extends ImageGray<T>>Wrapper aroundOrientationHistogramSiftforOrientationImage.Methods in boofcv.abst.feature.orientation that return RegionOrientation -
Uses of RegionOrientation in boofcv.alg.feature.orientation
Classes in boofcv.alg.feature.orientation that implement RegionOrientationModifier and TypeClassDescriptionclassOrientationAverage<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.classOrientationHistogram<D extends ImageGray<D>>Estimates the orientation by creating a histogram of discrete angles around the entire circle.classOrientationImageAverage<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.classOrientationIntegralBase<II extends ImageGray<II>,G extends GradientValue> Common base class for integral image region orientation algorithms.classOrientationSlidingWindow<D extends ImageGray<D>>Estimates the orientation by sliding window across all angles. -
Uses of RegionOrientation in boofcv.alg.feature.orientation.impl
Classes in boofcv.alg.feature.orientation.impl that implement RegionOrientationModifier and TypeClassDescriptionclassImplementation ofOrientationAveragefor a specific image type.classImplementation ofOrientationAveragefor a specific image type.classImplementation ofOrientationAveragefor a specific image type.classImplOrientationAverageGradientIntegral<T extends ImageGray<T>,G extends GradientValue> Estimates the orientation of a region by computing the image derivative from an integral image.classImplementation ofOrientationHistogramfor a specific image type.classImplementation ofOrientationHistogramfor a specific image type.classImplementation ofOrientationHistogramfor a specific image type.classImplementation ofOrientationImageAveragefor a specific image type.classImplementation ofOrientationImageAveragefor a specific image type.classImplOrientationImageAverageIntegral<T extends ImageGray<T>,G extends GradientValue> Estimates the orientation of a region using a "derivative free" method.classImplementation ofOrientationSlidingWindowfor a specific image type.classImplementation ofOrientationSlidingWindowfor a specific image type.classImplementation ofOrientationSlidingWindowfor a specific image type.classImplOrientationSlidingWindowIntegral<T extends ImageGray<T>,G extends GradientValue> Implementation ofOrientationSlidingWindowfor integral images.Methods in boofcv.alg.feature.orientation.impl that return RegionOrientationModifier 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
Methods in boofcv.factory.feature.orientation with parameters of type RegionOrientationModifier and TypeMethodDescriptionstatic <T extends ImageGray<T>>
OrientationImage<T>FactoryOrientation.convertImage(RegionOrientation algorithm, Class<T> imageType) Adds wrappers around implementations ofRegionOrientationsuch that they can be used as aOrientationImage.