Akjava commited on
Commit
f6e2e56
·
1 Parent(s): 1c500a7

update explain

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. demo_header.html +6 -6
app.py CHANGED
@@ -564,7 +564,7 @@ with gr.Blocks(css=css, elem_id="demo-container") as demo:
564
  gr.HTML("<h5>For Rotation sometime differenct to mediapipe's result</h5>")
565
  with gr.Row( equal_height=True):
566
  bt_test = gr.Button("Estimate by Models")
567
- average_result = gr.Text(label="stacking")
568
  gr.HTML("<p>number is max training angle,usually stacking is works well.slow because of etr</p>")
569
  with gr.Row( equal_height=True):
570
  short_result = gr.Text(label="hgbr-15")
 
564
  gr.HTML("<h5>For Rotation sometime differenct to mediapipe's result</h5>")
565
  with gr.Row( equal_height=True):
566
  bt_test = gr.Button("Estimate by Models")
567
+ average_result = gr.Text(label="stacking(mix of 8 results with the use of trained weight)")
568
  gr.HTML("<p>number is max training angle,usually stacking is works well.slow because of etr</p>")
569
  with gr.Row( equal_height=True):
570
  short_result = gr.Text(label="hgbr-15")
demo_header.html CHANGED
@@ -6,14 +6,14 @@
6
  <img src="https://akjava.github.io/AIDiagramChatWithVoice-FaceCharacter/webp/128/00544245.webp" alt="Mediapipe Face Detection" class="image">
7
 
8
  <p class="text">
9
- This Space use <a href="http://www.apache.org/licenses/LICENSE-2.0">the Apache 2.0</a> Licensed <a href="https://ai.google.dev/edge/mediapipe/solutions/vision/face_landmarker">Mediapipe FaceLandmarker</a> <br>
10
- "Current MediaPipe face-landmark detection struggle with faces rotated more than 45 degrees (due to limitations in training data).<br>
11
-
12
  Accurate detection in MediaPipe requires correct positioning, but I don't know the exact position needed. This is a known <a href="https://github.com/google-ai-edge/mediapipe/issues/4759">issue</a><br>
13
- I start to test hgbr and lgbm models,this estimate result help to make aligned image.<br>
14
  center index see <a href="https://github.com/google-ai-edge/mediapipe/blob/a908d668c730da128dfa8d9f6bd25d519d006692/mediapipe/modules/face_geometry/data/canonical_face_model_uv_visualization.png">mediapipe face index image</a><br>
15
- Recently Choose center index and mediapipe-estimate + models trained with face-features extracted by mediapipe<br>
16
- I'll share model and dataset soon.
17
  </p>
18
  </div>
19
 
 
6
  <img src="https://akjava.github.io/AIDiagramChatWithVoice-FaceCharacter/webp/128/00544245.webp" alt="Mediapipe Face Detection" class="image">
7
 
8
  <p class="text">
9
+ This Space use <a href="http://www.apache.org/licenses/LICENSE-2.0">the Apache 2.0</a> Licensed <a href="https://ai.google.dev/edge/mediapipe/solutions/vision/face_landmarker">Mediapipe FaceLandmarker</a><br>
10
+ This service offers two object detection methods:object detection using MediaPipe with a selected center point, and object detection using a trained model.<br>
11
+ "Current MediaPipe face-landmark detection struggle with faces rotated more than 45 degrees (due to limitations in training data).<br>
12
  Accurate detection in MediaPipe requires correct positioning, but I don't know the exact position needed. This is a known <a href="https://github.com/google-ai-edge/mediapipe/issues/4759">issue</a><br>
13
+
14
  center index see <a href="https://github.com/google-ai-edge/mediapipe/blob/a908d668c730da128dfa8d9f6bd25d519d006692/mediapipe/modules/face_geometry/data/canonical_face_model_uv_visualization.png">mediapipe face index image</a><br>
15
+ We trained the model using data generated by rotating frontal views. Because of this rotation, the center points might not align perfectly, potentially causing a shift in the object detection<br>
16
+ I'll share model and dataset soon.<br>
17
  </p>
18
  </div>
19