如何在 Flutter 中使用 Rect 边界框作为参数裁剪图像?

问题描述 投票:0回答:0

我使用learning_face_detection从图像中检测到眼睛边界框为Rect类。

我需要从图像中裁剪出这个眼睛边界框并将其作为图像返回。

这是我需要的功能示例:

Future<InputImage> _cropEye(InputImage image, Rect eyeRect) async {

    // implementatoin here

}
flutter image image-processing crop image-cropper
© www.soinside.com 2019 - 2024. All rights reserved.