Uses of Class
imagingbook.common.math.VectorNorm
Packages that use VectorNorm
Package
Description
Implementation of David Lowe's SIFT feature detection scheme.
-
Uses of VectorNorm in imagingbook.common.math
Subclasses of VectorNorm in imagingbook.common.mathModifier and TypeClassDescriptionstatic class
Implementation of the L1 vector norm (Manhattan norm/distance).static class
Implementation of the L2 vector norm (Euclidean norm/distance).static class
Implementation of the L-infinity vector norm (maximum norm/distance).Methods in imagingbook.common.math that return VectorNormModifier and TypeMethodDescriptionabstract VectorNorm
VectorNorm.NormType.getInstance()
Returns the (singleton)VectorNorm
instance associated with this specificVectorNorm.NormType
. -
Uses of VectorNorm in imagingbook.common.sift
Methods in imagingbook.common.sift with parameters of type VectorNormModifier and TypeMethodDescriptiondouble
SiftDescriptor.getDistance
(SiftDescriptor other, VectorNorm norm) Calculates and returns the distance between this descriptor's feature vector and another descriptor's feature vector using the specifiedVectorNorm
.