Spaces:
Running
Running
File size: 9,835 Bytes
a6e8297 9df842f e98ae33 9df842f a6e8297 9df842f a6e8297 ba553fd 6eb4ed6 2d4489e 6eb4ed6 2d4489e 6eb4ed6 2d4489e 6eb4ed6 e98ae33 2d4489e e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 e98ae33 8b89a64 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
---
title: Object Segmentation
emoji: π
colorFrom: gray
colorTo: pink
sdk: gradio
sdk_version: 5.22.0
app_file: src/app.py
pinned: false
---
# 3D Person Segmentation and Anaglyph Generation
[](https://huggingface.co/spaces/axelhortua/Object-segmentation)
## Documentation Examples
### Input and Segmentation

*Example of original input image and its segmentation mask*
### Stereo Processing

*Demonstration of stereo pair generation with different interaxial distances*
### Anaglyph Output

*Final anaglyph output with red-cyan 3D effect*
## Lab Report
[Read the full report](public/Project%204%20Report.pdf)
### Introduction
This project implements a sophisticated 3D image processing system that combines person segmentation with stereoscopic and anaglyph image generation. The main objectives were to:
1. Accurately segment people from images using advanced AI models
2. Generate stereoscopic 3D effects from 2D images
3. Create red-cyan anaglyph images for 3D viewing
4. Provide an interactive web interface for real-time processing
5. Handle varying image sizes with intelligent mask alignment
### Methodology
#### Tools and Technologies Used
- **SegFormer (nvidia/segformer-b0)**: State-of-the-art transformer-based model for semantic segmentation
- **PyTorch**: Deep learning framework for running the SegFormer model
- **OpenCV**: Image processing operations and mask refinement
- **Gradio**: Web interface development
- **NumPy**: Efficient array operations for image manipulation
- **PIL (Python Imaging Library)**: Image loading and basic transformations
#### Mask Processing Deep Dive
The mask processing is a crucial component of our system, designed to handle various challenges in creating high-quality 3D effects:
1. **Why Mask Resizing is Necessary**
- **Input Variability**: User-uploaded images come in different sizes and aspect ratios
- **Model Constraints**: SegFormer outputs masks at a fixed resolution (512x512)
- **Background Compatibility**: Backgrounds may have different dimensions than person images
- **3D Effect Quality**: Proper alignment is crucial for convincing stereoscopic effects
2. **Mask Processing Pipeline**
```
Original Image β SegFormer Segmentation β Initial Mask (512x512)
β
Resize to Match Background
β
Add Transparent Padding
β
Center Alignment
β
Final Processed Mask
```
3. **Technical Implementation**
```python
# Pseudocode for mask processing
def process_mask(mask, background_size):
# Calculate padding dimensions
pad_top = (background_height - mask_height) // 2
pad_bottom = background_height - mask_height - pad_top
pad_left = (background_width - mask_width) // 2
pad_right = background_width - mask_width - pad_left
# Add padding with transparency
padded_mask = np.pad(mask,
((pad_top, pad_bottom),
(pad_left, pad_right),
(0,0)),
mode='constant')
return padded_mask
```
#### Visual Process Explanation
```
+----------------+ +----------------+ +----------------+
| Original | | Segmented | | Padded |
| Image | --> | Mask | --> | Mask |
| (Variable) | | (512x512) | | (Background) |
+----------------+ +----------------+ +----------------+
| |
v v
+----------------+ +----------------+ +----------------+
| Left View | | Stereo Pair | | Anaglyph |
| Shifted | --> | Combined | --> | Output |
| | | | | |
+----------------+ +----------------+ +----------------+
```
**Key Processing Steps Visualization:**
1. **Mask Generation and Sizing:**
```
+------------+ +-----------+ +-------------+
| Raw Image | | Raw Mask | | Sized Mask |
| ****** | -> | ######## | -> | ######## |
| *Image * | | #Mask # | | #Mask # |
| ****** | | ######## | | ######## |
+------------+ +-----------+ +-------------+
```
2. **Transparency Handling:**
```
Original Padded Final
+----+ +------+ +------+
|####| | | | ## |
|####| -> |#### | -> |######|
|####| |#### | | ## |
+----+ +------+ +------+
```
#### Implementation Steps
1. **Person Segmentation**
- Utilized SegFormer model fine-tuned on ADE20K dataset
- Applied post-processing with erosion and Gaussian blur for mask refinement
- Implemented mask scaling and centering for various input sizes
- Added transparent padding for proper background integration
2. **Mask Processing and Alignment**
- Implemented dynamic mask resizing to match background dimensions
- Added centered padding for smaller masks
- Preserved transparency in padded regions
- Ensured proper aspect ratio maintenance
3. **Stereoscopic Processing**
- Created depth simulation through horizontal pixel shifting
- Implemented parallel view stereo pair generation
- Added configurable interaxial distance for 3D effect adjustment
- Enhanced alignment between stereo pairs with mask centering
4. **Anaglyph Generation**
- Combined left and right eye views into red-cyan anaglyph
- Implemented color channel separation and recombination
- Added background image support with proper masking
- Improved blending between foreground and background
5. **User Interface**
- Developed interactive web interface using Gradio
- Added real-time parameter adjustment capabilities
- Implemented support for custom background images
- Added size adjustment controls
### Results
The system produces three main outputs:
1. Segmentation mask showing the isolated person with proper transparency
2. Side-by-side stereo pair for parallel viewing with centered alignment
3. Red-cyan anaglyph image for 3D glasses viewing
Key Features:
- Adjustable person size (10-200%)
- Configurable interaxial distance (0-10 pixels)
- Optional custom background support
- Real-time processing and preview
- Intelligent mask alignment and padding
- Transparent background handling
### Discussion
#### Technical Challenges
1. **Mask Alignment**: Ensuring proper alignment between segmentation masks and background images required careful consideration of image dimensions and aspect ratios.
2. **Stereo Effect Quality**: Balancing the interaxial distance for comfortable viewing while maintaining the 3D effect.
3. **Performance Optimization**: Efficient processing of large images while maintaining real-time interaction.
4. **Transparency Handling**: Implementing proper transparency in padded regions while maintaining mask quality.
5. **Size Adaptation**: Managing different input image sizes while preserving aspect ratios and alignment.
#### Learning Outcomes
- Deep understanding of stereoscopic image generation
- Experience with state-of-the-art segmentation models
- Practical knowledge of image processing techniques
- Web interface development for ML applications
- Advanced mask manipulation and alignment strategies
### Conclusion
This project successfully demonstrates the integration of modern AI-powered segmentation with classical stereoscopic image processing techniques. The system provides an accessible way to create 3D effects from regular 2D images, with robust handling of different image sizes and proper transparency management.
#### Future Work
- Implementation of depth-aware 3D effect generation
- Support for video processing
- Additional 3D viewing formats (side-by-side, over-under)
- Enhanced background replacement options
- Mobile device optimization
- Advanced depth map generation
- Multi-person segmentation support
## Setup
```bash
pip install -r requirements.txt
```
## Usage
```bash
cd src
python app.py
```
## Parameters
- **Person Image**: Upload an image containing a person
- **Background Image**: (Optional) Custom background image
- **Interaxial Distance**: Adjust the 3D effect strength (0-10)
- **Person Size**: Adjust the size of the person in the output (10-200%)
## Output Types
1. **Segmentation Mask**: Shows the isolated person with proper transparency
2. **Stereo Pair**: Side-by-side stereo image for parallel viewing
3. **Anaglyph**: Red-cyan 3D image viewable with anaglyph glasses
## Technical Notes
- **Mask Processing Details**:
- Initial mask is generated at 512x512 resolution
- Dynamic padding calculation: `pad = (background_size - mask_size) // 2`
- Transparency preservation using NumPy's constant padding mode
- Aspect ratio maintained through centered scaling
- Real-time size adjustments (10-200%) applied before padding
- **Size Handling Algorithm**:
1. Calculate target dimensions based on background
2. Resize mask while maintaining aspect ratio
3. Add transparent padding to match background
4. Center the mask content
5. Apply any user-specified size adjustments
- The system automatically handles different input image sizes
- Masks are dynamically padded and centered for optimal alignment
- Transparent regions are properly preserved in the final output
- Background images are automatically scaled to match the person image
- Real-time preview updates as parameters are adjusted
|