Skip to content

Commit

Permalink
Initial modules filling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nourepide committed Nov 26, 2023
1 parent e959130 commit e3183e9
Show file tree
Hide file tree
Showing 19 changed files with 707 additions and 5 deletions.
35 changes: 35 additions & 0 deletions Writerside/topics/Alpha-Chanel-Add-By-Mask.md
Original file line number Diff line number Diff line change
@@ -1 +1,36 @@
# Add By Mask

<deflist type="narrow">
<def title="Full Name">
AlphaChannelAddByMask
</def>
<def title="Description">
Getting alpha channels as mask and adding it to images.
</def>
<def title="Backend">
<a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>
</def>
<def title="Input Parameters">
<deflist type="full">
<def title="Images (Type: Image)">
RGB images
</def>
<def title="Mask (Type: Mask)">
Alpha Channel
</def>
<def title="Method (Type: Enum)">
<list>
<li><control>Default</control> — Standard channel addition.</li>
<li><control>Invert</control> — The channel is changed to opposite values before being added.</li>
</list>
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="full">
<def title="Images (Type: Image)">
RGBA images
</def>
</deflist>
</def>
</deflist>
27 changes: 27 additions & 0 deletions Writerside/topics/Alpha-Chanel-Add.md
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
# Add

<deflist type="narrow">
<def title="Full Name">
AlphaChannelAdd
</def>
<def title="Description">
Creates an empty alpha channels and adding it to images.
Some nodes work better if the image is initially RGBA, for example <a href="Image-Transform-Rotate.md"/>.
</def>
<def title="Backend">
<a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>
</def>
<def title="Input Parameters">
<deflist type="full">
<def title="Images (Type: Image)">
RGB images
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="full">
<def title="Images (Type: Image)">
RGBA images
</def>
</deflist>
</def>
</deflist>
32 changes: 32 additions & 0 deletions Writerside/topics/Alpha-Chanel-As-Mask.md
Original file line number Diff line number Diff line change
@@ -1 +1,33 @@
# As Mask

<deflist type="narrow">
<def title="Full Name">
AlphaChannelAsMask
</def>
<def title="Description">
Copying alpha channels from images and return it.
</def>
<def title="Backend">
<a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>
</def>
<def title="Input Parameters">
<deflist type="full">
<def title="Images (Type: Image)">
RGBA images
</def>
<def title="Method (Type: Enum)">
<list>
<li><control>Default</control> — Standard channel addition.</li>
<li><control>Invert</control> — The channel is changed to opposite values before being returned.</li>
</list>
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="full">
<def title="Mask (Type: Mask)">
Alpha Channel
</def>
</deflist>
</def>
</deflist>
26 changes: 26 additions & 0 deletions Writerside/topics/Alpha-Chanel-Remove.md
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
# Remove

<deflist type="narrow">
<def title="Full Name">
AlphaChannelRestore
</def>
<def title="Description">
Removing the alpha channel from images.
</def>
<def title="Backend">
<a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>
</def>
<def title="Input Parameters">
<deflist type="full">
<def title="Images (Type: Image)">
RGBA images
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="full">
<def title="Images (Type: Mask)">
RGB images
</def>
</deflist>
</def>
</deflist>
26 changes: 26 additions & 0 deletions Writerside/topics/Alpha-Chanel-Restore.md
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
# Restore

<deflist type="narrow">
<def title="Full Name">
AlphaChannelRestore
</def>
<def title="Description">
Returns the alpha channel to the standard maximum values.
</def>
<def title="Backend">
<a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>
</def>
<def title="Input Parameters">
<deflist type="full">
<def title="Images (Type: Image)">
RGBA images
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="full">
<def title="Images (Type: Mask)">
RGBA images
</def>
</deflist>
</def>
</deflist>
30 changes: 30 additions & 0 deletions Writerside/topics/Alpha-Chanel.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
# Alpha Chanel

![alpha_chanel](alpha_chanel.png){ border-effect="rounded" width="706" }

### Add

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>

### Add By Mask

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>

### As Mask

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>

### Restore

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>

### Remove

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>
79 changes: 79 additions & 0 deletions Writerside/topics/Clamp.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,82 @@
# Clamp

![clamp](clamp.png){ border-effect="rounded" width="706" }

### Clip

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Clip Vision

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Clip Vision Output

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Conditioning

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### ControlNet

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Gligen

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Image

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Latent

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Mask

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Model

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Style Model

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Upscale Model

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Vae

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

23 changes: 23 additions & 0 deletions Writerside/topics/Image-Batch.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,26 @@

![image_batch](image_batch.png){ border-effect="rounded" width="706" }

### Get

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Remove

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Fork

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Join

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.
42 changes: 42 additions & 0 deletions Writerside/topics/Image-Composite-Absolute.md
Original file line number Diff line number Diff line change
@@ -1 +1,43 @@
# Absolute

<deflist type="narrow">
<def title="Full Name">
Full name of the node
</def>
<def title="Description">
Description of the node
</def>
<def title="Backend">
Description of the node backend
</def>
<def title="Input Parameters">
Description of the node backend
<deflist type="narrow">
<def title="Parameter Name 1 (Type: Image)">
Description of parameter 1
</def>
<def title="Parameter Name 2 (Type: String)">
Description of parameter 2
</def>
<def title="Parameter Name 3 (Type: Enum)">
Description of parameter 3
<list>
<li>Value 1 - Description of value 1</li>
<li>Value 2 - Description of value 2</li>
<li>Value 3 - Description of value 3</li>
</list>
</def>
</deflist>
</def>
<def title="Output Parameters">
Description of the node backend
<deflist type="narrow">
<def title="Parameter Name 1 (Type: Image)">
Description of parameter 1
</def>
<def title="Parameter Name 2 (Type: Mask)">
Description of parameter 2
</def>
</deflist>
</def>
</deflist>
24 changes: 24 additions & 0 deletions Writerside/topics/Image-Composite.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# Image Composite

![image_composite](image_composite.png) { border-effect="rounded" width="706" }

### Absolute

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Absolute By Container

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Relative

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.

### Relative By Container

Text

**Backend**: <a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a>.
Loading

0 comments on commit e3183e9

Please sign in to comment.