
| Current Path : /home/cgabriel/10_company_xx/45_12park/12park/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //home/cgabriel/10_company_xx/45_12park/12park/fbi.py |
import os,re,sys,glob,time
argv = ""
if len(sys.argv) > 1:
argv = sys.argv[1]
files = glob.glob("*/*/"+argv+"*NOPLATE*.jpg")
files.sort()
files_done = open("noplate").read().split("\n")
for file in files:
if file in files_done:
continue
# os.system("convert -rotate 90 " + file + " _xxx.jpg")
# os.system("mv _xxx.jpg " + file)
os.system("fbi " + file)
time.sleep(0.2)