(self, img)
| 116 | class RGB2YIQ(object): |
| 117 | """Convert RGB PIL image to ndarray YIQ.""" |
| 118 | def __call__(self, img): |
| 119 | img = np.asarray(img, np.uint8) |
| 120 | img = color.rgb2yiq(img) |
| 121 | return img |
| 122 | |
| 123 | |
| 124 | class GaussianBlur(object): |
nothing calls this directly
no outgoing calls
no test coverage detected