Hi everybody,
I’m pretty new to c++ and have been trying to get my head around the SDK (slowly but surely ill understand what im doing).
so far I’ve managed to get the camera count to cout to the console, however I’m having difficulty with printing the guid to screen. I think its something to do with the variable type. Can anyone help me with this. I’m trying to get to grips with C++ so excuse my newbie understanding, gotta start somewhere.
Any help is appreciated!!
#include "stdafx.h"
#include "CLEyeMulticam.h"
#include "highgui.h"
#include "cv.h"
#include <iostream>
int main()
{
cout <<"There are "<< CLEyeGetCameraCount()<<" cameras connected."<<endl;
cout << CLEyeGetCameraUUID(1)<<;
cin.get();
return 0;
}