Stylized Neural Painting Installation Tutorial

Опубликовано: 03 Март 2026
на канале: bycloud 2
7,374
228

Main video
   • AI That Paints Anything Stroke By Stroke  

My main channel where I introduce the latest fascinating AI tools
   / bycloudai  

Stylized Neural Paint
[Github] https://github.com/jiupinjia/stylized...
[Project Page] https://jiupinjia.github.io/neuralpai...
[Paper] https://arxiv.org/pdf/2011.08114.pdf
[Colab] https://colab.research.google.com/dri...



Install CUDA 10.2
   • SkyAR Installation Tutorial  

Install Anaconda Prompt
   • 3D Photo Inpainting Installation Tutorial ...  


[Discord]   / discord  
[Twitter]   / ytcloud_  
[Patreon]   / bycloud  

notes:
conda create -n SNP2 python=3.6
conda activate SNP2

remove torch, torchvision, opencv-python

pip install -r Requirements.txt

conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch
conda install pytorch torchvision torchaudio cpuonly -c pytorch


Photo to oil painting

Progressive rendering

python demo_prog.py --img_path ./test_images/1.jpg --canvas_color 'white' --max_m_strokes 500 --max_divide 5 --renderer oilpaintbrush --renderer_checkpoint_dir checkpoints_G_oilpaintbrush --net_G zou-fusion-net --disable_preview


Photo to marker-pen painting

Progressive rendering

python demo_prog.py --img_path ./test_images/diamond.jpg --canvas_color 'black' --max_m_strokes 500 --max_divide 5 --renderer markerpen --renderer_checkpoint_dir checkpoints_G_markerpen --net_G zou-fusion-net --disable_preview



Style transfer

python demo.py --img_path ./test_images/sunflowers.jpg --canvas_color 'white' --max_m_strokes 100 --m_grid 5 --renderer oilpaintbrush --renderer_checkpoint_dir checkpoints_G_oilpaintbrush --net_G zou-fusion-net --output_dir ./output



Generate 8-bit graphic artworks

python demo_8bitart.py --img_path ./test_images/monalisa.jpg --canvas_color 'black' --max_m_strokes 300 --max_divide 4 --disable_preview