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.averageHashCompare_Async(hashOne.ref, hashTwo.ref, callback),
      doubleCompleter,
    );