function ThreshBottom(const Src: TOpenCLValue; Value: Double): TOpenCLValue;
Threshold bottom operation.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLValue | |
| 2 | Value | Double | scalar |
Returns: TOpenCLValue
Remarks:
Perform threshold operation on Src object value. The Value parameter is a lower bound for threshold operation. A value smaller than Value will be replaced with Value and stored in to the calling object.
Examples
var a,b: clValue;
begin
b.Copy(0.1);
a.ThreshBottom(b, 0.2); // a = [0.2]
end;
See Also: clValue.ThreshTop