From 1b9cb00ef86f0d973dbb5af4f3cccd215547be61 Mon Sep 17 00:00:00 2001 From: dental-informatics-org <90074809+dental-informatics-org@users.noreply.github.com> Date: Sun, 7 Nov 2021 08:34:04 -0500 Subject: [PATCH 1/7] Update script.js --- script.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/script.js b/script.js index e4ba013..25db0a0 100644 --- a/script.js +++ b/script.js @@ -1,10 +1,10 @@ const video = document.getElementById('video') Promise.all([ - faceapi.nets.tinyFaceDetector.loadFromUri('/models'), - faceapi.nets.faceLandmark68Net.loadFromUri('/models'), - faceapi.nets.faceRecognitionNet.loadFromUri('/models'), - faceapi.nets.faceExpressionNet.loadFromUri('/models') + faceapi.nets.tinyFaceDetector.loadFromUri('./models'), + faceapi.nets.faceLandmark68Net.loadFromUri('./models'), + faceapi.nets.faceRecognitionNet.loadFromUri('./models'), + faceapi.nets.faceExpressionNet.loadFromUri('./models') ]).then(startVideo) function startVideo() { @@ -28,4 +28,4 @@ video.addEventListener('play', () => { faceapi.draw.drawFaceLandmarks(canvas, resizedDetections) faceapi.draw.drawFaceExpressions(canvas, resizedDetections) }, 100) -}) \ No newline at end of file +}) From d38870dedc96c6dfa63c0778d174f6e5fd146e68 Mon Sep 17 00:00:00 2001 From: dental-informatics-org <90074809+dental-informatics-org@users.noreply.github.com> Date: Sun, 7 Nov 2021 08:39:50 -0500 Subject: [PATCH 2/7] Update script.js --- script.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script.js b/script.js index 25db0a0..8970786 100644 --- a/script.js +++ b/script.js @@ -1,10 +1,10 @@ const video = document.getElementById('video') Promise.all([ - faceapi.nets.tinyFaceDetector.loadFromUri('./models'), - faceapi.nets.faceLandmark68Net.loadFromUri('./models'), - faceapi.nets.faceRecognitionNet.loadFromUri('./models'), - faceapi.nets.faceExpressionNet.loadFromUri('./models') + faceapi.nets.tinyFaceDetector.loadFromUri('./models/tiny_face_detector_model-weights_manifest.json'), + faceapi.nets.faceLandmark68Net.loadFromUri('./models/face_landmark_68_model-weights_manifest.json'), + faceapi.nets.faceRecognitionNet.loadFromUri('./models/face_recognition_model-weights_manifest.json'), + faceapi.nets.faceExpressionNet.loadFromUri('./models/face_expression_model-weights_manifest.json') ]).then(startVideo) function startVideo() { From 6a3ead11a81df949c29479c0a9d71da9b54fc9b9 Mon Sep 17 00:00:00 2001 From: dental-informatics-org <90074809+dental-informatics-org@users.noreply.github.com> Date: Sun, 7 Nov 2021 09:04:34 -0500 Subject: [PATCH 3/7] Update index.html page title: Patient Face Detection - POC --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 167cadd..5f08d3e 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,7 @@ + Patient Face Detection - POC @@ -26,4 +27,4 @@ - \ No newline at end of file + From cc36425355ad292dd2d2d79d309e2fdac45e605c Mon Sep 17 00:00:00 2001 From: dental-informatics-org <90074809+dental-informatics-org@users.noreply.github.com> Date: Sun, 7 Nov 2021 09:13:49 -0500 Subject: [PATCH 4/7] Update index.html --- index.html | 39 ++++++++++++++++++++++++++++++++++----- 1 file changed, 34 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 5f08d3e..ddf2b95 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,14 @@ - Patient Face Detection - POC - - + + + + - Document + + Patient Face Detection - POC + - + + +
+

My Patient face detection - POC

+

Developed by Dr. Igor Alves (Software Eng) and Dr. Gustavo Raime (AI/ML)

+
+ +
+
+
+

Column 1

+

Lorem ipsum dolor sit amet, consectetur adipisicing elit...

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...

+
+
+

Column 2

+ +
+
+

Column 3

+

Lorem ipsum dolor sit amet, consectetur adipisicing elit...

+

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...

+
+
+
+ + From cd1a6801f4af87f234fd1f4c3d77a15f56b51197 Mon Sep 17 00:00:00 2001 From: dental-informatics-org <90074809+dental-informatics-org@users.noreply.github.com> Date: Sun, 7 Nov 2021 09:15:56 -0500 Subject: [PATCH 5/7] Removed style --- index.html | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/index.html b/index.html index ddf2b95..5675809 100644 --- a/index.html +++ b/index.html @@ -11,21 +11,6 @@ - From 7d06f22cf0f01cab7a756c58e72397822bc23aa8 Mon Sep 17 00:00:00 2001 From: dental-informatics-org <90074809+dental-informatics-org@users.noreply.github.com> Date: Sun, 7 Nov 2021 09:17:14 -0500 Subject: [PATCH 6/7] Update index.html --- index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/index.html b/index.html index 5675809..5b70cb2 100644 --- a/index.html +++ b/index.html @@ -13,9 +13,7 @@ - - -
+

My Patient face detection - POC

Developed by Dr. Igor Alves (Software Eng) and Dr. Gustavo Raime (AI/ML)

From e3ecc17281270a341345df98b496c2eafe48d99a Mon Sep 17 00:00:00 2001 From: dental-informatics-org <90074809+dental-informatics-org@users.noreply.github.com> Date: Sun, 7 Nov 2021 09:27:38 -0500 Subject: [PATCH 7/7] Update index.html --- index.html | 50 +++++++++++++++++++------------------------------- 1 file changed, 19 insertions(+), 31 deletions(-) diff --git a/index.html b/index.html index 5b70cb2..89c9489 100644 --- a/index.html +++ b/index.html @@ -1,42 +1,30 @@ - - - - + Patient Face Detection - POC + + - Patient Face Detection - POC - + -
-

My Patient face detection - POC

-

Developed by Dr. Igor Alves (Software Eng) and Dr. Gustavo Raime (AI/ML)

-
- -
-
-
-

Column 1

-

Lorem ipsum dolor sit amet, consectetur adipisicing elit...

-

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...

-
-
-

Column 2

- -
-
-

Column 3

-

Lorem ipsum dolor sit amet, consectetur adipisicing elit...

-

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...

-
-
-
- - +