| # Image Processing Pipeline Notes |
|
|
| ## Task Tracking |
|
|
| | Task | Status | |
| |------|--------| |
| | Split images correctly and discard half-generated images | β
| |
| | Increase split images sizes | β
| |
| | Upscale images and increase resolution | β
| |
| | Ensure everything is working correctly | β
| |
| | Review and adjust images | β
| |
| | Use better Image processing techniques and models | β¬ | |
|
|
| ## Original Task List |
| 1. Split the images correctly and discard half generated images. |
| 2. Increase split images sizes. |
| 3. Upscale images and increase resolution. |
| 4. Ensure everything is working correctly. |
|
|
| ## Process Flow |
|
|
| ```mermaid |
| graph TD |
| A[Input Image] --> B[Split Images] |
| B --> C{Quality Check} |
| C -->|Good Quality| D[Size Increase] |
| C -->|Poor Quality| E[Discard] |
| D --> F[Upscale] |
| F --> G[Resolution Enhancement] |
| G --> H[Final Quality Check] |
| H -->|Pass| I[Final Image] |
| H -->|Fail| J[Review & Adjust] |
| J --> B |
| ``` |
|
|
| ## Notes |
| - β¬ = Not Started/In Progress |
| - β
= Completed |
| - Update checkboxes as tasks are completed |
| - Follow the process flow for each image processing task |
| - Ensure quality checks are performed at each stage |
|
|