public bool BacklightCompensation { get; set; }
true if the back light compensation setting is enabled; false otherwise.
Gets or sets the setting for the BacklightCompensation property.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm();public string _outFile = Path.Combine(LEAD_VARS.MediaDir, "VideoProcAmp_GetExample.avi");public void GetExample(){// reference the capture controlCaptureCtrl capturectrl = _form.CaptureCtrl;try{// select the first device with analog in it's name// Replace "Analog" with your video capture device nameif (capturectrl.VideoDevices["Analog"] == null)throw new Exception("No Analog video devices available!");capturectrl.VideoDevices["Analog"].Selected = true;// set a video compressorcapturectrl.VideoCompressors.Mpeg2.Selected = true;// set the target filecapturectrl.TargetFile = _outFile;// reference the video proc ampVideoProcAmp videoprocamp = capturectrl.VideoProcAmp;if (videoprocamp != null){// set the auto brightness propertyvideoprocamp.AutoBrightness = true;// set to black and whitevideoprocamp.ColorEnable = false;// enable backlight compensation, if availablevideoprocamp.BacklightCompensation = true;}// check for video capture availableif (capturectrl.IsModeAvailable(CaptureMode.Video)){// capture 15 seconds of videocapturectrl.UseTimeLimit = true;capturectrl.TimeLimit = 15;// subscribe to the compete eventcapturectrl.Complete += new EventHandler(CaptureCtrl_Complete);// start the capturecapturectrl.StartCapture(CaptureMode.Video);}}catch (Exception){_result = false;}// we'll loop on the state and pump messages for this example.// but you should not need to if running from a Windows Forms application.while (capturectrl.State == CaptureState.Running)Application.DoEvents();}void CaptureCtrl_Complete(object sender, EventArgs e){// set the result to what we expect_result = File.Exists(_outFile);}static class LEAD_VARS{public const string MediaDir = @"C:\LEADTOOLS23\Media";}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
