이영훈

changed coordinatevalue in project.py

......@@ -72,7 +72,7 @@ if __name__ == '__main__':
name = all_classes[cl]
size = w*h
# 얼마나 가운데인지 확인하는 알고리즘
coordinatevalue = abs(x-image.shape[1]/2)+ abs(y-image.shape[0]/2)/image.shape[0]*image.shape[1]
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])
detectionInfo.append([i, name, size, coordinatevalue])
# name 별로 크기가 가장 크거나 물체가 프레임의 가운데 있는 프레임 번호 목록 얻어오기
......