Allor Documentation v.2 Help

Crop Corners

Full Name

ImageTransformCropCorners

Description

Rounds the corners of an images.

Backend

Pillow

Input Parameters
Images

RGB/A images

Radius

The degree of rounding for the corners of the images

Top Left Corner

Rounds the top left corner

Top Right Corner

Rounds the top right corner

Bottom Left Corner

Rounds the bottom left corner

Bottom Right Corner

Rounds the bottom right corner

SSAA

Super-Sampling Anti-Aliasing — is a technique where the image is temporarily upscale and modified at this higher resolution.

Method
  • Lanczos — 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.

  • Bicubic — 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.

  • Hamming — Predominantly used in computing, particularly in areas like error detection and correction. Its computation can get expensive when comparing a string against many strings.

  • Bilinear — 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.

  • Box — 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.

  • Nearest — 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.

Output Parameters
Images

RGB/A images

Last modified: 04 December 2023