n1x-ax commited on
Commit
2665006
·
verified ·
1 Parent(s): 6582b39

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -3
README.md CHANGED
@@ -1,3 +1,81 @@
1
- ---
2
- license: gpl-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gpl-3.0
3
+ ---
4
+ # What is Neural Render?
5
+ Neural Render is a Blender add-on that integrates AI models from Replicate into your Blender workflow. It allows you to process rendered images with AI, enhancing their quality and resolution or generating new images based on your renders directly within Blender.
6
+
7
+ **Why Replicate?**
8
+ While we can use local models for inference, making the project truly open-source, the first version was built on top of Replicate – cloud computing provider, to ensure we can run any models in the cloud with great speed and quality. I plan to publish updates on this workflow when we’ll be closer to on-device image inference.
9
+
10
+ ### Render Will Never Be The Same
11
+ While traditional render still is very important and nothing can be compared to its flexibility, there are already many applications AI render could be better, or even replace the traditional approach. I will show you some of the recently discovered.
12
+
13
+ Current Features:
14
+ - Upscale and enhance rendered images using Clarity Upscaler
15
+ - Generate new images based on your renders using Control Net
16
+ - Customizable parameters for AI processing
17
+ - Seamless integration with Blender's render pipeline
18
+ - Support for various Stable Diffusion models and control types
19
+ - Options for tiling, downscaling, and custom LoRA models
20
+
21
+ > You can find the detailed instructions on how to install and use the add-on below, along with the code and necessary requirements. Be open to contributing and adding any information or examples directly into the GitHub repo.
22
+
23
+ [Blender Neural Render On GitHub](https://github.com/n1x-ax/Neural-Render)
24
+
25
+ ### Installation
26
+ - Download the addon ZIP file
27
+ - In Blender, go to Edit > Preferences > Add-ons
28
+ - Click "Install" and select the downloaded ZIP file
29
+ - Enable the "Render: Neural Render" addon
30
+
31
+ #### If you encounter issues with missing dependencies when installing the addon, you can manually install the required packages. Here's how:
32
+
33
+ ### Method 1 (Works for Mac, may work for some Windows setups):
34
+ - Open Blender's Script Editor
35
+ - Create a new text file
36
+ - Paste and run the following Python code:
37
+
38
+ ```
39
+ import sys
40
+ import subprocess
41
+ subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'replicate'])
42
+ ```
43
+ - Restart Blender
44
+ - Try enabling the Neural Render addon again
45
+
46
+ ### Method 2 (Alternative for Windows users):
47
+
48
+ If Method 1 doesn't work on your Windows system, follow these steps:
49
+ - Locate your Blender installation folder. It's typically in: `C:\Program Files\Blender Foundation\Blender 4.2`
50
+ - Open Windows File Explorer and navigate to this folder
51
+ - In the address bar at the top, type cmd and press Enter. This will open a Command Prompt window in the Blender folder
52
+ - In the Command Prompt, type the following command and press Enter:
53
+ ```
54
+ 4.2\python\bin\python.exe -m pip install replicate
55
+ ```
56
+ - Wait for the installation to complete. You should see a success message
57
+ - Close the Command Prompt and restart Blender
58
+ - Try enabling the Neural Render addon again
59
+
60
+ These methods should install the necessary 'replicate' package in Blender's Python environment. If you're still experiencing issues, please check our GitHub repository for the most up-to-date troubleshooting tips.
61
+
62
+ ### Usage
63
+ - Set up your Replicate API key in the addon preferences
64
+ - Go to the Properties panel > Render tab > Neural Render section
65
+ - Choose the AI model you want to use (Clarity Upscaler or Control Net)
66
+ - Adjust the AI processing parameters as needed
67
+ - Click the "Neural Render" button to process your render with AI
68
+
69
+ ### Requirements
70
+ - Blender 4.2.0 or higher
71
+ - Active internet connection
72
+ - Replicate account
73
+ - Replicate API key
74
+
75
+ ### Credits
76
+ - Developed by Alex Nix
77
+ - Powered by Replicate and the Clarity Upscaler model
78
+ - Built for Blender, the free and open source 3D creation suite
79
+ - Flux Control Net model by xlabs-ai
80
+ - Control Net model by jagilley
81
+ - Cursor AI for everything else