-
Notifications
You must be signed in to change notification settings - Fork 55
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
does this work with opencv? #67
Comments
I haven't tried using this with OpenCV, but in principle it should be possible. Inference speed will depend a lot on the hardware you run it on. On my 4-year old Intel laptop it takes about 1s end-to-end for a typical image. If using the Rust library you can run just the text detection, which will be quicker (~200ms) and then run recognition only if something is seen. |
On my 4-year old Intel laptop it takes about 1s end-to-end for a typical image
That's quite impressive :)
If using the Rust library you can run just the text detection step more quickly (~200ms) and then run recognition only if something is seen.
Sorry I didn't quite understand, are you saying don't run it as a software, but instead use it as a library and incorporate it into my opencv code?
…On Wednesday, May 8th, 2024 at 11:56 PM, Robert Knight ***@***.***> wrote:
I haven't tried using this with OpenCV, but in principle it should be possible. Inference speed will depend a lot on the hardware you run it on. On my 4-year old Intel laptop it takes about 1s end-to-end for a typical image. If using the Rust library you can run just the text detection step more quickly (~200ms) and then run recognition only if something is seen.
—
Reply to this email directly, [view it on GitHub](#67 (comment)), or [unsubscribe](https://github.com/notifications/unsubscribe-auth/AG7P2BXZXT72REQMTLH7KKLZBIVJZAVCNFSM6AAAAABHM7VKPCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMBQGYZTQOJTGE).
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
You can do either. The command-line tool has the advantage you can call it from any tool which can run a program. The library gives you more flexibility to eg. run only detection, or process a batch of images at once etc. |
@robertknight Hey mate, so what is meant by "run only detection"? What else does the program do? |
If you run the |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
can this work with opencv, the idea is that have a camera and in real time it can detect words by in real time covnerting words into text?
The text was updated successfully, but these errors were encountered: