| 9 | namespace data { |
| 10 | namespace op { |
| 11 | LoadImage::LoadImage( |
| 12 | const std::string& ikey, |
| 13 | const std::string& prefix, |
| 14 | bool info, |
| 15 | const std::string& format, |
| 16 | bool from_memory, |
| 17 | const std::string& okey) |
| 18 | : KeyTransformOp(ikey, okey), |
| 19 | prefix_(prefix), |
| 20 | info_(info), |
| 21 | format_(format), |
| 22 | from_memory_(from_memory) {} |
| 23 | std::shared_ptr<Array> LoadImage::apply_key( |
| 24 | const std::shared_ptr<const Array>& src) const { |
| 25 | std::filesystem::path path; |
nothing calls this directly
no outgoing calls
no test coverage detected