备注
您正在阅读 MMClassification 0.x 版本的文档。MMClassification 0.x 会在 2022 年末被切换为次要分支。建议您升级到 MMClassification 1.0 版本,体验更多新特性和新功能。请查阅 MMClassification 1.0 的安装教程、迁移教程以及更新日志。
mmcls.datasets.pipelines.Cutout¶
- class mmcls.datasets.pipelines.Cutout(shape, pad_val=128, prob=0.5)[源代码]¶
Cutout images.
- 参数
shape (int | float | tuple(int | float)) – Expected cutout shape (h, w). If given as a single value, the value will be used for both h and w.
pad_val (int, Sequence[int]) – Pixel pad_val value for constant fill. If it is a sequence, it must have the same length with the image channels. Defaults to 128.
prob (float) – The probability for performing cutout therefore should be in range [0, 1]. Defaults to 0.5.