You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
support means of image preprocessing through a resize_method option. It can take one of the following values:
"outerCrop": Resizes the image to fit within the target dimensions while preserving its original aspect ratio. Any space left over is filled with black bars (letterboxing), if applicable.
"innerCrop": Resizes the image by cropping parts of it to fit the target dimensions
"stretch": Stretches the image to fit the target dimensions exactly, ignoring the original aspect ratio, which can lead to distortion.