microsoft/onnxruntime-extensions

Public

mirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
skottmckay/BuildInfra_AndTestImageLibs

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
8FxLoadCustomOpFactory LoadCustomOpClasses_Vision =
9 LoadCustomOpClasses<CustomOpClassBegin,
10 ort_extensions::CustomOpDecodeImage,
11 ort_extensions::CustomOpEncodeImage>;
12