Search found 4 matches

by Pjotr
Tue Nov 16, 2010 3:32 am
Forum: Camera SDK
Topic: New Camera SDK 1.0 Final now available
Replies: 33
Views: 26691

Re: New Camera SDK 1.0 beta 2 now available

<t>I have another question. It is something I can't test myself yet as we are waiting for new cameras and our old cameras are set up and removing them to test would mean we need to recalibrate everything. Is it possible to have two programs running that are using the SDK but access different cameras...
by Pjotr
Mon Nov 15, 2010 2:46 am
Forum: Camera SDK
Topic: New Camera SDK 1.0 Final now available
Replies: 33
Views: 26691

Re: New Camera SDK 1.0 beta 2 now available

<t>Just some nitpicking: In cameralibraryglobals.h there is a define for PI. I already had this defined in anther library I use so I had an error while compiling. I changed the line to<br/> <br/> #ifndef PI<br/> #define PI 3.141592654f<br/> #endif<br/> <br/> So it compiles fine now but I wonder if t...
by Pjotr
Thu Nov 04, 2010 3:04 am
Forum: Camera SDK
Topic: New Camera SDK 1.0 Final now available
Replies: 33
Views: 26691

Re: New Camera SDK 1.0 beta 1 now available

Another question. In the docs I read this: Here we'll assume the image is 640x480, but a better approach would be to check the pixel Width() and Height() of the camera. char imageBuffer[640*480]; Now, tell the frame to raster the image into the buffer. frame->Rasterize(640,480,640,8,imageBuffer); Wh...
by Pjotr
Thu Nov 04, 2010 2:22 am
Forum: Camera SDK
Topic: New Camera SDK 1.0 Final now available
Replies: 33
Views: 26691

Re: New Camera SDK 1.0 beta 1 now available

<t>I saw that in this SDK there are methods to setting the blocking mask. But there is no documentation on how to use them.<br/> <br/> My assumption is that the blocking mask is just a boolean grid and that the height and width of BlockingMaskHeight() and BlockingMaskWidth(). Then most methods speak...