<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