| 16 | namespace op { |
| 17 | |
| 18 | ImageTransformOp::ImageTransformOp( |
| 19 | const std::string& ikey, |
| 20 | const std::string& okey) |
| 21 | : KeyTransformOp(ikey, okey) {} |
| 22 | std::shared_ptr<Array> ImageTransformOp::apply_key( |
| 23 | const std::shared_ptr<const Array>& src) const { |
| 24 | if (src->shape().size() == 4) { |
nothing calls this directly
no outgoing calls
no test coverage detected