Replies: 1 comment 1 reply
-
@klausinfo sure, cascaded detection workflows may be beneficial in some circumstances. Only you know what's best for your specific use case. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Let us say I want to read car plates. A good idea could be to train three different nets: for cars, plates and numbers. In order to be fast, use the first net to detect cars, than insinde the car bounding box look for the plate. Inside this plate bounding box look for the numbers.
But is this really the fastest way? It takes the time of 3 nets. Or is there a way to combine all 3 nets in one?
What is the best way to solve this? Any experiences would be a great help. Thanks.
Beta Was this translation helpful? Give feedback.
All reactions