<dir_name>/
β
βββ assets/
β βββ chrome_profile/
β βββ chrome-win64/
β βββ chromedriver.exe
β βββ final_seat_vid.mp4
β
βββ installers/
β βββ Setup_ePageSaferRT.exe
β βββ tesseract-ocr-w64-setup-5.5.0.20241111.exe
β
βββ models/
β βββ best.pt
β
βββ scripts/
β βββ setup.bat
β
βββ .gitignore
βββ main.py
βββ requirements.txt
βββ README.md
git clone https://github.com/skkuswEng/AI.git
cd <dir_name>
cd .\scripts
.\setup.bat
From https://github.com/skkuswEng/AI/releases/tag/v1.0.0 download -this-> [AI_files.zip]
On line 25 of main.py, based on where the program was installed, it may be necessary to change the path.
# Initialize Tesseract OCR
pytesseract.pytesseract.tesseract_cmd = r"C:\Program Files\Tesseract-OCR\tesseract.exe"
On line 41 of main.py, the url of the server(s) the program broadcasts to need be changed correspondingly.
BACKEND_URLS = [
"http://localhost:8000/seat/renew", # Ensure this matches the backend endpoint
]
Activate the Virtual Environment (from root)
.\scripts\venv\Scripts\Activate.ps1
Run the Program
python main.py