-
Notifications
You must be signed in to change notification settings - Fork 251
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
Have some question for replying~ #30
Comments
Hi, the 4 seems to be a magic number. And as for the second problem, it seems to be a duplicate of issue #21. I think you are correct, but as the authors have no activity for months in this repo, I do not have expectations that these bug will be fixed. |
Thank you for your reply. I ever think there maybe a wrong typewrite about |
Because the author has abandoned the repo.So I come to ask for your help. |
@Page-David @lancexiang |
@Mickeybaby The algorithm is based on similarity between regions, so I am not sure what you mean by “scores”. For the question about fast rcnn, I still know little about it... |
1.
R[k]["size"]= len(masked_pixels / 4)
Why there division by 4? It's seems no influence for the
len
function.2.
skimage.feature.local_binary_pattern(img[:, :, colour_channel], 8, 1.0)
hist = numpy.concatenate([hist] + [numpy.histogram(fd, BINS, (0.0, 1.0))[0]])
The output range of LBP feature is (0.0, 255.0), then why the histogram range is (0.0, 1.0), that means
leave off the pixel > 1? or maybe a bug?
The text was updated successfully, but these errors were encountered: