-
Notifications
You must be signed in to change notification settings - Fork 27
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
A question about pseudocode #18
Comments
Hi, B is defined in Eq. (2) as the bounding box, and B_{x0}/B_{x1} is the x coordinate of the left/right side of B. |
Thank you for your reply |
Thanks for the source code! What do lines 44 to 47 of the code stand for in "datasets.transforms.ContrastiveCrop.py" ? ch0 = min(max(int(height * h0) - h//2, 0), height - h)
ch1 = min(max(int(height * h1) - h//2, 0), height - h)
cw0 = min(max(int(width * w0) - w//2, 0), width - w)
cw1 = min(max(int(width * w1) - w//2, 0), width - w) |
These lines generate the operable region for box center. |
Thank you for your reply!
Thank you for your reply! |
What does Bx0 and Bx1 stand for in pseudocode
The text was updated successfully, but these errors were encountered: