-
This software is made for Windows and for Nvidia CUDA supported devices. If your graphics card isn't Nvidia CUDA supported, the software should still run fine. Instead of using your graphics card, the software will use your CPU.
-
After opening the app, wait a moment before it opens. It will try to connect your GPU before displaying the user interface.
-
After you pressed "Generate" try not to click inside the window or the program will "stop responding". This means the program is still running in the background, but you won't see the progress bar moving until it has finished.
The Deep Dream Generator has 4 functions:
Select one or more images to convert them to deep dream.
Select a video to convert it to a deep dream video.
Select an image to create multiple deep dream frames with a stepped process to create the deep dream effect. These frames can later be converted to a video using the Images to Video function.
Select multiple frames to convert them to a video.
- Download the setup in the Releases section on the right.
- Run the setup and install the software.
- Run the app and wait a moment.
This section is only for development purposes of the app.
To download Python, open Command Prompt and type in
python
Download here https://www.anaconda.com/products/individual
conda create -n tf_gpu_env python=3.9
conda activate tf_gpu_env
conda install tensorflow-gpu -c anaconda
conda install cudnn -c conda-forge
conda install cudatoolkit -c anaconda
conda install -c conda-forge opencv ffmpeg
conda install -c conda-forge matplotlib
conda install -c anaconda pillow
conda install -c conda-forge glob2
python
import tensorflow as tf
print('Num GPUs Available', len(tf.config.list_physical_devices('GPU')))
exit()
python main.py
-
Sentdex: https://github.com/Sentdex
Resources used: https://www.youtube.com/playlist?list=PLQVvvaa0QuDdfN3lrO0NDYxa1JwCYes-E
-
Hvass-Labs: https://github.com/Hvass-Labs
Resources used: https://github.com/Hvass-Labs/TensorFlow-Tutorials
I have coded the rest of the code including the GUI. I also designed the GUI. I have learned Python just for this project, so to speak this is my first Python project.