用法:
mxnet.image.scale_down(src_size, size)
- src_size:(
tuple of int
) - (宽度,高度)格式的图像大小。 - size:(
tuple of int
) - (宽度,高度)格式的裁剪尺寸。
- src_size:(
包含 (width, height) 格式的缩放裁剪大小的元组。
int 的元组
参数:
返回:
返回类型:
如果裁剪大小大于图像大小,则按比例缩小裁剪大小。
如果裁剪的宽度/高度大于图像的宽度/高度,则将宽度/高度设置为图像的宽度/高度。
示例:
>>> src_size = (640,480) >>> size = (720,120) >>> new_size = mx.img.scale_down(src_size, size) >>> new_size (640,106)
相关用法
- Python mxnet.image.resize_short用法及代码示例
- Python mxnet.image.random_crop用法及代码示例
- Python mxnet.image.imresize用法及代码示例
- Python mxnet.image.center_crop用法及代码示例
- Python mxnet.image.CreateAugmenter用法及代码示例
- Python mxnet.image.ImageIter.read_image用法及代码示例
- Python mxnet.image.CreateMultiRandCropAugmenter用法及代码示例
- Python mxnet.image.imread用法及代码示例
- Python mxnet.image.CreateDetAugmenter用法及代码示例
- Python mxnet.image.ImageDetIter.sync_label_shape用法及代码示例
- Python mxnet.image.ImageDetIter.draw_next用法及代码示例
- Python mxnet.image.imdecode用法及代码示例
- Python mxnet.io.PrefetchingIter用法及代码示例
- Python mxnet.initializer.register用法及代码示例
- Python mxnet.initializer.One用法及代码示例
- Python mxnet.io.NDArrayIter用法及代码示例
- Python mxnet.io.ResizeIter用法及代码示例
- Python mxnet.initializer.Constant.dumps用法及代码示例
- Python mxnet.initializer.Mixed用法及代码示例
- Python mxnet.initializer.Zero用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 mxnet.image.scale_down。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。