(self, img)
| 108 | class RGB2YPbPr(object): |
| 109 | """Convert RGB PIL image to ndarray YPbPr.""" |
| 110 | def __call__(self, img): |
| 111 | img = np.asarray(img, np.uint8) |
| 112 | img = color.rgb2ypbpr(img) |
| 113 | return img |
| 114 | |
| 115 | |
| 116 | class RGB2YIQ(object): |
nothing calls this directly
no outgoing calls
no test coverage detected