I’m new to using Zed cameras (using ZED SDK 3.4.0), and I have a pretty elementary question;
I have created an object for the sl::Camera
class called xm_zed
; I’m trying to extract the size of the image as follows:
int xi_Width = (int)xm_Zed.getResolution().width;
int xi_Height = (int)xm_Zed.getResolution().height;
When I execute my code, I get an error that class sl::Camera
has no member named getResolution
; did you mean getPosition
?
I might be missing something obvious, but I’d appreciate any help to resolve this issue; thanks!