-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Add ImageDecoder operator #5294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
9d4181b
to
bc35a8c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CodeQL found more than 10 potential problems in the proposed changes. Check the Files changed tab for more details.
a5b6aeb
to
a17f761
Compare
d0d618a
to
9cb3740
Compare
Signed-off-by: Joaquin Anton <janton@nvidia.com>
Signed-off-by: Joaquin Anton <janton@nvidia.com>
Signed-off-by: Joaquin Anton <janton@nvidia.com>
3ce0ed0
to
f78c40f
Compare
106abca
to
af982b2
Compare
ef38f9d
to
f4f4b37
Compare
As agreed during the Operators SIG meeting, we will not use a separate domain for this operator, at least for the time being. |
f4f4b37
to
c207d3b
Compare
Signed-off-by: Joaquin Anton <janton@nvidia.com>
@@ -113,6 +113,7 @@ | |||
from onnx.reference.ops.op_hardmax import Hardmax | |||
from onnx.reference.ops.op_identity import Identity | |||
from onnx.reference.ops.op_if import If | |||
from onnx.reference.ops.op_image_decoder import ImageDecoder |
Check notice
Code scanning / CodeQL
Unused import
Signed-off-by: Joaquin Anton <janton@nvidia.com>
Signed-off-by: Joaquin Anton <janton@nvidia.com>
Signed-off-by: Joaquin Anton <janton@nvidia.com>
Signed-off-by: Joaquin Anton <janton@nvidia.com>
Signed-off-by: Joaquin Anton <janton@nvidia.com>
onnx/onnx#5294 introduced a dependency to cv2 in tests, which fails our release pipeline. Instead of requiring cv2 we pin onnx to dev20230807 for now to unblock the release pipeline.
) onnx/onnx#5294 introduced a dependency to cv2 in tests, which fails our release pipeline. Instead of requiring cv2 we pin onnx to dev20230807 for now to unblock the release pipeline. --------- Co-authored-by: Ti-Tai Wang <titaiwang@microsoft.com>
Hi @jantonguirao , thank you for adding this op. Now I am preparing ONNX 1.15.0 release and integrating the release with ORT, I wonder if you have a plan to implement the runtime kernel for this new op in ORT? If so, I will let you know once ORT has ONNX 1.15.0 integrated. Thank you in advance. |
Hi @liqunfu. I was hoping that the ORT team will handle the implementation. It should be simple using a library such as OpenCV. |
Thank you @jantonguirao , I will add this to ORT release work item and have ORT team work on it. |
Description
Motivation and Context
Currently, image decoding happens outside of ONNX, bring problems of portability and deployment.