fixed Resized Fix the inconsistency between Chinese and English documents of Resize
This commit is contained in:
parent
4a81173b1b
commit
d0f0508b31
|
@ -7,7 +7,7 @@ mindspore.dataset.vision.Resize
|
|||
|
||||
**参数:**
|
||||
|
||||
- **size** (Union[int, Sequence[int]]) - 图像的输出尺寸大小。若输入整型,则放缩至(size, size)大小;若输入2元素序列,则以2个元素分别为高和宽放缩至(高度, 宽度)大小。
|
||||
- **size** (Union[int, Sequence[int]]) - 图像的输出尺寸大小。若输入整型,将调整图像的较短边长度为 `size`,且保持图像的宽高比不变;若输入是2元素组成的序列,其输入格式需要是 (高度, 宽度) 。
|
||||
- **interpolation** (Inter, 可选) - 图像插值方式。它可以是 [Inter.LINEAR, Inter.NEAREST, Inter.BICUBIC, Inter.PILCUBIC] 中的任何一个,默认值:Inter.LINEAR。
|
||||
|
||||
- Inter.BILINEAR,双线性插值。
|
||||
|
|
Loading…
Reference in New Issue