|
| 1 | +# DeepFX Studio |
| 2 | + |
| 3 | +>Note: |
| 4 | +This text is not AI-generated—I have personally written it. Please take the time to read it carefully. |
| 5 | + |
| 6 | + |
| 7 | +## File Structures |
| 8 | + |
| 9 | +```bash |
| 10 | +./ |
| 11 | +├── ai_colorization |
| 12 | +├── ai_eraser |
| 13 | +├── ai_filter |
| 14 | +├── ai_image_editor |
| 15 | +├── ai_image_upscale |
| 16 | +├── ai_text_to_image_generator |
| 17 | +├── artistic_image_creator |
| 18 | +├── background_remover |
| 19 | +├── components |
| 20 | +├── CONTRIBUTING.md |
| 21 | +├── dashboard |
| 22 | +├── db.sqlite3 |
| 23 | +├── deepfx_studio |
| 24 | +├── docker-compose.yml |
| 25 | +├── Dockerfile |
| 26 | +├── INSTALLATION.md |
| 27 | +├── manage.py |
| 28 | +├── package.json |
| 29 | +├── package-lock.json |
| 30 | +├── pyproject.toml |
| 31 | +├── README.md |
| 32 | +├── requirements.txt |
| 33 | +├── static |
| 34 | +├── tailwind.config.js |
| 35 | +├── templates |
| 36 | +├── user_auth |
| 37 | +└── website |
| 38 | +``` |
| 39 | + |
| 40 | + |
| 41 | +These are seperate apps |
| 42 | + |
| 43 | +```bash |
| 44 | +├── templates # Contains all the HTML page for all this app in a single folder |
| 45 | +├── deepfx_studio # This is the main App which controls all other apps in this django project |
| 46 | +├── user_auth # Contains UI related compoents related to Django all-auth |
| 47 | +├── ai_colorization # Contains Code Releated to AI Eraser Page(DeOldify) |
| 48 | +├── ai_filter # Contains Code Releated to AI Filter Page (image_to_cartoon) |
| 49 | +├── ai_image_editor # Contains Code Releated to AI Image Editor (Inpaint-Anything) |
| 50 | +├── ai_image_upscale # Contains Code related to Image Upscale Page (Real-ESRGAN) |
| 51 | +├── ai_text_to_image_generator # Contains Code related to Text to Image Generator Page |
| 52 | +├── artistic_image_creator # Contains Code related to Artistix Image Create (NST) |
| 53 | +├── background_remover # Contains Code Related to Backgroud Remover Page (Is-NET) |
| 54 | +├── dashboard # Dashboard Page Related |
| 55 | +└── website # Contains all the pages related to the website i.e landing page, Abiout Page or etc |
| 56 | +``` |
| 57 | + |
| 58 | +Each Djnago App has a seperate folder named according to the model which they use |
| 59 | + |
| 60 | +These are the pictures which will tell you where to place the models after you download them from [releases](https://github.com/XBastille/DeepFX-Studio/releases) page in github |
| 61 | + |
| 62 | + |
| 63 | +#### AI Colorization |
| 64 | + |
| 65 | + |
| 66 | + |
| 67 | +#### AI Filter |
| 68 | + |
| 69 | + |
| 70 | + |
| 71 | +#### AI Image Editor |
| 72 | + |
| 73 | + |
| 74 | + |
| 75 | +#### AI Image Upscale |
| 76 | + |
| 77 | + |
| 78 | + |
| 79 | +#### Artistic Image Creator |
| 80 | + |
| 81 | + |
| 82 | + |
| 83 | +#### Background Remover |
| 84 | + |
| 85 | + |
| 86 | + |
| 87 | +#### Text To Image |
| 88 | + |
| 89 | + |
0 commit comments