-
-
Notifications
You must be signed in to change notification settings - Fork 56.2k
(4.x) Merge 3.4 #21340
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
(4.x) Merge 3.4 #21340
Conversation
- this doesn't make sense in case of multiple inputs
- builtin OpenEXR source code is outdated - external OpenEXR distributions are allowed
- to avoid out of buffer access
// FIXIT disabled due to non-standard ONNX model domains, need to add ONNX domains support | ||
// Example: | ||
// DNN/ONNX: unsupported opset[1]: domain='com.microsoft.experimental' version=1 | ||
// DNN/ONNX: unsupported opset[2]: domain='ai.onnx.preview.training' version=1 | ||
// DNN/ONNX: unsupported opset[3]: domain='com.microsoft.nchwc' version=1 | ||
// DNN/ONNX: unsupported opset[4]: domain='com.microsoft.mlfeaturizers' version=1 | ||
// DNN/ONNX: unsupported opset[5]: domain='ai.onnx.ml' version=2 | ||
// DNN/ONNX: unsupported opset[6]: domain='com.microsoft' version=1 | ||
// DNN/ONNX: unsupported opset[7]: domain='ai.onnx.training' version=1 | ||
#if 0 |
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.
Face detector (from #20422) was imported through bugs. New checks for unsupported cases emits these errors:
Workaround with disabling this check is ugly as it passes incorrect importing problems to the next layers:
Is it OK? |
if (isDynamicShape) | ||
{ | ||
CV_LOG_ERROR(NULL, "DNN/ONNX(Shape): dynamic 'zero' shapes are not supported, input " << toString(inpShape, node_proto.input(0))); | ||
// FIXIT repair assertion | ||
// Disabled to pass face detector tests from #20422 | ||
// CV_Assert(!isDynamicShape); // not supported | ||
} |
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.
Error trigger is disabled.
👍 |
Problem is confirmed. Working on it. |
#21306 from aBITnav:patch-1
#21320 from catree:solvePnP_doc_page
#21321 from alalek:dnn_test_decompose_dynamic_axes
#21322 from alalek:dnn_catch_errors
#21323 from alalek:dnn_do_not_rebuilt_network_in_setInput
#21325 from APrigarina:fix_asift_sample
#21327 from alalek:imgcodecs_openexr_runtime_disabled
#21329 from alalek:cmake_openexr_find_package
#21330 from alalek:fix_highgui_gtk_mouse_callbacks
#21331 from alalek:issue_21289
#21335 from alalek:dnn_onnx_dump_input_output
#21336 from alalek:dnn_pooling_check_array_indexes
#21341 from alalek:issue_20930_3.4
Previous "Merge 3.4": #21317