detectHandsFromMat method

Future<List<Hand>> detectHandsFromMat(
  1. Mat image
)

Detects hands in a pre-decoded cv.Mat image in the background isolate.

The original Mat is NOT disposed by this method.

Implementation

Future<List<Hand>> detectHandsFromMat(cv.Mat image) =>
    _detector.detectFromMat(image);