Use this notebook that has been edited for this guide
Make sure to run PowerShell as Administrator.
''' | |
https://gist.github.com/kohya-ss/3f774da220df102548093a7abc8538ed | |
1. put this file in ComfyUI/custom_nodes | |
2. load node from <loaders> | |
''' | |
import torch | |
from comfy.ldm.modules.diffusionmodules.openaimodel import forward_timestep_embed, timestep_embedding, th | |
def apply_control(h, control, name): |
Use this notebook that has been edited for this guide
Make sure to run PowerShell as Administrator.
This is a list of the most commonly used and relevant vtubing software. The "best" will always be subjective and depend on your specific requirements. Overall, the information in this list is as accurate as I could figure it out, but there might be errors or some details might become out of date. If you find anything that needs to be corrected, please let me know. You can also note it in a comment.
Additional explanations:
// Processing code by Etienne JACOB | |
// motion blur template by beesandbombs | |
// opensimplexnoise code in another tab might be necessary | |
// --> code here : https://gist.github.com/Bleuje/fce86ef35b66c4a2b6a469b27163591e | |
// note : I found (visually) that there is a little mistake in this rotation version but I haven't found where in the code | |
// edit : I think I understood the mistake but it's quite annoying to fix :) | |
int[][] result; | |
float t, c; |
namespace ImGui | |
{ | |
static bool SelectFile(const std::string &path, std::string &selected, const std::vector<std::string> &ext={}) { | |
bool ret = false; | |
if(ofFile(path).isDirectory()) { | |
if(TreeNode(ofFilePath::getBaseName(path).c_str())) { | |
ofDirectory dir; | |
if(!ext.empty()) { | |
dir.allowExt(""); | |
for(auto &&e : ext) { |
A Step-By-Step Guide from Unboxing to Creative Coding
Nightly required - get link from the bottom of this page (e.g. https://openframeworks.cc/ci_server/versions/nightly/of_v20190324_linuxarmv7l_nightly.tar.gz) | |
https://openframeworks.cc/download/ | |
Download OF and unpack: | |
wget https://openframeworks.cc/ci_server/versions/nightly/of_v20190324_linuxarmv7l_nightly.tar.gz | |
tar -zxvf of_v20190324_linuxarmv7l_nightly.tar.gz | |
mv of_v20190324_linuxarmv7l_nightly openFrameworks |
package cc.openframeworks; | |
import java.lang.reflect.Method; | |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.List; | |
import android.app.Activity; | |
import android.view.Surface; | |
import android.content.Context; |
class ofxTsumami { | |
private: | |
float *target; | |
float radius;pp | |
float minVal, maxVal, initVal, pressedPct; | |
string name; | |
int res; | |
glm::vec2 pos, pressedPos; | |
bool bVertical; |