Page 1 of 1

Capture without multiple histograms

Posted: Thu Dec 13, 2018 1:11 pm
by SteveJP
Hi,
I'm using SharpCap.SelectedCamera.CaptureSingleFrame() to capture a series of frames, but I get an additional ..CameraSettings.txt file and a histogram file each time. I'd like to limit this to one of each of these files per capture session like the standard capture dialog provides for. Is there a way to optionally suppress the generation of the settings and histogram files?
Thanks
Steve

Re: Capture without multiple histograms

Posted: Thu Dec 13, 2018 6:36 pm
by admin
Hi Steve,

you can turn the creation of these files on and off from scripting by assigning the appropriate value to

Code: Select all

SharpCap.Settings.CreateCameraSettingsFile
Cheers, Robin

Re: Capture without multiple histograms

Posted: Thu Dec 13, 2018 11:02 pm
by SteveJP
admin wrote: Thu Dec 13, 2018 6:36 pm Hi Steve,

you can turn the creation of these files on and off from scripting by assigning the appropriate value to

Code: Select all

SharpCap.Settings.CreateCameraSettingsFile
Cheers, Robin
Thanks Robin, that's great.