Prototype
floatVariance:=ImgEvaluateVariance(intImageHandle)
Description
It evaluates image variance.
Parameters
intImageHandle: integer value corresponding to the image handle.
Returned value
Float value rapresenting the normalized image variance. It ranges from 0.0 (low) to 255.0 (high)
Notes
None.
Example
// Find the image variance
value:=ImgEvaluateVariance(_CurrentImage);
//It shows a message
ApplicationLog(_CurrentAgent,'Image Variance is: '+ FloatToStr(value));