-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
245 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |