| 25 | }; |
| 26 | |
| 27 | class ImageResizeSmallestSide : public ImageTransformOp { |
| 28 | public: |
| 29 | ImageResizeSmallestSide( |
| 30 | const std::string& ikey, |
| 31 | int64_t size, |
| 32 | const std::string& okey = ""); |
| 33 | virtual std::shared_ptr<Array> apply_image( |
| 34 | const std::shared_ptr<const Array>& image) const override; |
| 35 | |
| 36 | private: |
| 37 | int64_t size_; |
| 38 | }; |
| 39 | |
| 40 | class ImageResize : public ImageTransformOp { |
| 41 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected