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:
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