Property VLBackgroundSubtractor.TVLBackgroundSubtractor.ThresholdClose
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' ThresholdClose : Single '''read''' FThresholdClose '''write''' SetThresholdClose; | + | '''property''' ThresholdClose : Single '''read''' FThresholdClose '''write''' SetThresholdClose '''default''' 9; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' float ThresholdClose = { '''read'''=FThresholdClose, '''write'''=SetThresholdClose }; | + | '''__property''' float ThresholdClose = { '''read'''=FThresholdClose, '''write'''=SetThresholdClose, '''default'''=9 }; |
</code> | </code> | ||
Revision as of 20:29, 10 June 2013
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: TVLBackgroundSubtractor
Contents |
Syntax
Delphi:
property ThresholdClose : Single read FThresholdClose write SetThresholdClose default 9;
C++ Builder:
__property float ThresholdClose = { read=FThresholdClose, write=SetThresholdClose, default=9 };
Summary
The sample is close to the existing components threshold.
Description
Threshold on the squared Mahalan distance to decide when a
sample is close to the existing components. If it is not
close to any a new component will be generated. I use 3 sigma
=> ThresholdClose=3*3=9.
Smaller ThresholdClose leads to more generated components and higher ThresholdClose might make lead to small number of components but they can grow too large.