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