Skip to content

Commit

Permalink
Write ImageTransformResizeClip node page.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nourepide committed Nov 28, 2023
1 parent 8aac2e4 commit 8aae06c
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
1 change: 1 addition & 0 deletions Writerside/allor-doc.tree
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
<toc-element topic="Image-Batch-Remove.md"/>
<toc-element topic="Image-Batch-Fork.md"/>
<toc-element topic="Image-Batch-Join.md"/>
<toc-element topic="Image-Batch-Permute.md"/>
</toc-element>
<toc-element topic="Clamp.md">
<toc-element topic="Clamp-Clip.md"/>
Expand Down
37 changes: 37 additions & 0 deletions Writerside/topics/Image-Batch-Permute.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Permute

<deflist type="narrow">
<def title="Full Name">
ImageBatchPermute
</def>
<def title="Description">
The ultimate way to work with batch of images. Allows you to rearrange, copy and remove 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="narrow">
<def title="Images">
RGB/A images
</def>
<def title="Permute">
<p>New order of images</p>
<p>Wait for string input of <control>numbers</control> like &quot;1 3 2 4&quot;</p>
<p><control>Numbers</control> can have any characters between them. &quot;1er!3,0002.4&quot; will be processed as [1, 3, 2, 4]</p>
<p>Images can be <control>copied</control>. &quot;1 1 1 1&quot; return you 4 images with index 1</p>
<p>And finally, the images can be <control>removed</control>. &quot;1 4&quot; will skip the image with index 2 and 3</p>
</def>
<def title="Start with zero">
Order start with zero if true and with one if false
</def>
</deflist>
</def>
<def title="Output Parameters">
<deflist type="narrow">
<def title="Images">
RGB/A images
</def>
</deflist>
</def>
</deflist>
6 changes: 6 additions & 0 deletions Writerside/topics/Image-Batch.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,9 @@ Text
Text

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

### Permute

Text

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

0 comments on commit 8aae06c

Please sign in to comment.