Is opencv 3.4 compatible with 2.4.3
Our computers are by design offline and our ability to upgrade given our workload is limited, hence we are way behind. I need to do video capturing using H.264 RTSP stream over UDP sockets and it appears 3.4 or above is the version to use for that. The problem is we have a large C++ system (Windows .NET) with 2.4.3 intertwined throughout a quarter of a million lines of code. If I change our build to point to an installation of 3.4 will it break? Lots of IplImage references...:-(
The answer is NO! It is not compatible.
yea, that's "technical debt". IplImages were already deprecated in opencv2.0. you're stuck with outdated opencv versions forever.
Thanks!
I figured as much. And just as well. I may have to go the Emgu route and write what I need in C#. I find I don't have to build Emgu like it seems I have to with the C++ version. I find CMake pernitious so I won't be going down that rabbit hole on an offline machine (it gripes about not being able to download things).
I downloaded the binaries version with has 10 dlls and 4 libs (opencv_world...) but the build looks like it's for VS14 and VS15 - we're stuck with VS10 (don't ask - it's a mess).
So...we'll see.
Thanks again! Cheers