You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
Hello, when we run the demo of ObjectDetection, the detection effect is inconsistent with the effect on the PC. After reading the code, we found that there are two bugs. I would like to discuss with you:
In PrePostProcessor#nonMaxSuppression, the description of sort algorithm is from high to low, but in fact it is from low to hign, which will lead to prioritize get results with low scores.
In ObjectDetectionActivity#analyzeImage, the line matrix.postRotate(90.0f), Why should it be rotated 90 degrees? If the original image is not rotated by 90 degrees during training, but process it during detection, it will lead to incorrect detection and extremely low scores.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello, when we run the demo of ObjectDetection, the detection effect is inconsistent with the effect on the PC. After reading the code, we found that there are two bugs. I would like to discuss with you:
The text was updated successfully, but these errors were encountered: