compareAsync method

  1. @override
Future<double> compareAsync(
  1. InputArray hashOne,
  2. InputArray hashTwo
)
override

Implementation

@override
Future<double> compareAsync(InputArray hashOne, InputArray hashTwo) async => cvRunAsync<double>(
      (callback) => ccontrib.radialVarianceHashCompare_Async(
        hashOne.ref,
        hashTwo.ref,
        sigma,
        numOfAngleLine,
        callback,
      ),
      doubleCompleter,
    );