added conditional print for file processing
This commit is contained in:
parent
ec4dec6dc9
commit
dff604b66f
1 changed files with 2 additions and 0 deletions
2
Main.py
2
Main.py
|
@ -97,6 +97,8 @@ if args.training_data:
|
||||||
|
|
||||||
tmp, frm = cap.read()
|
tmp, frm = cap.read()
|
||||||
height, width, channels = frm.shape
|
height, width, channels = frm.shape
|
||||||
|
if (args.file):
|
||||||
|
print(f"Image is {height} tall and {width} wide")
|
||||||
frame_count = 0
|
frame_count = 0
|
||||||
start_timestamp = time.strftime("%Y%m%d-%H%M%S")
|
start_timestamp = time.strftime("%Y%m%d-%H%M%S")
|
||||||
# print(f"{height*.25}, {width}")
|
# print(f"{height*.25}, {width}")
|
||||||
|
|
Loading…
Reference in a new issue