Property VLFrameChange.TVLFrameChange.FrameChangeOperation
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLFrameChange
Contents |
Syntax
Delphi:
property FrameChangeOperation : TVLFrameChangeOperation read FFrameChangeOperation write SetFrameChangeOperation default fcoAbsDiff;
C++ Builder:
__property TVLFrameChangeOperation FrameChangeOperation = { read=FFrameChangeOperation, write=SetFrameChangeOperation, default=fcoAbsDiff };
Summary
The operation to be performed between the new and the old video frame.
Description
Use this property to specify the operation to be performed
between the new and the old video frame for the
TVLFrameChange component.
Delphi example:
VLFrameChange1.FrameChangeOperation := fcoAbsDiff;
C++ Builder example:
VLFrameChange1->FrameChangeOperation = fcoAbsDiff;
Visual C++(MFC) example:
VLFrameChange1.FrameChangeOperation = fcoAbsDiff;
Visual C++/CLI example:
colorSplit1->FrameChangeOperation = Mitov::VideoLab::FrameChangeOperation::AbsDiff;
C# example:
colorSplit1.FrameChangeOperation = Mitov.VideoLab.FrameChangeOperation.AbsDiff;
VB example:
ColorSplit1.FrameChangeOperation = Mitov.VideoLab.FrameChangeOperation.AbsDiff