File size: 1,157 Bytes
e037628 |
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 |
# 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
|