Opening a camera with raw data

Hi, I’m trying to use VisualStudio forms with C# to open a camera, stream it etc. However I cant find a way to program it to stream raw data. Does anyone know how to do this with code, not just in CVB management console?

Hi,

there are two ways to handle that. See the following post:

https://forum.commonvisionblox.com/t/getlinearaccess-returns-incorrect-values-for-the-xinc-for-16bit-camera-images/68/6?u=parsd

Hi, do you know the equivalent command for DOSetParameter for the CVB.Net?

.SetParameter on the DiscoveryInformation object.

var anEntry = DeviceFactory.Discover().First();
anEntry.SetParameter("PixelFormat", "0");

var device = DeviceFactory.Open(anEntry);

That worked! thank you :grinning: