flutter-ml / google_ml_kit_flutter

A flutter plugin that implements Google's standalone ML Kit
MIT License
907 stars 709 forks source link

[Advice]: Add Some sample InputImage for test. #642

Closed normidar closed 1 month ago

normidar commented 1 month ago

Some time I want to test my applications use InputImage, I think add some constructor for test is a good idea.

Like:

final inputImageForTextRcognitionTest = InputImage.textExampleImage();
final textRecognizer = TextRecognizer(script: script);
final result = await textRecognizer.processImage(inputImageForTextRcognitionTest);
...

Thanks.

normidar commented 1 month ago

In real use, I think tree-sharking will remove all example constructors if we do not use it.