Hekaya7 / notes.md
XA7's picture
First
e037628
# 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