Enum VLFrameChange.TVLFrameChangeOperation
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.
Package: VideoLabPkg
Unit: VLFrameChange
Contents |
Syntax
Delphi:
type TVLFrameChangeOperation = (fcoAdd, fcoSubtractOld, fcoSubtractNew, fcoMultiply, fcoDivideOld, fcoDivideNew, fcoOr, fcoAnd, fcoXor, fcoAbsDiff);
C++ Builder:
enum TVLFrameChangeOperation {fcoAdd, fcoSubtractOld, fcoSubtractNew, fcoMultiply, fcoDivideOld, fcoDivideNew, fcoOr, fcoAnd, fcoXor, fcoAbsDiff};
Visual C++ (MFC):
enum CTVLFrameChangeOperation {fcoAdd, fcoSubtractOld, fcoSubtractNew, fcoMultiply, fcoDivideOld, fcoDivideNew, fcoOr, fcoAnd, fcoXor, fcoAbsDiff};
Summary
Frame Change Operation type enumeration.
Description
Defines the Frame Change Operation type enumeration 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
Values
fcoAdd | Add frame change operation. |
fcoSubtractOld | Subtract Old frame change operation |
fcoSubtractNew | Subtract New frame change operation |
fcoMultiply | Multiply frame change operation. |
fcoDivideOld | Divide Old frame change operation |
fcoDivideNew | Divide New frame change operation |
fcoOr | Or frame change operation. |
fcoAnd | And frame change operation. |
fcoXor | Xor frame change operation. |
fcoAbsDiff | Absolute Diff frame change operation. |