Results 6 comments of Toan

I have not built the library yet; but it looks like you're missing libc development headers. See if you can install a package called libc6-dev; and then try again. On...

Understood, but if it is a static library, it is easier for the developer to link to it. Below is a Makefile to compile the library, developers can just link...

nice work, but it would be nice to have the added features that are mentioned in this thread.

thanks, I forked the code and added a feature to generate objects instead of texts. Sizing of the output image is also possible. It is on my branch at https://github.com/tpham3783/TextRecognitionDataGenerator

I traced down the delete method, and it looks like it is an asynchronous call to grpc: ``` Future deleteDocument(String path) => _client .deleteDocument(DeleteDocumentRequest()..name = path) .catchError(_handleError); ``` I am...

I find that it is best practice to not co-mingle database access code w/ the UI code. Back to your question, what you do is that you query on a...