Skip to content

Commit

Permalink
Update ImageTransformResizeClip node page.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nourepide committed Nov 28, 2023
1 parent a04b9b4 commit 8aac2e4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Writerside/topics/Image-Transform-Resize-Clip.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@
<def title="Min Height">
Minimum allowable image height in pixels
</def>
<def title="Method">
<list>
<li><control>Lanczos</control> — A high-quality, computationally intensive resampling filter often used in professional-grade image processing software to resize images. It’s known for preserving high-frequency details.</li>
<li><control>Bicubic</control> — A commonly used method in image processing for resampling. It offers a good balance between image quality and computational efficiency. It’s widely adopted in much image processing software.</li>
<li><control>Hamming</control> — While not typically used for image resizing, the Hamming algorithm is ubiquitous in computing, particularly in areas like error detection and correction. Its computation can get expensive when comparing a string against many strings.</li>
<li><control>Bilinear</control> — A fast and efficient algorithm that’s good for changing the size of an image, but it can cause some undesirable softening of details. It’s faster than bicubic and Lanczos, but generally provides lower quality results.</li>
<li><control>Box</control> — This method takes the target pixel of a box on the original image, and samples every pixel within the box, ensuring that all input pixels contribute to the output. While effective, this method can be difficult to optimize.</li>
<li><control>Nearest</control> — Also known as nearest-neighbor, this is the fastest and simplest interpolation method, often used when speed is more important than quality. It can result in a blocky image when upscaling.</li>
</list>
</def>
</deflist>
</def>
<def title="Output Parameters">
Expand Down
6 changes: 6 additions & 0 deletions Writerside/topics/Image-Transform.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ Text

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

### Resize Clip

Text

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

### Crop Absolute

Text
Expand Down

0 comments on commit 8aac2e4

Please sign in to comment.