========================= CenterCrop =========================
| 51 | |
| 52 | // ========================= CenterCrop ========================= |
| 53 | CenterCrop::CenterCrop(int crop_size) : crop_h_(crop_size), crop_w_(crop_size) {} |
| 54 | CenterCrop::CenterCrop(int crop_h, int crop_w) : crop_h_(crop_h), crop_w_(crop_w) {} |
| 55 | |
| 56 | Image CenterCrop::apply(const Image& input) const { |
nothing calls this directly
no outgoing calls
no test coverage detected