Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -72,7 +72,7 @@ if __name__ == '__main__': | ... | @@ -72,7 +72,7 @@ if __name__ == '__main__': |
72 | name = all_classes[cl] | 72 | name = all_classes[cl] |
73 | size = w*h | 73 | size = w*h |
74 | # 얼마나 가운데인지 확인하는 알고리즘 | 74 | # 얼마나 가운데인지 확인하는 알고리즘 |
75 | - coordinatevalue = abs(x-image.shape[1]/2)+ abs(y-image.shape[0]/2)/image.shape[0]*image.shape[1] | 75 | + coordinatevalue = abs((x+0.5*w)-image.shape[1]/2) + abs((y-h*0.5)-image.shape[0]/2)/(image.shape[0]/image.shape[1]) |
76 | detectionInfo.append([i, name, size, coordinatevalue]) | 76 | detectionInfo.append([i, name, size, coordinatevalue]) |
77 | 77 | ||
78 | # name 별로 크기가 가장 크거나 물체가 프레임의 가운데 있는 프레임 번호 목록 얻어오기 | 78 | # name 별로 크기가 가장 크거나 물체가 프레임의 가운데 있는 프레임 번호 목록 얻어오기 | ... | ... |
-
Please register or login to post a comment