FeatureMatch.distance#
- property FeatureMatch.distance: Any[source]#
Distance between corresponding features
- Returns:
_description_
- Return type:
float or ndarray(N)
Example:
>>> from machinevisiontoolbox import Image >>> orb1 = Image.Read("eiffel-1.png").ORB() >>> orb2 = Image.Read("eiffel-2.png").ORB() >>> matches = orb1.match(orb2) >>> matches.distance array([ 7., 9., 9., ..., 61., 62., 63.], shape=(82,)) >>> matches[0].distance 7.0