用法:
mxnet.image.random_crop(src, size, interp=2)
- src:(源图像
NDArray
) - - size:(裁剪的大小,格式为(宽度,高度)。如果
size
大于) - 比图像,然后源图像被上采样到size
并返回。 - interp:(
int
,
optional
,
default=2
) - 插值方法。有关详细信息,请参阅resize_short。
- src:(源图像
NDArray
- 包含裁剪图像的NDArray
。Tuple
- 一个元组 (x, y, width, height),其中 (x, y) 是原始图像中裁剪的左上角位置,(width, height) 是裁剪图像的尺寸。
参数:
返回:
用
size
(宽度,高度)随机裁剪src
。如果src
小于size
,则上采样结果。示例:
>>> im = mx.nd.array(cv2.imread("flower.jpg")) >>> cropped_im, rect = mx.image.random_crop(im, (100, 100)) >>> print cropped_im <NDArray 100x100x1 @cpu(0)> >>> print rect (20, 21, 100, 100)
相关用法
- Python mxnet.image.resize_short用法及代码示例
- 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.image.scale_down用法及代码示例
- 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.random_crop。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。