CImage:AddNoise
The AddNoise method adds noise to the pixel values inside a rectangular region.
bResult = CImage:AddNoise( CRect, sigma ) |
The region is specified by a CRect using 1-based coordinates.
sigma is the noise sigma, specified by a number or string.
On success, this method returns true.
On failure, false is returned.
This method adds Gaussian random noise to the pixel values. The noise may be positive or negative relative to the existing pixel value. To set a pixel value plus noise, rather than add noise to the existing value, use SetRegionVal.
The following script opens an image from the file at sPath, then add noise with a Gaussian sigma of 7.6 to all pixels in columns 100:200 and rows 250:350:
|
-- Create a CImage |
|
-- Open the image from sPath. |
|
-- create a rectangle |
|
-- columns 100:200, rows 250:350 |
|
-- add Gaussian noise |
|
-- save the image |
|
-- delete the CImage from memory |
|
-- delete the CRect from memory |
Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics,
Inc. All Rights Reserved.