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
The calculation method explained in the paper is to assign a weight of 1 to the position within the bounding boxes in the mask matrix, and assign a weight of 0 to the position outside the bounding boxes. But in your code, 1 is added to the mask matrix first, and then divided by the mean. Such a matrix is not a matrix containing only 0 and 1.
The text was updated successfully, but these errors were encountered:
The calculation method explained in the paper is to assign a weight of 1 to the position within the bounding boxes in the mask matrix, and assign a weight of 0 to the position outside the bounding boxes. But in your code, 1 is added to the mask matrix first, and then divided by the mean. Such a matrix is not a matrix containing only 0 and 1.
The text was updated successfully, but these errors were encountered: