diff --git a/README.md b/README.md index b4b5142..1e51fb0 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,73 @@ maintaining pen-paper records.

Description

This system used pretrained fine turing model face_recognition and recognized faces by comparing face encodings

+ +
+

This is how directory structure looks like

+ ├───ams +│ ├───migrations +│ │ └───__pycache__ +│ ├───templates +│ │ └───static +│ │ ├───css +│ │ ├───js +│ │ └───media +│ └───__pycache__ +├───models +├───pictures +│ ├───N18 +│ │ └───cse +│ │ ├───cse1 +│ │ └───cse2 +│ │ └───Sample +│ ├───N19 +│ │ └───cse +│ │ └───cse1 +│ └───N20 +│ └───cse +│ ├───cse1 +│ │ ├───N181022 +│ │ ├───N200037 +│ │ ├───N200377 +│ │ ├───N200381│ │ +│ │ ├───N201064 +│ │ └───N201070 +│ └───cse2 +│ ├───N170976 +│ ├───N180789 +│ ├───N180825 +│ └───N181022 +├───project2 +│ └───__pycache__ +└───static + ├───admin + │ ├───css + │ │ └───vendor + │ │ └───select2 + │ ├───img + │ │ └───gis + │ └───js + │ ├───admin + │ └───vendor + │ ├───jquery + │ ├───select2 + │ │ └───i18n + │ └───xregexp + ├───css + ├───js + └───media +
+

Seeting up application

+

+

  • start the mysql server first
  • +
  • specify the mysql port and credentials of mysql in project2>settings.py files as shown in the below figure + +
  • +
  • Now got to the build directory and open command prompt and then enter
    + python manage.py runsslserver --cert cert.pem --key key.pem localhost:3000 + +
  • +
  • open the address in the browser and browse for localhost:3000
  • + + +