Fixed bug where scaling wouldn't adjust

This commit is contained in:
Tom Selier 2023-09-24 22:08:16 +02:00
parent 2f39bb9808
commit 18246a99e7

View File

@ -183,16 +183,10 @@ for file in os.listdir(input_folder):
# feature voor ooit, nogal lastig # feature voor ooit, nogal lastig
## Calibratie van afstand met betrekking tot pixels ## ## Calibratie van afstand met betrekking tot pixels ##
x_min = w_small xs = [corner[0] for corner in warped_corners]
x_max = 0 ys = [corner[1] for corner in warped_corners]
for corner in warped_corners: x_max = np.amax(xs)
# vind x waarden bovenaan x_min = np.amin(xs)
(x, y) = corner
if y < (h_small // 2):
if x < x_min:
x_min = x
else:
x_max = x
x_diff = x_max - x_min x_diff = x_max - x_min
calib_scale = x_diff / CALIB_AFSTAND calib_scale = x_diff / CALIB_AFSTAND
if VERBOSE: if VERBOSE: