CSBVision
CSBVision
> Another idea: could delayed loading be the solution? (on Windows) See #5642 Since we worked on delayed loading, we wanted to add here: Delay loading is well suited to...
Might be true, thanks for pointing out, we did not test this at all because to our knowledge VTK is a mandatory dependency. Even though it can be omitted, it...
We ran into the same issue while using OpenEXR as a third-party library for OpenCV. It seems that OpenEXR's dependency to zlib adds a reference to `zlib_static.lib`. Here, not only...
We recently noticed this issue as well. Evaluating OpenCV's alternatives to save/load of floating point images shows that TIFF and HDR formats work, but are not lossless (at least for...
Thanks for fixing 👍
Sorry for reopening this issue, but after updating to the recently available 4.9.0 version of OpenCV and recompiling, this issue still exists. First, not adding OpenVINO to the dependencies of...
Thanks for your comment, we investigated the issue further. Actually, we found no direct documentation on these features in the OpenCV resources, thus our conclusions are based on investigating the...
Yes, correct, we compiled OpenVINO as static libraries for testing purposes, skipping most parts not required for OpenCV: ``` BUILD_SHARED_LIBS=False ENABLE_TBBBIND_2_5=False ENABLE_SYSTEM_TBB=True TBB_DIR=/path/to/TBB ENABLE_INTEL_CPU=True ENABLE_OV_IR_FRONTEND=True BUILD_template_extension=False ENABLE_FASTER_BUILD=True ENABLE_AUTO=False ENABLE_AUTO_BATCH=False ENABLE_HETERO=False...
After your comment, we retested the official OpenVINO build. The following steps reproduce exactly the same issue, too, at least in all our tests: 1. Download [OpenVINO 2024.2.0](https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.2/windows/w_openvino_toolkit_windows_2024.2.0.15519.5c0f38f83f6_x86_64.zip) and unpack...
No, it's not required in any case to change the backend after initializing the model, i.e. after the first inference, it should remain fixed. We only noticed this bug during...