Uses of Class
boofcv.struct.feature.NccFeature
Package
Description
-
Uses of NccFeature in boofcv.abst.feature.associate
Modifier and TypeMethodDescriptiondouble
ScoreAssociateNccFeature.score
(NccFeature a, NccFeature b) -
Uses of NccFeature in boofcv.abst.feature.describe
Modifier and TypeMethodDescriptionboolean
DescribeNCC_RadiusAngle.process
(double x, double y, double orientation, double radius, NccFeature storage) -
Uses of NccFeature in boofcv.alg.descriptor
Modifier and TypeMethodDescriptionstatic void
ConvertDescriptors.convertNcc
(TupleDesc_F64 input, NccFeature output) Converts a regular feature description into a NCC feature descriptionstatic double
DescriptorDistance.ncc
(NccFeature a, NccFeature b) Normalized cross correlation (NCC) computed using a faster technique.
NCC = sum(a[i]*b[i]) / (N*sigma_a * sigma_b)
where a[i] = I[i]-mean(a), I[i] is the image pixel intensity around the feature, and N is the number of elements. -
Uses of NccFeature in boofcv.alg.feature.describe
Modifier and TypeMethodDescriptionabstract void
DescribePointPixelRegionNCC.process
(int c_x, int c_y, NccFeature desc) Extracts the descriptor at the specified location. -
Uses of NccFeature in boofcv.alg.feature.describe.impl
Modifier and TypeMethodDescriptionvoid
ImplDescribePointPixelRegionNCC_F32.process
(int c_x, int c_y, NccFeature desc) void
ImplDescribePointPixelRegionNCC_U8.process
(int c_x, int c_y, NccFeature desc) -
Uses of NccFeature in boofcv.alg.tracker.tld
Modifier and TypeMethodDescriptionTldTemplateMatching.createDescriptor()
Creates a new descriptor or recycles an old oneModifier and TypeMethodDescriptionTldTemplateMatching.getTemplateNegative()
TldTemplateMatching.getTemplatePositive()
Modifier and TypeMethodDescriptionvoid
TldTemplateMatching.computeNccDescriptor
(NccFeature f, float x0, float y0, float x1, float y1) Computes the NCC descriptor by sample points at evenly spaced distances inside the rectangledouble
TldTemplateMatching.distance
(NccFeature observed, List<NccFeature> candidates) Computes the best distance to 'observed' from the candidate list.Modifier and TypeMethodDescriptiondouble
TldTemplateMatching.distance
(NccFeature observed, List<NccFeature> candidates) Computes the best distance to 'observed' from the candidate list. -
Uses of NccFeature in boofcv.factory.feature.associate
Modifier and TypeMethodDescriptionstatic ScoreAssociation<NccFeature>
FactoryAssociation.scoreNcc()
Scores features based on their Normalized Cross-Correlation (NCC). -
Uses of NccFeature in boofcv.factory.feature.describe
Modifier and TypeMethodDescriptionstatic <T extends ImageGray<T>>
DescribePointRadiusAngle<T,NccFeature> Creates a region descriptor based on normalized pixel intensity values alone. -
Uses of NccFeature in boofcv.gui.tracker
Modifier and TypeMethodDescriptionvoid
TldTemplatePanel.update
(List<NccFeature> features, boolean gray) -
Uses of NccFeature in boofcv.struct.feature
Modifier and TypeMethodDescriptionboolean
NccFeature.isEquals
(NccFeature tuple) void
NccFeature.setTo
(NccFeature src)