Unfucked my own fuckup :)
This commit is contained in:
parent
538c7e3341
commit
7ac73274a6
@ -3,14 +3,11 @@ Script to extract 10cm x 10cm images from the template
|
|||||||
Accounts for (minor) rotation.
|
Accounts for (minor) rotation.
|
||||||
|
|
||||||
command:
|
command:
|
||||||
python template.py input_folder output_folder
|
python template.py input_directory
|
||||||
|
|
||||||
volgorde maakt uit! heb niet die fancy library gebruikt
|
|
||||||
|
|
||||||
known bugs:
|
known bugs:
|
||||||
- plaatjes worden soms de verkeerde kant op gedraaid, ze staan wel recht
|
|
||||||
maar 90 graden gedraaid
|
|
||||||
- plaatjes zijn niet persé exact 10x10 cm als perspectief niet precies goed is
|
- plaatjes zijn niet persé exact 10x10 cm als perspectief niet precies goed is
|
||||||
|
- gekke crash bij herextractie van datapunten, zie todo
|
||||||
|
|
||||||
Auteurs:
|
Auteurs:
|
||||||
Tom Selier
|
Tom Selier
|
||||||
@ -24,7 +21,7 @@ import os
|
|||||||
## Parameters ##
|
## Parameters ##
|
||||||
|
|
||||||
# [%] Schaal output in percentages
|
# [%] Schaal output in percentages
|
||||||
SCHAAL = 25
|
SCHAAL = 100
|
||||||
|
|
||||||
|
|
||||||
# [mm] 120 op calib a4, 180 op template
|
# [mm] 120 op calib a4, 180 op template
|
||||||
@ -38,13 +35,13 @@ OFFSET = 20
|
|||||||
|
|
||||||
|
|
||||||
# Toon plaatjes (forceert pauze)
|
# Toon plaatjes (forceert pauze)
|
||||||
PLAATJES = True
|
PLAATJES = False
|
||||||
|
|
||||||
# Wacht na elke plaatje op toets
|
# Wacht na elke plaatje op toets
|
||||||
PAUZE = False
|
PAUZE = False
|
||||||
|
|
||||||
# Sla plaatjes op
|
# Sla plaatjes op
|
||||||
SAVE = False
|
SAVE = True
|
||||||
|
|
||||||
# extra info
|
# extra info
|
||||||
VERBOSE = True
|
VERBOSE = True
|
||||||
@ -82,30 +79,44 @@ def findMin(array, index):
|
|||||||
min_val = element[index]
|
min_val = element[index]
|
||||||
return min_val
|
return min_val
|
||||||
|
|
||||||
input_folder = sys.argv[1]
|
input_directory = sys.argv[1]
|
||||||
output_folder = sys.argv[2]
|
|
||||||
|
|
||||||
if(not os.path.isdir(input_folder)):
|
if(not os.path.isdir(input_directory)):
|
||||||
print("Input folder not found")
|
print(input_directory)
|
||||||
|
print("Input directory not found")
|
||||||
exit()
|
exit()
|
||||||
|
|
||||||
if(not os.path.isdir(output_folder)):
|
|
||||||
print("Output folder not found")
|
|
||||||
exit()
|
|
||||||
|
|
||||||
|
|
||||||
### ARUCO PARAMETERS ###
|
### ARUCO PARAMETERS ###
|
||||||
detector_params = cv2.aruco.DetectorParameters()
|
detector_params = cv2.aruco.DetectorParameters()
|
||||||
|
detector_params.adaptiveThreshWinSizeMax = 150 # Takes longer, but better chance of finding markers
|
||||||
dictionary = cv2.aruco.getPredefinedDictionary(cv2.aruco.DICT_ARUCO_ORIGINAL)
|
dictionary = cv2.aruco.getPredefinedDictionary(cv2.aruco.DICT_ARUCO_ORIGINAL)
|
||||||
detector = cv2.aruco.ArucoDetector(dictionary, detector_params)
|
detector = cv2.aruco.ArucoDetector(dictionary, detector_params)
|
||||||
|
|
||||||
### IMAGE CONVERSIE ###
|
### IMAGE CONVERSIE ###
|
||||||
for file in os.listdir(input_folder):
|
for folder in os.listdir(input_directory):
|
||||||
|
if folder.endswith('.py'):
|
||||||
|
print("Skipping", folder)
|
||||||
|
continue
|
||||||
|
|
||||||
|
if folder.endswith('.jpg'):
|
||||||
|
continue
|
||||||
|
|
||||||
|
if SAVE:
|
||||||
|
path = os.path.join(input_directory, folder)
|
||||||
|
if (path).endswith("_out"):
|
||||||
|
continue
|
||||||
|
out_folder = path + "_out"
|
||||||
|
if (os.path.exists(out_folder) == False):
|
||||||
|
if VERBOSE:
|
||||||
|
print("Created folder: " + out_folder)
|
||||||
|
os.mkdir(out_folder)
|
||||||
|
|
||||||
|
for file in os.listdir(os.path.join(input_directory, folder)):
|
||||||
## Laad plaatjes in kleur ##
|
## Laad plaatjes in kleur ##
|
||||||
filename = input_folder + '/' + file
|
filename = input_directory + '/' + folder + '/' + file
|
||||||
out_filename = output_folder + '/' + file
|
|
||||||
img = cv2.imread(filename, 1)
|
img = cv2.imread(filename, 1)
|
||||||
|
|
||||||
|
assert img is not None, "Image path is wrong " + filename
|
||||||
if VERBOSE:
|
if VERBOSE:
|
||||||
print(file)
|
print(file)
|
||||||
|
|
||||||
@ -113,7 +124,10 @@ for file in os.listdir(input_folder):
|
|||||||
(h, w) = img.shape[:2]
|
(h, w) = img.shape[:2]
|
||||||
x_scale = int(w/100*SCHAAL)
|
x_scale = int(w/100*SCHAAL)
|
||||||
y_scale = int(h/100*SCHAAL)
|
y_scale = int(h/100*SCHAAL)
|
||||||
|
if SCHAAL != 100:
|
||||||
small_img = cv2.resize(img, (x_scale, y_scale))
|
small_img = cv2.resize(img, (x_scale, y_scale))
|
||||||
|
else:
|
||||||
|
small_img = img
|
||||||
(h_small, w_small) = small_img.shape[:2]
|
(h_small, w_small) = small_img.shape[:2]
|
||||||
if VERBOSE:
|
if VERBOSE:
|
||||||
print("Van %dx%dpx naar %dx%dpx geschaald"%(h,w,h_small,w_small))
|
print("Van %dx%dpx naar %dx%dpx geschaald"%(h,w,h_small,w_small))
|
||||||
@ -124,7 +138,16 @@ for file in os.listdir(input_folder):
|
|||||||
small_img,
|
small_img,
|
||||||
corners,
|
corners,
|
||||||
ids)
|
ids)
|
||||||
assert len(ids) == 4, "Not enough markers found in " + str(file)
|
|
||||||
|
if ids is None:
|
||||||
|
print("Skipping: ", filename)
|
||||||
|
print("=============================================")
|
||||||
|
continue
|
||||||
|
if len(ids) != 4:
|
||||||
|
print("Skipping: ", filename)
|
||||||
|
print("=============================================")
|
||||||
|
continue
|
||||||
|
|
||||||
if VERBOSE:
|
if VERBOSE:
|
||||||
print("%d markers gedetecteerd" %len(ids))
|
print("%d markers gedetecteerd" %len(ids))
|
||||||
|
|
||||||
@ -138,7 +161,7 @@ for file in os.listdir(input_folder):
|
|||||||
cv2.circle(
|
cv2.circle(
|
||||||
new_image,
|
new_image,
|
||||||
(x[i], y[i]),
|
(x[i], y[i]),
|
||||||
radius=3,
|
radius=5,
|
||||||
color=(0, 254, 254),
|
color=(0, 254, 254),
|
||||||
thickness=-1)
|
thickness=-1)
|
||||||
i += 1
|
i += 1
|
||||||
@ -151,7 +174,7 @@ for file in os.listdir(input_folder):
|
|||||||
|
|
||||||
## Draai de plaatjes recht ##
|
## Draai de plaatjes recht ##
|
||||||
x0 = x[np.where(ids == 0)[0][0]]
|
x0 = x[np.where(ids == 0)[0][0]]
|
||||||
x1 = x[np.where(ids == 1)[0][0]]
|
x1 = x[np.where(ids == 1)[0][0]] # TODO: Fix whatevers happening here
|
||||||
x_dif = x0-x1
|
x_dif = x0-x1
|
||||||
|
|
||||||
y0 = y[np.where(ids == 0)[0][0]]
|
y0 = y[np.where(ids == 0)[0][0]]
|
||||||
@ -211,7 +234,9 @@ for file in os.listdir(input_folder):
|
|||||||
cv2.imshow('window', warp_img)
|
cv2.imshow('window', warp_img)
|
||||||
cv2.imshow('cropped', crop_img)
|
cv2.imshow('cropped', crop_img)
|
||||||
if SAVE:
|
if SAVE:
|
||||||
cv2.imwrite(out_filename, crop_img)
|
out_path = out_folder + "/" + file
|
||||||
|
print("Saving to:", out_path)
|
||||||
|
cv2.imwrite(out_path, crop_img)
|
||||||
if PAUZE or PLAATJES:
|
if PAUZE or PLAATJES:
|
||||||
cv2.waitKey(0)
|
cv2.waitKey(0)
|
||||||
if VERBOSE:
|
if VERBOSE:
|
||||||
|
9
src/helpers/statistics.py
Normal file
9
src/helpers/statistics.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import numpy as np
|
||||||
|
|
||||||
|
def imgStats(img):
|
||||||
|
mean = np.zeros(3)
|
||||||
|
std = np.zeros(3)
|
||||||
|
for i in range(img.shape[2]):
|
||||||
|
mean[i] = np.mean(img[:, :, i])
|
||||||
|
std[i] = np.std(img[:, :, i])
|
||||||
|
return mean, std
|
10
src/suite.py
10
src/suite.py
@ -9,6 +9,7 @@ import cv2
|
|||||||
import time
|
import time
|
||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt
|
||||||
import json
|
import json
|
||||||
|
from helpers.statistics import imgStats
|
||||||
|
|
||||||
## UI config load
|
## UI config load
|
||||||
PROJECT_PATH = pathlib.Path(__file__).parent
|
PROJECT_PATH = pathlib.Path(__file__).parent
|
||||||
@ -193,6 +194,13 @@ class MainApp:
|
|||||||
self.axs[column, row].xaxis.set_major_formatter(lambda x, pos: str(x*canny_step))
|
self.axs[column, row].xaxis.set_major_formatter(lambda x, pos: str(x*canny_step))
|
||||||
self.axs[column, row].yaxis.set_major_formatter(lambda x, pos: str(x*canny_step))
|
self.axs[column, row].yaxis.set_major_formatter(lambda x, pos: str(x*canny_step))
|
||||||
|
|
||||||
|
def writeStats(self, img, labels, column, row):
|
||||||
|
mean, std = imgStats(img)
|
||||||
|
self.axs[column, row].title.set_text(
|
||||||
|
"mean: %c:%d %c:%d %c:%d \n std: %c:%d %c:%d %c:%d"
|
||||||
|
%(labels[0], mean[0], labels[1], mean[1], labels[2], mean[2],
|
||||||
|
labels[0], std[0], labels[1], std[1], labels[2], std[2]))
|
||||||
|
|
||||||
def update(self, event=None):
|
def update(self, event=None):
|
||||||
path = self.img_path.get()
|
path = self.img_path.get()
|
||||||
|
|
||||||
@ -250,6 +258,7 @@ class MainApp:
|
|||||||
# Canny edge
|
# Canny edge
|
||||||
img_canny = cv2.Canny(image=img_blur,threshold1=ct1,threshold2=ct2)
|
img_canny = cv2.Canny(image=img_blur,threshold1=ct1,threshold2=ct2)
|
||||||
self.add_output(img_canny, "Canny Edge")
|
self.add_output(img_canny, "Canny Edge")
|
||||||
|
self.writeStats(img, ('B', 'G', 'R'), 0, 0)
|
||||||
|
|
||||||
# BGR
|
# BGR
|
||||||
self.add_output(img[:, :, 0], "BGR B")
|
self.add_output(img[:, :, 0], "BGR B")
|
||||||
@ -268,6 +277,7 @@ class MainApp:
|
|||||||
|
|
||||||
if img_hsv is not None:
|
if img_hsv is not None:
|
||||||
self.drawHist(img_hsv, ('H', 'S', 'V'), 0, 1)
|
self.drawHist(img_hsv, ('H', 'S', 'V'), 0, 1)
|
||||||
|
self.writeStats(img_hsv, ('H', 'S', 'V'), 0, 1)
|
||||||
|
|
||||||
# Canny Heatmap
|
# Canny Heatmap
|
||||||
self.drawCannyHM(img, 1, 1)
|
self.drawCannyHM(img, 1, 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user