We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54eb25c commit 79f3dc2Copy full SHA for 79f3dc2
py/lib/models/location_dataset.py
@@ -93,7 +93,7 @@ def __getitem__(self, index):
93
grid_x = int(box_x / grid_w)
94
grid_y = int(box_y / grid_h)
95
# 行/列从0开始计数
96
- print(grid_x + 1, grid_y + 1)
+ # print(grid_x + 1, grid_y + 1)
97
# 边界框中心相对于网格的比例(0,1)
98
x = (box_x % grid_w) / grid_w
99
y = (box_y % grid_h) / grid_h
0 commit comments