├── .gitignore ├── .htaccess ├── .vscode ├── jsconfig.json ├── main.js └── settings.json ├── 404.html ├── CODE_OF_CONDUCT.md ├── README.md ├── backend └── server.js ├── database ├── db.js ├── dump.js └── model │ └── schema.js ├── package.json └── public ├── base.ejs ├── contact.ejs ├── css ├── button.css ├── contact.css ├── error.css ├── faq.css ├── index.css ├── swiper-bundle.min.css ├── testimonial.css └── translate.css ├── faq.ejs ├── images ├── bugError.svg ├── contact.png ├── face1.jpeg ├── face2.jpeg ├── face3.jpeg ├── face4.jpeg ├── face5.jpeg ├── face6.jpeg ├── face7.jpeg ├── face8.jpeg ├── face9.jpeg ├── favicon.ico └── pow-button.png ├── js ├── contact.js ├── darkMode.js ├── error.js ├── face-api.min.js ├── landing.js ├── script.js ├── scrollreveal.min.js ├── similarity.js ├── swiper-bundle.min.js ├── testimonial.js ├── translate.js └── uploadPic.js ├── landing.html ├── models ├── face_expression_model-shard1 ├── face_expression_model-weights_manifest.json ├── face_landmark_68_model-shard1 ├── face_landmark_68_model-weights_manifest.json ├── face_landmark_68_tiny_model-shard1 ├── face_landmark_68_tiny_model-weights_manifest.json ├── face_recognition_model-shard1 ├── face_recognition_model-shard2 ├── face_recognition_model-weights_manifest.json ├── tiny_face_detector_model-shard1 └── tiny_face_detector_model-weights_manifest.json ├── similarity.ejs ├── testimonial.ejs ├── uploadPic.ejs └── weights ├── age_gender_model-shard1 ├── age_gender_model-weights_manifest.json ├── face_expression_model-shard1 ├── face_expression_model-weights_manifest.json ├── face_landmark_68_model-shard1 ├── face_landmark_68_model-weights_manifest.json ├── face_landmark_68_tiny_model-shard1 ├── face_landmark_68_tiny_model-weights_manifest.json ├── face_recognition_model-shard1 ├── face_recognition_model-shard2 ├── face_recognition_model-weights_manifest.json ├── mtcnn_model-shard1 ├── mtcnn_model-weights_manifest.json ├── ssd_mobilenetv1_model-shard1 ├── ssd_mobilenetv1_model-shard2 ├── ssd_mobilenetv1_model-weights_manifest.json ├── tiny_face_detector_model-shard1 └── tiny_face_detector_model-weights_manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | ErrorDocument 404 /404.html -------------------------------------------------------------------------------- /.vscode/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/.vscode/jsconfig.json -------------------------------------------------------------------------------- /.vscode/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/.vscode/main.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/404.html -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/README.md -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/backend/server.js -------------------------------------------------------------------------------- /database/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/database/db.js -------------------------------------------------------------------------------- /database/dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/database/dump.js -------------------------------------------------------------------------------- /database/model/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/database/model/schema.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/package.json -------------------------------------------------------------------------------- /public/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/base.ejs -------------------------------------------------------------------------------- /public/contact.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/contact.ejs -------------------------------------------------------------------------------- /public/css/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/css/button.css -------------------------------------------------------------------------------- /public/css/contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/css/contact.css -------------------------------------------------------------------------------- /public/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/css/error.css -------------------------------------------------------------------------------- /public/css/faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/css/faq.css -------------------------------------------------------------------------------- /public/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/css/index.css -------------------------------------------------------------------------------- /public/css/swiper-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/css/swiper-bundle.min.css -------------------------------------------------------------------------------- /public/css/testimonial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/css/testimonial.css -------------------------------------------------------------------------------- /public/css/translate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/css/translate.css -------------------------------------------------------------------------------- /public/faq.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/faq.ejs -------------------------------------------------------------------------------- /public/images/bugError.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/bugError.svg -------------------------------------------------------------------------------- /public/images/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/contact.png -------------------------------------------------------------------------------- /public/images/face1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/face1.jpeg -------------------------------------------------------------------------------- /public/images/face2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/face2.jpeg -------------------------------------------------------------------------------- /public/images/face3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/face3.jpeg -------------------------------------------------------------------------------- /public/images/face4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/face4.jpeg -------------------------------------------------------------------------------- /public/images/face5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/face5.jpeg -------------------------------------------------------------------------------- /public/images/face6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/face6.jpeg -------------------------------------------------------------------------------- /public/images/face7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/face7.jpeg -------------------------------------------------------------------------------- /public/images/face8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/face8.jpeg -------------------------------------------------------------------------------- /public/images/face9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/face9.jpeg -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/pow-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/images/pow-button.png -------------------------------------------------------------------------------- /public/js/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/contact.js -------------------------------------------------------------------------------- /public/js/darkMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/darkMode.js -------------------------------------------------------------------------------- /public/js/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/error.js -------------------------------------------------------------------------------- /public/js/face-api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/face-api.min.js -------------------------------------------------------------------------------- /public/js/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/landing.js -------------------------------------------------------------------------------- /public/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/script.js -------------------------------------------------------------------------------- /public/js/scrollreveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/scrollreveal.min.js -------------------------------------------------------------------------------- /public/js/similarity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/similarity.js -------------------------------------------------------------------------------- /public/js/swiper-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/swiper-bundle.min.js -------------------------------------------------------------------------------- /public/js/testimonial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/testimonial.js -------------------------------------------------------------------------------- /public/js/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/translate.js -------------------------------------------------------------------------------- /public/js/uploadPic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/js/uploadPic.js -------------------------------------------------------------------------------- /public/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/landing.html -------------------------------------------------------------------------------- /public/models/face_expression_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/face_expression_model-shard1 -------------------------------------------------------------------------------- /public/models/face_expression_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/face_expression_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/face_landmark_68_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/face_landmark_68_model-shard1 -------------------------------------------------------------------------------- /public/models/face_landmark_68_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/face_landmark_68_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/face_landmark_68_tiny_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/face_landmark_68_tiny_model-shard1 -------------------------------------------------------------------------------- /public/models/face_landmark_68_tiny_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/face_landmark_68_tiny_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/face_recognition_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/face_recognition_model-shard1 -------------------------------------------------------------------------------- /public/models/face_recognition_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/face_recognition_model-shard2 -------------------------------------------------------------------------------- /public/models/face_recognition_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/face_recognition_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/tiny_face_detector_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/tiny_face_detector_model-shard1 -------------------------------------------------------------------------------- /public/models/tiny_face_detector_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/models/tiny_face_detector_model-weights_manifest.json -------------------------------------------------------------------------------- /public/similarity.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/similarity.ejs -------------------------------------------------------------------------------- /public/testimonial.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/testimonial.ejs -------------------------------------------------------------------------------- /public/uploadPic.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/uploadPic.ejs -------------------------------------------------------------------------------- /public/weights/age_gender_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/age_gender_model-shard1 -------------------------------------------------------------------------------- /public/weights/age_gender_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/age_gender_model-weights_manifest.json -------------------------------------------------------------------------------- /public/weights/face_expression_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/face_expression_model-shard1 -------------------------------------------------------------------------------- /public/weights/face_expression_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/face_expression_model-weights_manifest.json -------------------------------------------------------------------------------- /public/weights/face_landmark_68_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/face_landmark_68_model-shard1 -------------------------------------------------------------------------------- /public/weights/face_landmark_68_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/face_landmark_68_model-weights_manifest.json -------------------------------------------------------------------------------- /public/weights/face_landmark_68_tiny_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/face_landmark_68_tiny_model-shard1 -------------------------------------------------------------------------------- /public/weights/face_landmark_68_tiny_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/face_landmark_68_tiny_model-weights_manifest.json -------------------------------------------------------------------------------- /public/weights/face_recognition_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/face_recognition_model-shard1 -------------------------------------------------------------------------------- /public/weights/face_recognition_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/face_recognition_model-shard2 -------------------------------------------------------------------------------- /public/weights/face_recognition_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/face_recognition_model-weights_manifest.json -------------------------------------------------------------------------------- /public/weights/mtcnn_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/mtcnn_model-shard1 -------------------------------------------------------------------------------- /public/weights/mtcnn_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/mtcnn_model-weights_manifest.json -------------------------------------------------------------------------------- /public/weights/ssd_mobilenetv1_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/ssd_mobilenetv1_model-shard1 -------------------------------------------------------------------------------- /public/weights/ssd_mobilenetv1_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/ssd_mobilenetv1_model-shard2 -------------------------------------------------------------------------------- /public/weights/ssd_mobilenetv1_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/ssd_mobilenetv1_model-weights_manifest.json -------------------------------------------------------------------------------- /public/weights/tiny_face_detector_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/tiny_face_detector_model-shard1 -------------------------------------------------------------------------------- /public/weights/tiny_face_detector_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrsparkle-70/Emotion-detection-using-JS/HEAD/public/weights/tiny_face_detector_model-weights_manifest.json --------------------------------------------------------------------------------