-
Notifications
You must be signed in to change notification settings - Fork 150
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
How to retrieve predicted boxes from a predicted image #1083
Comments
Sorry but I just want to make sure. Is there no way to save the predicted boxes as a list, integer or some other variable that we can use for other things? |
All good, the predictions are just regular python objects so you can just save them as you like (pickle, json, etc.) |
Can you show me how to do that ? Because I've tried but I didn't find the way to do that here is an example of my code
And Here is the output of prediction: Which code could I use to save the predicted boxes please ? |
Thank you very much. That help me a lot. As I have the boxes data, I tried to use rectangle function of opencv lib as here on the same image. But I realize that I have to use the predicted image because there was some processing on the original data (I suspect that the boxes data are for processed images... I could be wrong) and it is difficult for me to work with the original image. Is there any function that can help to save the predicted image with |
Check out |
THANK YOU VERY MUCH !!!!!!!!!!!! I AM VERRY HAPPY |
Hello,
I am working on license plate recognition and I would like to retrieve the boxes predicted by my model in order to be able to recognize the characters of the license plate as in this example
Can someone help me please ?
The text was updated successfully, but these errors were encountered: