Source code for ewoksndreg.features.matching.base

from typing import Tuple

import numpy

from ...registry import Registered
from ..detection.base import Features


[docs] class FeatureMatching(Registered, register=False):
[docs] def match( self, from_features: Features, to_features: Features, from_image: numpy.ndarray, to_image: numpy.ndarray, ) -> Tuple[Features, Features]: raise NotImplementedError