microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
operators/vision/vision.cc
11lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | #include "ocos.h" |
| 5 | #include "decode_image.hpp" |
| 6 | #include "encode_image.hpp" |
| 7 | |
| 8 | FxLoadCustomOpFactory LoadCustomOpClasses_Vision = |
| 9 | LoadCustomOpClasses<CustomOpClassBegin, |
| 10 | ort_extensions::CustomOpDecodeImage, |
| 11 | ort_extensions::CustomOpEncodeImage>; |
| 12 | |