zed sdk not detected

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

zed sdk not detected

consoante
Hi,

I have a Zed Camera and using SDK 0.9.4e it is not detected while compiling...there is a new sdk out (v1) which is detected but it requires opencv 3 which is not compatible with other 3rd party tools i need.

This sdk is installed by default onto /usr/local/zed...

Any ideas?

Thanks,

//consoante
Reply | Threaded
Open this post in threaded view
|

Re: zed sdk not detected

matlabbe
Administrator
Hi,

Unfortunately, the ZED sdk doesn't use preprocessor defines for the version number, so it makes it difficult for third party applications to support multiple versions of their SDK (in terms of compilation switches). GlobalDefine.hpp:
const int ZED_SDK_MAJOR_VERSION = 1;
const int ZED_SDK_MINOR_VERSION = 1;
const int ZED_SDK_PATCH_VERSION = 0;

If you want still to use 0.9, see this commit and this commit for the changes made between 0.9 and 1.0.

cheers