EyeTrackVR/RANSACApp
DaOfficialWizard 7fade5a0de
Create README.md
Created readme to make this process simpler and less error prone.
2022-07-04 01:00:42 +01:00
..
pye3d.libs Update pyinstaller spec and readd required libraries for installer builds 2022-07-03 15:31:49 -07:00
pye3dcustom Update pyinstaller spec and readd required libraries for installer builds 2022-07-03 15:31:49 -07:00
.gitignore Update pyinstaller spec and readd required libraries for installer builds 2022-07-03 15:31:49 -07:00
camera.py Add frame validation to protect the app from crashing 2022-06-30 22:41:16 +02:00
config.py Reformat the files to use 4 spaces 2022-06-16 09:58:50 -07:00
cv2.pyi Add cv2 types file 2022-06-05 20:19:39 -07:00
eyetrackapp.spec Update pyinstaller spec and readd required libraries for installer builds 2022-07-03 15:31:49 -07:00
main.py Reformat the files to use 4 spaces 2022-06-16 09:58:50 -07:00
osc.py Reformat the files to use 4 spaces 2022-06-16 09:58:50 -07:00
ransac.py chore: Remove unused comments and finished TODOs 2022-06-08 17:55:12 -07:00
README.md Create README.md 2022-07-04 01:00:42 +01:00
requirements.txt added proper requirements.txt file 2022-07-04 00:49:00 +01:00
speech_engine.py Reformat the files to use 4 spaces 2022-06-16 09:58:50 -07:00

How to spin up a dev environment

firstly, ensure that the virtualenv module is installed onto your pc.

pip install virtualenv

Next, cd into the RANSACApp directory and run:

python -m virtualenv venv

On windows, next we run:

venv\Scripts\activate

On linux we run:

source venv\Scripts\activate

Next, we install the dependancies and build:

pip install -r requirements.txt

When that is complete, move on to building:

pyinstaller eyetrackapp.spec

Now we can run the executable:

cd dist/eyetrackapp

./eyetrackapp