(img, v)
| 107 | |
| 108 | |
| 109 | def Solarize(img, v): # [0, 256] |
| 110 | assert 0 <= v <= 256 |
| 111 | return PIL.ImageOps.solarize(img, v) |
| 112 | |
| 113 | |
| 114 | def Cutout(img, v): #[0, 60] => percentage: [0, 0.2] => change to [0, 0.5] |
nothing calls this directly
no outgoing calls
no test coverage detected