Uses of Interface
boofcv.abst.feature.orientation.OrientationImage
Package
Description
-
Uses of OrientationImage in boofcv.abst.feature.describe
ModifierConstructorDescriptionDescribeRadiusAngle_Point
(DescribePointRadiusAngle<T, TD> describer, OrientationImage<T> orientationEstimator, double regionRadius) -
Uses of OrientationImage in boofcv.abst.feature.detdesc
ModifierConstructorDescriptionDetectDescribeFusion
(InterestPointDetector<T> detector, @Nullable OrientationImage<T> orientation, DescribePointRadiusAngle<T, TD> describe) Configures the algorithm. -
Uses of OrientationImage in boofcv.abst.feature.detect.interest
ModifierConstructorDescriptionInterestPointDetectorOverride
(InterestPointDetector<T> detector, OrientationImage<T> orientation) Specifies which algorithms are to be used. -
Uses of OrientationImage in boofcv.abst.feature.orientation
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 OrientationImage in boofcv.alg.feature.orientation
Modifier and TypeClassDescriptionclass
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. -
Uses of OrientationImage in boofcv.alg.feature.orientation.impl
Modifier and TypeClassDescriptionclass
Implementation ofOrientationImageAverage
for a specific image type.class
Implementation ofOrientationImageAverage
for a specific image type. -
Uses of OrientationImage in boofcv.factory.feature.detdesc
Modifier 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
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
.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
Modifier 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.