Uses of Interface
boofcv.abst.feature.orientation.OrientationImage
Packages that use OrientationImage
Package
Description
-
Uses of OrientationImage in boofcv.abst.feature.describe
Constructors in boofcv.abst.feature.describe with parameters of type OrientationImageModifierConstructorDescriptionDescribeRadiusAngle_Point(DescribePointRadiusAngle<T, TD> describer, OrientationImage<T> orientationEstimator, double regionRadius) -
Uses of OrientationImage in boofcv.abst.feature.detdesc
Constructors in boofcv.abst.feature.detdesc with parameters of type OrientationImageModifierConstructorDescriptionDetectDescribeFusion(InterestPointDetector<T> detector, @Nullable OrientationImage<T> orientation, DescribePointRadiusAngle<T, TD> describe) Configures the algorithm. -
Uses of OrientationImage in boofcv.abst.feature.detect.interest
Constructors in boofcv.abst.feature.detect.interest with parameters of type OrientationImageModifierConstructorDescriptionInterestPointDetectorOverride(InterestPointDetector<T> detector, OrientationImage<T> orientation) Specifies which algorithms are to be used. -
Uses of OrientationImage in boofcv.abst.feature.orientation
Classes in boofcv.abst.feature.orientation that implement OrientationImageModifier 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. -
Uses of OrientationImage in boofcv.alg.feature.orientation
Classes in boofcv.alg.feature.orientation that implement OrientationImageModifier and TypeClassDescriptionclassOrientationImageAverage<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. -
Uses of OrientationImage in boofcv.alg.feature.orientation.impl
Classes in boofcv.alg.feature.orientation.impl that implement OrientationImageModifier and TypeClassDescriptionclassImplementation ofOrientationImageAveragefor a specific image type.classImplementation ofOrientationImageAveragefor a specific image type. -
Uses of OrientationImage in boofcv.factory.feature.detdesc
Methods in boofcv.factory.feature.detdesc with parameters of type OrientationImageModifier and TypeMethodDescriptionstatic <T extends ImageGray<T>,TD extends TupleDesc<TD>>
DetectDescribePoint<T,TD> FactoryDetectDescribe.fuseTogether(InterestPointDetector<T> detector, @Nullable OrientationImage<T> orientation, DescribePointRadiusAngle<T, TD> describe) Given independent algorithms for feature detection, orientation, and describing, create a newDetectDescribePoint. -
Uses of OrientationImage in boofcv.factory.feature.orientation
Methods in boofcv.factory.feature.orientation that return OrientationImageModifier 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.static <T extends ImageGray<T>>
OrientationImage<T>FactoryOrientation.sift(ConfigSiftScaleSpace configSS, ConfigSiftOrientation configOri, Class<T> imageType) Creates an implementation of the SIFT orientation estimation algorithm -
Uses of OrientationImage in boofcv.factory.tracker
Methods in boofcv.factory.tracker with parameters of type OrientationImageModifier and TypeMethodDescriptionstatic <I extends ImageGray<I>,Desc extends TupleDesc<Desc>>
DetectDescribeAssociateTracker<I,Desc> FactoryPointTracker.dda(InterestPointDetector<I> detector, OrientationImage<I> orientation, DescribePointRadiusAngle<I, Desc> describe, AssociateDescription2D<Desc> associate, ConfigTrackerDda config) Creates a tracker which uses the detect, describe, associate architecture.static <I extends ImageGray<I>,Desc extends TupleDesc<Desc>>
PointTracker<I>FactoryPointTracker.hybrid(InterestPointDetector<I> detector, @Nullable OrientationImage<I> orientation, DescribePointRadiusAngle<I, Desc> describe, AssociateDescription2D<Desc> associate, int tooCloseRadius, ConfigPKlt kltConfig, ConfigTrackerHybrid configHybrid, Class<I> imageType) Creates a tracker that is a hybrid between KLT and Detect-Describe-Associate (DDA) trackers.