microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
operators/cv2/opencv.cc
16lines · modecode
| 1 | #include "ocos.h" |
| 2 | #include "imgproc/gaussian_blur.hpp" |
| 3 | #ifdef ENABLE_OPENCV_CODECS |
| 4 | #include "imgcodecs/imread.hpp" |
| 5 | #include "imgcodecs/imdecode.hpp" |
| 6 | #endif // ENABLE_OPENCV_CODECS |
| 7 | |
| 8 | |
| 9 | FxLoadCustomOpFactory LoadCustomOpClasses_CV2 = |
| 10 | LoadCustomOpClasses<CustomOpClassBegin |
| 11 | , CustomOpGaussianBlur |
| 12 | #ifdef ENABLE_OPENCV_CODECS |
| 13 | , CustomOpImageReader |
| 14 | , CustomOpImageDecoder |
| 15 | #endif // ENABLE_OPENCV_CODECS |
| 16 | >; |