Gets the specified graph sub-object.
public virtual object GetSubObject(Leadtools.Multimedia.CaptureObject objType)
Public Overridable Function GetSubObject( _ByVal objType As Leadtools.Multimedia.CaptureObject _) As Object
public:virtual Object^ GetSubObject(Leadtools.Multimedia.CaptureObject objType)
objType
Value that specifies which graph sub-object to get. Must be one of the CaptureObject enumeration values.
System.Object
The specified graph sub-object includes a filter being cached from the capture graph. If the method fails, an error is raised. For more information, refer to the Error Codes.
Note:This method should not be used to change properties when the TargetFilter object is a multiplexer or sink. Target filters are not added to the capture graph until the capture graph is built using ReadyCapture or StartCapture. At this point, the graph is in the running state. Some multiplexers or sinks may not be able to change some settings in running mode. By default, when you stop the capture, the multiplexer and sink are destroyed. As a result, the only way to change their settings in stopped mode is to create them before the capture starts. This is accomplished by first setting the TargetFormat.UseFilterCache property to true and then retrieving the objects using TargetFormat.GetCacheObject. For an example, refer to TargetFormat.UseFilterCache property or TargetFormat.UseFilterCache method.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm();public void GetSubObjectExample(){// reference the capture controlCaptureCtrl capturectrl = _form.CaptureCtrl;// input and output filesstring inFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_Source.avi");string outFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_GetSubObjectExample.avi");try{// set the source video deviceif (capturectrl.VideoDevices["USB"] == null)throw new Exception("No USB video device available");capturectrl.VideoDevices["USB"].Selected = true;// set the source audio deviceif (capturectrl.AudioDevices["USB"] == null)throw new Exception("No USB audio device available");capturectrl.AudioDevices["USB"].Selected = true;// set the output filescapturectrl.TargetFile = outFile;// set the audio and video compressioncapturectrl.VideoCompressors.Mpeg2.Selected = true;capturectrl.AudioCompressors.AC3.Selected = true;// add the color adjustment processorcapturectrl.SelectedVideoProcessors.Add(capturectrl.VideoProcessors.Color);// access the Color filter directly via the GetSubObject methodLMVColor lmvc = capturectrl.GetSubObject(CaptureObject.SelVideoProcessor) as LMVColor;if (lmvc != null){// change some settingslmvc.Brightness = 85;lmvc.Contrast = 85;lmvc.Enabled = true;lmvc.EffectAreaEnabled = false;Marshal.ReleaseComObject(lmvc);}// check whether we can capture videoif (capturectrl.IsModeAvailable(CaptureMode.VideoAndAudio)){capturectrl.FrameRate = 5; // 5 frames per secondcapturectrl.UseFrameRate = true;capturectrl.TimeLimit = 10; // just 10 seconds of capture timecapturectrl.UseTimeLimit = true;// start the capture processcapturectrl.StartCapture(CaptureMode.VideoAndAudio);// 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();}}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();}static class LEAD_VARS{public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media";}
Imports LeadtoolsImports Leadtools.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _result As Boolean = FalsePublic _form As CaptureCtrlForm = New CaptureCtrlForm()Public Sub GetSubObjectExample()' reference the capture controlDim capturectrl As CaptureCtrl = _form.CaptureCtrl' input and output filesDim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_Source.avi")Dim outFile As String = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_GetSubObjectExample.avi")Try' set the source video deviceIf capturectrl.VideoDevices("USB") Is Nothing ThenThrow New Exception("No USB video device available")End Ifcapturectrl.VideoDevices("USB").Selected = True' set the source audio deviceIf capturectrl.AudioDevices("USB") Is Nothing ThenThrow New Exception("No USB audio device available")End Ifcapturectrl.AudioDevices("USB").Selected = True' set the output filescapturectrl.TargetFile = outFile' set the audio and video compressioncapturectrl.VideoCompressors.Mpeg2.Selected = Truecapturectrl.AudioCompressors.AC3.Selected = True' add the color adjustment processorcapturectrl.SelectedVideoProcessors.Add(capturectrl.VideoProcessors.Color)' access the Color filter directly via the GetSubObject methodDim lmvc As LMVColor = TryCast(capturectrl.GetSubObject(CaptureObject.SelVideoProcessor), LMVColor)If Not lmvc Is Nothing Then' change some settingslmvc.Brightness = 85lmvc.Contrast = 85lmvc.Enabled = Truelmvc.EffectAreaEnabled = FalseMarshal.ReleaseComObject(lmvc)End If' check if we have can capture videoIf capturectrl.IsModeAvailable(CaptureMode.VideoAndAudio) Thencapturectrl.FrameRate = 5 ' 5 frames per secondcapturectrl.UseFrameRate = Truecapturectrl.TimeLimit = 10 ' just 10 seconds of capture timecapturectrl.UseTimeLimit = True' start the capture processcapturectrl.StartCapture(CaptureMode.VideoAndAudio)' 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.Do While capturectrl.State = CaptureState.RunningApplication.DoEvents()LoopEnd IfCatch e1 As Exception_result = FalseEnd Try' 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.Do While capturectrl.State = CaptureState.RunningApplication.DoEvents()LoopEnd SubPublic NotInheritable Class LEAD_VARSPublic Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media"End Class
|
Products |
Support |
Feedback: GetSubObject Method (CaptureCtrl) - Leadtools.Multimedia |
Introduction |
Help Version 19.0.2017.6.16
|

Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.