Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

Latest commit

 

History

History
40 lines (20 loc) · 901 Bytes

README.md

File metadata and controls

40 lines (20 loc) · 901 Bytes

Logo

FaceAR

Facial Detection in Unity: Application detects faces in the frame that the users sees, then gets the identity of the faces and displays their information next to them.

Running on Unity Version 2017.3.0b5 Personal

Version: 0.1 Alpha

You can build into a directory /LastBuild/ and wont track anything so it dosent have to be uploaded to the remote git

How to contribute:

See CONTRIBUTING.md

Git Basics:

Instructions to making your own branch:

git checkout -b [name_of_your_new_branch]

git checkout [name_of_your_new_branch]

git push origin [name_of_your_new_branch]

Instuctions for pulling the master branch into your development branch:

git pull

git rebase origin/master

Instuctions to push to your branch:

git add .

git commit -m "[YOUR MESSAGE HERE]"

git push