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
I changed detect.py in order to improve efficiency, the detection in real images is very sensitive to noise, so instead of detecting the highest probability it returns the most voted plate:
plates = []
for letter_prob in letter_probs:plates.append(letter_probs_to_code(letter_prob))
mostcommonplate =collections.Counter(plates).most_common(1)[0][0]
yield (numpy.max(mins, axis=0).flatten(),
numpy.min(maxs, axis=0).flatten(),
numpy.max(present_probs),
mostcommonplate
)
I have obtained much higher accuracy results using this approach and the detect algorithm is more robust.
The text was updated successfully, but these errors were encountered:
I changed detect.py in order to improve efficiency, the detection in real images is very sensitive to noise, so instead of detecting the highest probability it returns the most voted plate:
I have obtained much higher accuracy results using this approach and the detect algorithm is more robust.
The text was updated successfully, but these errors were encountered: