added skipped names
This commit is contained in:
parent
8850f957ae
commit
bfe4a09f8d
@ -94,6 +94,7 @@ detector = cv2.aruco.ArucoDetector(dictionary, detector_params)
|
||||
|
||||
images_converted = 0
|
||||
images_skipped = 0
|
||||
names_skipped = []
|
||||
|
||||
### IMAGE CONVERSIE ###
|
||||
for folder in os.listdir(input_directory):
|
||||
@ -147,14 +148,10 @@ for folder in os.listdir(input_directory):
|
||||
if VERBOSE:
|
||||
print("IDs detected:\n", ids)
|
||||
|
||||
if ids is None:
|
||||
print("Skipping: ", filename)
|
||||
print("=============================================")
|
||||
images_skipped += 1
|
||||
continue
|
||||
if len(ids) != 4:
|
||||
if ids is None or len(ids) != 4:
|
||||
print("Skipping: ", filename)
|
||||
print("=============================================")
|
||||
names_skipped.append(filename)
|
||||
images_skipped += 1
|
||||
continue
|
||||
|
||||
@ -257,4 +254,11 @@ if VERBOSE:
|
||||
print("%d van de %d succesvol"
|
||||
%(images_converted, (images_converted+images_skipped)))
|
||||
|
||||
if images_skipped != 0:
|
||||
print("")
|
||||
with open(os.path.join(input_directory, "skipped.txt"), 'w') as file:
|
||||
for name in names_skipped:
|
||||
file.write(name)
|
||||
file.write("\n")
|
||||
|
||||
cv2.destroyAllWindows()
|
Loading…
Reference in New Issue
Block a user