Spaces:
Running
Running
Alex Hortua
commited on
Commit
·
6eb4ed6
1
Parent(s):
8b89a64
Adding new documentation for thisprocess
Browse files- README.md +20 -0
- public/images/documentation/Anaglyph.png +3 -0
- public/images/documentation/Mask.png +3 -0
- public/images/documentation/Stereo.png +3 -0
- src/app.py +1 -1
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 |
+
[](https://huggingface.co/spaces/axelhortua/Object-segmentation)
|
15 |
+
|
16 |
+
## Documentation Examples
|
17 |
+
|
18 |
+
### Input and Segmentation
|
19 |
+

|
20 |
+
*Example of original input image and its segmentation mask*
|
21 |
+
|
22 |
+
### Stereo Processing
|
23 |
+

|
24 |
+
*Demonstration of stereo pair generation with different interaxial distances*
|
25 |
+
|
26 |
+
### Anaglyph Output
|
27 |
+

|
28 |
+
*Final anaglyph output with red-cyan 3D effect*
|
29 |
+
|
30 |
+
### Interface Overview
|
31 |
+

|
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
|
public/images/documentation/Mask.png
ADDED
![]() |
Git LFS Details
|
public/images/documentation/Stereo.png
ADDED
![]() |
Git LFS Details
|
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=
|
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 |
],
|