icevision_Cutout {fastai} | R Documentation |
Cutout
Description
CoarseDropout of the square regions in the image.
Usage
icevision_Cutout(
num_holes = 8,
max_h_size = 8,
max_w_size = 8,
fill_value = 0,
always_apply = FALSE,
p = 0.5
)
Arguments
num_holes |
num_holes |
max_h_size |
max_h_size |
max_w_size |
max_w_size |
fill_value |
fill_value |
always_apply |
always_apply |
p |
p |
Value
None
Targets
image
Image types
uint8, float32
Reference
| https://arxiv.org/abs/1708.04552 | https://github.com/uoguelph-mlrg/Cutout/blob/master/util/cutout.py | https://github.com/aleju/imgaug/blob/master/imgaug/augmenters/arithmetic.py
[Package fastai version 2.2.2 Index]