Alex Hortua commited on
Commit
6eb4ed6
·
1 Parent(s): 8b89a64

Adding new documentation for thisprocess

Browse files
README.md CHANGED
@@ -11,6 +11,26 @@ pinned: false
11
 
12
  # 3D Person Segmentation and Anaglyph Generation
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ## Lab Report
15
 
16
  ### Introduction
 
11
 
12
  # 3D Person Segmentation and Anaglyph Generation
13
 
14
+ [![Open in Spaces](https://img.shields.io/badge/🤗-Open%20in%20Spaces-blue.svg)](https://huggingface.co/spaces/axelhortua/Object-segmentation)
15
+
16
+ ## Documentation Examples
17
+
18
+ ### Input and Segmentation
19
+ ![Input Image and Segmentation](public/images/documentation/input_segmentation.png)
20
+ *Example of original input image and its segmentation mask*
21
+
22
+ ### Stereo Processing
23
+ ![Stereo Processing](public/images/documentation/stereo_process.png)
24
+ *Demonstration of stereo pair generation with different interaxial distances*
25
+
26
+ ### Anaglyph Output
27
+ ![Anaglyph Result](public/images/documentation/anaglyph_output.png)
28
+ *Final anaglyph output with red-cyan 3D effect*
29
+
30
+ ### Interface Overview
31
+ ![Gradio Interface](public/images/documentation/interface.png)
32
+ *The Gradio web interface with all adjustment controls*
33
+
34
  ## Lab Report
35
 
36
  ### Introduction
public/images/documentation/Anaglyph.png ADDED

Git LFS Details

  • SHA256: 4a9031a068c42ab384f61165934867d90fc162f320a187a060480aa4b9a14267
  • Pointer size: 132 Bytes
  • Size of remote file: 9.59 MB
public/images/documentation/Mask.png ADDED

Git LFS Details

  • SHA256: 8a9d4d64fc118875ec7c89e8ba12b6cebeb1b4f9529ddfdd272036abf0c6e586
  • Pointer size: 132 Bytes
  • Size of remote file: 2.67 MB
public/images/documentation/Stereo.png ADDED

Git LFS Details

  • SHA256: 870bf5cd22b127493bce96402fbd46e9686c4a137ca7d700ce5e1f6abd93c1b9
  • Pointer size: 132 Bytes
  • Size of remote file: 6.23 MB
src/app.py CHANGED
@@ -93,7 +93,7 @@ demo = gr.Interface(
93
  inputs=[
94
  gr.Image(label="Person Image"),
95
  gr.Image(label="Optional Background Image"),
96
- gr.Slider(minimum=0, maximum=10, step=1, value=10, label="interaxial distance"),
97
  gr.Slider(minimum=10, maximum=200, step=10, value=100, label="Person Size %"),
98
 
99
  ],
 
93
  inputs=[
94
  gr.Image(label="Person Image"),
95
  gr.Image(label="Optional Background Image"),
96
+ gr.Slider(minimum=0, maximum=20, step=1, value=10, label="interaxial distance"),
97
  gr.Slider(minimum=10, maximum=200, step=10, value=100, label="Person Size %"),
98
 
99
  ],