Please check the following steps before installation.
Open command prompt and create conda environment
conda create -n <env-name> python=3.8
conda activate <env-name>
:: CONDA EXAMPLE ::
conda create -n cross python=3.8
conda activate cross
Then, Download the Project from github, open Conda prompt in Project Folder and
Follow the commands below TO DOWNLOAD REQUIREMENTS
git clone https://github.com/noodles8436/THE-CROSS.git
cd THE-CROSS
pip install -r requirements.txt
Finally, follow the commands below to download Transfer trained Object Detection Model
( This model is obtained by transfer training the EfficientDet-D2 model. )
python download_model.py
Enter the following command to open Image Detection Server
:: CAUTION :: wait until "Socket Opened" Message printed
python Server.py --ip=XXX.XXX.XXX.XXX --port=XXXX
:: EXAMPLE ::
python Server.py --ip=127.0.0.1 --port=7777
Open new Conda Prompt in Project Folder ( activated <env-name>
)
conda activate <env-name>
cd THE-CROSS
Follow below command TO OPEN CLIENT PROGRAM
:: CAUTION :: Client IP & PORT MUST BE THE SAME AS Server IP & PORT
python Client.py --ip=XXX.XXX.XXX.XXX --port=XXXX
:: EXAMPLE ::
python Client.py --ip=127.0.0.1 --port=7777
OS : Windows 10 Education 64 Bit (10.0, Build 19042)
CPU : Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz (4 CPUs), ~3.2GHz
RAM : DDR3 16GB
GPU : NVIDIA GeForce GTX 1050 Ti 4GB
tensorflow = Apache 2.0
tensorflow-hub = Apache 2.0
OpenCV = Apache 2.0
PyQT5 = GPL v3
Sphinx = BSD
Numpy = BSD 3-Clause
sounddevice = MIT
gdown = MIT
sphinx_rtd_theme = MIT
Check out the 'HOW TO CONTRIBUTE' item on the Github Wiki Page.
Thanks everyone who helped me with this project.