gpt4 book ai didi

android - Flutter Crop 图像和文本识别

转载 作者:行者123 更新时间:2023-12-05 05:57:39 26 4
gpt4 key购买 nike

有人知道如何在 flutter 中裁剪捕获的图像吗?我只是想通过裁剪捕获的图像来识别特定的图像文本。

我只想裁剪 hello world 并从图像中排除 Acer。我想像第二张图片一样裁剪。非常感谢任何帮助,它对我很有帮助,在此先感谢。

enter image description here enter image description here

这是我的

  Future getImage() async {   //  I want to have a crop option when getting the image.
final pickedFile = await picker.getImage(source: ImageSource.camera);
setState(() {
if (pickedFile != null) {
_image = pickedFile;
} else {
print('No image selected');
log('data:ELSE');
}
});
}

Future scanText() async {
final FirebaseVisionImage visionImage =
FirebaseVisionImage.fromFile(File(_image.path));
final TextRecognizer textRecognizer =
FirebaseVision.instance.textRecognizer();
final VisionText visionText =
await textRecognizer.processImage(visionImage);

for (TextBlock block in visionText.blocks) {
for (TextLine line in block.lines) {
_text += line.text + '\n';
}
}
Navigator.of(context).pop();
Navigator.of(context)
.push(MaterialPageRoute(builder: (context) => Details(_text)));
}

最佳答案

firebase_ml_vision 现已停产。请使用 google_ml_kit 包进行文本识别。您可以从 Here 中了解更多信息.

关于android - Flutter Crop 图像和文本识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68766222/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com