Property ILBasicClassifier.TILSimpleBasicClassifierTemplate.SynchronizeType
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: TILSimpleBasicClassifierTemplate
Contents |
Syntax
Delphi:
property SynchronizeType : TSLSynchronizeType read GetSynchronizeType write SetSynchronizeType default stNone;
C++ Builder:
__property TSLSynchronizeType SynchronizeType = { read=GetSynchronizeType, write=SetSynchronizeType, default=stNone };
Summary
Specifies the type of thread buffer synchronization.
Description
VisionLab is fully multi threaded, however for the motion
detector to be able to interact with user interface VCL
components, the processed image will have to be synchronized
with the User Interface thread. The synchronization can be
done by the developer or the component can do the
synchronization by setting this property to stQueue or
stSingleBuffer.
Delphi example:
<c>ILNeuralNetwork1.SynchronizeType := [[Enum item SLTypes.TSLSynchronizeType.stSingleBuffer|stSingleBuffer]];</c>
C++ Builder example:
<c>ILNeuralNetwork1->SynchronizeType = [[Enum item SLTypes.TSLSynchronizeType.stSingleBuffer|stSingleBuffer]];</c>
Visual C++(MFC) example:
<c>ILNeuralNetwork1.SynchronizeType = [[Enum item SLTypes.TSLSynchronizeType.stSingleBuffer|stSingleBuffer]];</c>
Visual C++/CLI example:
<c>neuralNetwork1->SynchronizeType = Mitov::SignalLab::SynchronizeType::SingleBuffer;</c>
C# example:
<c>neuralNetwork1.SynchronizeType = Mitov.SignalLab.SynchronizeType.SingleBuffer;</c>
VB example:
<c>NeuralNetwork1.SynchronizeType = Mitov.SignalLab.SynchronizeType.SingleBuffer</c>