File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,11 @@ Here are some more advanced examples:
32
32
33
33
[ unCLIP] ( unclip )
34
34
35
+ #### The [ Node Guide (WIP)] ( https://blenderneko.github.io/ComfyUI-docs/ ) documents what each node does.
36
+
35
37
#### You might also want to check out the: [ Frequently Asked Questions] ( faq )
36
38
39
+ The [ ComfyUI Blog] ( https://comfyanonymous.github.io/ComfyUI_Blog/ ) is also a source of various information.
37
40
38
41
## Other Sources of Examples/Information:
39
42
@@ -53,3 +56,4 @@ Here are some places where you can find some:
53
56
54
57
[ https://github.com/WASasquatch/comfyui-plugins ] ( https://github.com/WASasquatch/comfyui-plugins )
55
58
59
+ [ This blog post if you scroll down a bit] ( https://comfyanonymous.github.io/ComfyUI_Blog/comfyui/update/2023/05/18/ComfyUi-is-4-months-old.html )
Original file line number Diff line number Diff line change @@ -67,10 +67,10 @@ <h3>Drag a .latent file on this page or select it with the input below to previe
67
67
let batch_offset = start_offset + data_size * height * width * 4 * b ;
68
68
69
69
for ( let i = 0 ; i < height * width ; ++ i ) {
70
- let v1 = data_func ( dataView , batch_offset + data_size * i , true ) ;
71
- let v2 = data_func ( dataView , batch_offset + data_size * i + data_size * height * width , true ) ;
72
- let v3 = data_func ( dataView , batch_offset + data_size * i + data_size * height * width * 2 , true ) ;
73
- let v4 = data_func ( dataView , batch_offset + data_size * i + data_size * height * width * 3 , true ) ;
70
+ let v1 = data_func ( dataView , batch_offset + data_size * i ) ;
71
+ let v2 = data_func ( dataView , batch_offset + data_size * i + data_size * height * width ) ;
72
+ let v3 = data_func ( dataView , batch_offset + data_size * i + data_size * height * width * 2 ) ;
73
+ let v4 = data_func ( dataView , batch_offset + data_size * i + data_size * height * width * 3 ) ;
74
74
arr [ i * 4 ] = ( 0.298 * v1 + 0.187 * v2 - 0.158 * v3 - 0.184 * v4 + 1.0 ) * 127.5 ;
75
75
arr [ i * 4 + 1 ] = ( 0.207 * v1 + 0.286 * v2 + 0.189 * v3 - 0.271 * v4 + 1.0 ) * 127.5 ;
76
76
arr [ i * 4 + 2 ] = ( 0.208 * v1 + 0.173 * v2 + 0.264 * v3 - 0.473 * v4 + 1.0 ) * 127.5 ;
You can’t perform that action at this time.
0 commit comments