Skip to content

Commit

Permalink
Fill Container nodes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nourepide committed Nov 27, 2023
1 parent 990ae4f commit 1a64613
Show file tree
Hide file tree
Showing 5 changed files with 245 additions and 0 deletions.
42 changes: 42 additions & 0 deletions Writerside/topics/Image-Container-Default.md
Original file line number Diff line number Diff line change
@@ -1 +1,43 @@
# Default

<deflist type="narrow">
<def title="Full Name">
ImageContainer
</def>
<def title="Description">
Create empty image.
</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="narrow">
<def title="Width">
Determines the width of container
</def>
<def title="Height">
Determines the height of container
</def>
<def title="Red">
Red channel of container
</def>
<def title="Green">
Green channel of container
</def>
<def title="Blue">
Blue channel of container
</def>
<def title="Alpha">
Alpha channel of container
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="narrow">
<def title="Image">
RGB/A image
</def>
</deflist>
</def>
</deflist>

50 changes: 50 additions & 0 deletions Writerside/topics/Image-Container-Inheritance-Add.md
Original file line number Diff line number Diff line change
@@ -1 +1,51 @@
# Inheritance Add

<deflist type="narrow">
<def title="Full Name">
ImageContainerInheritanceAdd
</def>
<def title="Description">
Takes the image size and creates an empty container based on it, with the option to add the size manually.
</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="narrow">
<def title="Images">
RGB/A images
</def>
<def title="Add Width">
Determines the width of container
</def>
<def title="Add Height">
Determines the height of container
</def>
<def title="Red">
Red channel of container
</def>
<def title="Green">
Green channel of container
</def>
<def title="Blue">
Blue channel of container
</def>
<def title="Alpha">
Alpha channel of container
</def>
<def title="Method">
<list>
<li><control>Single</control> — Create only one container.</li>
<li><control>For Each</control> — Create container for each image in batch.</li>
</list>
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="narrow">
<def title="Image">
RGB/A images
</def>
</deflist>
</def>
</deflist>
48 changes: 48 additions & 0 deletions Writerside/topics/Image-Container-Inheritance-Max.md
Original file line number Diff line number Diff line change
@@ -1 +1,49 @@
# Inheritance Max

<deflist type="narrow">
<def title="Full Name">
ImageContainerInheritanceMax
</def>
<def title="Description">
Takes the image size and creates an empty container based on it max size.
</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="narrow">
<def title="Images A">
RGB/A images
</def>
<def title="Images B">
RGB/A images
</def>
<def title="Red">
Red channel of container
</def>
<def title="Green">
Green channel of container
</def>
<def title="Blue">
Blue channel of container
</def>
<def title="Alpha">
Alpha channel of container
</def>
<def title="Method">
<list>
<li><control>Single</control> — Create only one container.</li>
<li><control>For Each Pair</control> — Create container for each image in batch.</li>
<li><control>For Each Matrix</control> — Create container for each image in batch with each other.</li>
</list>
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="narrow">
<def title="Image">
RGB/A images
</def>
</deflist>
</def>
</deflist>
50 changes: 50 additions & 0 deletions Writerside/topics/Image-Container-Inheritance-Scale.md
Original file line number Diff line number Diff line change
@@ -1 +1,51 @@
# Inheritance Scale

<deflist type="narrow">
<def title="Full Name">
ImageContainerInheritanceScale
</def>
<def title="Description">
Takes the image size and creates an empty container based on it, with the option to scale the size manually.
</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="narrow">
<def title="Images">
RGB/A images
</def>
<def title="Scale Width">
Determines the width of container
</def>
<def title="Scale Height">
Determines the height of container
</def>
<def title="Red">
Red channel of container
</def>
<def title="Green">
Green channel of container
</def>
<def title="Blue">
Blue channel of container
</def>
<def title="Alpha">
Alpha channel of container
</def>
<def title="Method">
<list>
<li><control>Single</control> — Create only one container.</li>
<li><control>For Each</control> — Create container for each image in batch.</li>
</list>
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="narrow">
<def title="Image">
RGB/A images
</def>
</deflist>
</def>
</deflist>
55 changes: 55 additions & 0 deletions Writerside/topics/Image-Container-Inheritance-Sum.md
Original file line number Diff line number Diff line change
@@ -1 +1,56 @@
# Inheritance Sum

<deflist type="narrow">
<def title="Full Name">
ImageContainerInheritanceMax
</def>
<def title="Description">
Takes the size of the image and creates an empty container based on it with the size of their size's sum.
</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="narrow">
<def title="Images A">
RGB/A images
</def>
<def title="Images B">
RGB/A images
</def>
<def title="Red">
Red channel of container
</def>
<def title="Green">
Green channel of container
</def>
<def title="Blue">
Blue channel of container
</def>
<def title="Alpha">
Alpha channel of container
</def>
<def title="Method">
<list>
<li><control>Sum</control> — Sum width and height.</li>
<li><control>Sum Height</control> — Sum only height.</li>
<li><control>Sum Width</control> — Sum only width.</li>
</list>
</def>
<def title="Method">
<list>
<li><control>Single</control> — Create only one container.</li>
<li><control>For Each Pair</control> — Create container for each image in batch.</li>
<li><control>For Each Matrix</control> — Create container for each image in batch with each other.</li>
</list>
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="narrow">
<def title="Image">
RGB/A images
</def>
</deflist>
</def>
</deflist>

0 comments on commit 1a64613

Please sign in to comment.