-
Notifications
You must be signed in to change notification settings - Fork 3
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
question about output #2
Comments
Hello! They are confidence score, y_offset, x_offset. |
Thanks for your response! what kind of processing are further required on the model output to get the peak location with sub-pixel precision ? for example, a peak is composed with multiple connected bright pixels, i assume the model with give high confidence. do you use connected component labeling and use the maxima point as peak? |
Sorry for my delayed response. I use non-maximum suppression (NMS) to remove false positives, i.e. those pixels connected to the true central pixel. The idea is we sort detected peaks by their confidence score, then add them to a new list one by one. If the peak to be added is within a certain cutoff distance to any other peaks already in the new list, then we drop it. |
oh I see. thanks |
How can I interpret your output? I noticed that the output has three channels.
I assume this is not object localization.
The text was updated successfully, but these errors were encountered: