Hi,
I’m struggling to get the SDK working. Here is my code:
mCam = CLEyeCreateCamera(CLEyeGetCameraUUID(0), CLEYE_MONO_RAW, CLEYE_VGA, 30);
CLEyeSetCameraParameter(mCam, CLEYE_GAIN, 10);
CLEyeSetCameraParameter(mCam, CLEYE_EXPOSURE, 511);
CLEyeCameraStart(mCam);
mBuffer = new unsigned char[CAM_XRES*CAM_YRES];
while(1)
CLEyeCameraGetFrame(mCam, mBuffer);
The red light on the webcam flashes up breifly, before turning off. When run in debug mode, there is an access violation, presumably somewhere in the multicam dll.
Any ideas what I’m doing wrong?