├── .gitignore ├── .idea ├── .gitignore ├── freelabel.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── libraries │ └── Django_Lib.xml ├── misc.xml ├── modules.xml ├── other.xml ├── vcs.xml └── webServers.xml ├── BuildInstructions-2023-07-18.md ├── Dockerfile ├── DogDataset ├── Epwn2oaXEAEiSbg.jpeg ├── Epwn2pIW4AAb7rC.jpg ├── Epwn2peXEAAGB9T.jpg ├── Epwn2pnW8AADv6Q.jpg ├── categories.txt └── dog0.jpg ├── FreeLabel_api ├── freelabel │ ├── admin.py │ ├── models.py │ └── tests.py ├── settings.py ├── urls.py └── wsgi.py ├── Notes_on_FreeLabel.pdf ├── README.md ├── db.sqlite3 ├── freelabel ├── RGRmain.cpp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── forms.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── ourLib.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── callRGR.c ├── callRGR.cpython-36m-x86_64-linux-gnu.so ├── callRGR.pyx ├── driveapi.py ├── forms.py ├── models.py ├── numpyctypes.py ├── ourLib.py ├── setup.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── requirements.txt ├── static ├── images │ ├── PASCALlut.npy │ ├── PASCALlutW.npy │ ├── addCat.png │ ├── barInfo.svg │ ├── circle.gif │ ├── circle1.png │ ├── circle2.png │ ├── circle4.png │ ├── circle8.png │ ├── circle9.png │ ├── colorbar.svg │ ├── eraser.png │ ├── eraser1.png │ ├── eraser2.png │ ├── eraser4.png │ ├── eraser8.png │ ├── line.gif │ ├── line1.png │ ├── line2.png │ ├── line4.png │ ├── line8.png │ ├── loader.gif │ ├── pencil.gif │ ├── pencil1.png │ ├── pencil2.png │ ├── pencil4.png │ ├── pencil8.png │ ├── pencilB.png │ ├── rect.gif │ ├── rect1.png │ ├── rect2.png │ ├── rect4.png │ ├── rect8.png │ ├── rect9.png │ ├── refine.gif │ ├── scoreRules.png │ ├── scoreRules.svg │ └── screenEx.png ├── js │ ├── base.js │ ├── customsetScratch.js │ ├── initGlobals.js │ ├── main.js │ ├── scores.js │ └── video.js ├── listCats.txt ├── lists │ ├── .keep │ ├── imgs__atabb-dec.txt │ ├── imgs_custom_atabb-dec.txt │ ├── infoCustom_atabb-dec.txt │ └── ranking.npy ├── loading-bar.css ├── loading-bar.js ├── log │ ├── Log_atabb-dec.txt │ ├── Logcustom_atabb-dec.txt │ └── masks │ │ └── .keep └── tutorial │ ├── guidelines.pdf │ ├── instrNew.mp4 │ ├── video0.mp4 │ ├── video1.mp4 │ ├── video2.mp4 │ ├── video3.mp4 │ └── video4.mp4 └── templates └── freelabel ├── altregister.html ├── customsetScratch.html ├── login.html ├── main.html ├── register.html └── video.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/freelabel.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.idea/freelabel.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/libraries/Django_Lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.idea/libraries/Django_Lib.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/webServers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/.idea/webServers.xml -------------------------------------------------------------------------------- /BuildInstructions-2023-07-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/BuildInstructions-2023-07-18.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/Dockerfile -------------------------------------------------------------------------------- /DogDataset/Epwn2oaXEAEiSbg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/DogDataset/Epwn2oaXEAEiSbg.jpeg -------------------------------------------------------------------------------- /DogDataset/Epwn2pIW4AAb7rC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/DogDataset/Epwn2pIW4AAb7rC.jpg -------------------------------------------------------------------------------- /DogDataset/Epwn2peXEAAGB9T.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/DogDataset/Epwn2peXEAAGB9T.jpg -------------------------------------------------------------------------------- /DogDataset/Epwn2pnW8AADv6Q.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/DogDataset/Epwn2pnW8AADv6Q.jpg -------------------------------------------------------------------------------- /DogDataset/categories.txt: -------------------------------------------------------------------------------- 1 | Background 2 | Dog 3 | Ball 4 | -------------------------------------------------------------------------------- /DogDataset/dog0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/DogDataset/dog0.jpg -------------------------------------------------------------------------------- /FreeLabel_api/freelabel/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/FreeLabel_api/freelabel/admin.py -------------------------------------------------------------------------------- /FreeLabel_api/freelabel/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/FreeLabel_api/freelabel/models.py -------------------------------------------------------------------------------- /FreeLabel_api/freelabel/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/FreeLabel_api/freelabel/tests.py -------------------------------------------------------------------------------- /FreeLabel_api/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/FreeLabel_api/settings.py -------------------------------------------------------------------------------- /FreeLabel_api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/FreeLabel_api/urls.py -------------------------------------------------------------------------------- /FreeLabel_api/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/FreeLabel_api/wsgi.py -------------------------------------------------------------------------------- /Notes_on_FreeLabel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/Notes_on_FreeLabel.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /freelabel/RGRmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/RGRmain.cpp -------------------------------------------------------------------------------- /freelabel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freelabel/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /freelabel/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /freelabel/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /freelabel/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /freelabel/__pycache__/ourLib.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/__pycache__/ourLib.cpython-36.pyc -------------------------------------------------------------------------------- /freelabel/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /freelabel/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /freelabel/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/admin.py -------------------------------------------------------------------------------- /freelabel/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/apps.py -------------------------------------------------------------------------------- /freelabel/callRGR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/callRGR.c -------------------------------------------------------------------------------- /freelabel/callRGR.cpython-36m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/callRGR.cpython-36m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /freelabel/callRGR.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/callRGR.pyx -------------------------------------------------------------------------------- /freelabel/driveapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/driveapi.py -------------------------------------------------------------------------------- /freelabel/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/forms.py -------------------------------------------------------------------------------- /freelabel/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/models.py -------------------------------------------------------------------------------- /freelabel/numpyctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/numpyctypes.py -------------------------------------------------------------------------------- /freelabel/ourLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/ourLib.py -------------------------------------------------------------------------------- /freelabel/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/setup.py -------------------------------------------------------------------------------- /freelabel/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/tests.py -------------------------------------------------------------------------------- /freelabel/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/urls.py -------------------------------------------------------------------------------- /freelabel/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/freelabel/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/images/PASCALlut.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/PASCALlut.npy -------------------------------------------------------------------------------- /static/images/PASCALlutW.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/PASCALlutW.npy -------------------------------------------------------------------------------- /static/images/addCat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/addCat.png -------------------------------------------------------------------------------- /static/images/barInfo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/barInfo.svg -------------------------------------------------------------------------------- /static/images/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/circle.gif -------------------------------------------------------------------------------- /static/images/circle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/circle1.png -------------------------------------------------------------------------------- /static/images/circle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/circle2.png -------------------------------------------------------------------------------- /static/images/circle4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/circle4.png -------------------------------------------------------------------------------- /static/images/circle8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/circle8.png -------------------------------------------------------------------------------- /static/images/circle9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/circle9.png -------------------------------------------------------------------------------- /static/images/colorbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/colorbar.svg -------------------------------------------------------------------------------- /static/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/eraser.png -------------------------------------------------------------------------------- /static/images/eraser1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/eraser1.png -------------------------------------------------------------------------------- /static/images/eraser2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/eraser2.png -------------------------------------------------------------------------------- /static/images/eraser4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/eraser4.png -------------------------------------------------------------------------------- /static/images/eraser8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/eraser8.png -------------------------------------------------------------------------------- /static/images/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/line.gif -------------------------------------------------------------------------------- /static/images/line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/line1.png -------------------------------------------------------------------------------- /static/images/line2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/line2.png -------------------------------------------------------------------------------- /static/images/line4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/line4.png -------------------------------------------------------------------------------- /static/images/line8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/line8.png -------------------------------------------------------------------------------- /static/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/loader.gif -------------------------------------------------------------------------------- /static/images/pencil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/pencil.gif -------------------------------------------------------------------------------- /static/images/pencil1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/pencil1.png -------------------------------------------------------------------------------- /static/images/pencil2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/pencil2.png -------------------------------------------------------------------------------- /static/images/pencil4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/pencil4.png -------------------------------------------------------------------------------- /static/images/pencil8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/pencil8.png -------------------------------------------------------------------------------- /static/images/pencilB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/pencilB.png -------------------------------------------------------------------------------- /static/images/rect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/rect.gif -------------------------------------------------------------------------------- /static/images/rect1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/rect1.png -------------------------------------------------------------------------------- /static/images/rect2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/rect2.png -------------------------------------------------------------------------------- /static/images/rect4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/rect4.png -------------------------------------------------------------------------------- /static/images/rect8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/rect8.png -------------------------------------------------------------------------------- /static/images/rect9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/rect9.png -------------------------------------------------------------------------------- /static/images/refine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/refine.gif -------------------------------------------------------------------------------- /static/images/scoreRules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/scoreRules.png -------------------------------------------------------------------------------- /static/images/scoreRules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/scoreRules.svg -------------------------------------------------------------------------------- /static/images/screenEx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/images/screenEx.png -------------------------------------------------------------------------------- /static/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/js/base.js -------------------------------------------------------------------------------- /static/js/customsetScratch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/js/customsetScratch.js -------------------------------------------------------------------------------- /static/js/initGlobals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/js/initGlobals.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/scores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/js/scores.js -------------------------------------------------------------------------------- /static/js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/js/video.js -------------------------------------------------------------------------------- /static/listCats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/listCats.txt -------------------------------------------------------------------------------- /static/lists/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lists/imgs__atabb-dec.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/lists/imgs_custom_atabb-dec.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 0 3 | 1 4 | 3 5 | 4 6 | -------------------------------------------------------------------------------- /static/lists/infoCustom_atabb-dec.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /static/lists/ranking.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/lists/ranking.npy -------------------------------------------------------------------------------- /static/loading-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/loading-bar.css -------------------------------------------------------------------------------- /static/loading-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/loading-bar.js -------------------------------------------------------------------------------- /static/log/Log_atabb-dec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/log/Log_atabb-dec.txt -------------------------------------------------------------------------------- /static/log/Logcustom_atabb-dec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/log/Logcustom_atabb-dec.txt -------------------------------------------------------------------------------- /static/log/masks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/tutorial/guidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/tutorial/guidelines.pdf -------------------------------------------------------------------------------- /static/tutorial/instrNew.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/tutorial/instrNew.mp4 -------------------------------------------------------------------------------- /static/tutorial/video0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/tutorial/video0.mp4 -------------------------------------------------------------------------------- /static/tutorial/video1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/tutorial/video1.mp4 -------------------------------------------------------------------------------- /static/tutorial/video2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/tutorial/video2.mp4 -------------------------------------------------------------------------------- /static/tutorial/video3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/tutorial/video3.mp4 -------------------------------------------------------------------------------- /static/tutorial/video4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/static/tutorial/video4.mp4 -------------------------------------------------------------------------------- /templates/freelabel/altregister.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/templates/freelabel/altregister.html -------------------------------------------------------------------------------- /templates/freelabel/customsetScratch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/templates/freelabel/customsetScratch.html -------------------------------------------------------------------------------- /templates/freelabel/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/templates/freelabel/login.html -------------------------------------------------------------------------------- /templates/freelabel/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/templates/freelabel/main.html -------------------------------------------------------------------------------- /templates/freelabel/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/templates/freelabel/register.html -------------------------------------------------------------------------------- /templates/freelabel/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philadias/freelabel/HEAD/templates/freelabel/video.html --------------------------------------------------------------------------------