detectOnMatBytes method
- @Deprecated('Use detectFromMatBytes instead. Will be removed in a future release.')
Detects hands from raw pixel bytes without constructing a cv.Mat first.
Deprecated: Use detectFromMatBytes instead.
Implementation
@Deprecated(
'Use detectFromMatBytes instead. Will be removed in a future release.')
Future<List<Hand>> detectOnMatBytes(
Uint8List bytes, {
required int width,
required int height,
int matType = 16,
}) =>
detectFromMatBytes(bytes, width: width, height: height, matType: matType);