XPhotoInvokeDctDenoising Method |
http://www.emgu.com
The function implements simple dct-based denoising, link: http://www.ipol.im/pub/art/2011/ys-dct/.
Namespace:
Emgu.CV.XPhoto
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void DctDenoising(
Mat src,
Mat dst,
double sigma,
int psize = 16
)
Public Shared Sub DctDenoising (
src As Mat,
dst As Mat,
sigma As Double,
Optional psize As Integer = 16
)
public:
static void DctDenoising(
Mat^ src,
Mat^ dst,
double sigma,
int psize = 16
)
static member DctDenoising :
src : Mat *
dst : Mat *
sigma : float *
?psize : int
(* Defaults:
let _psize = defaultArg psize 16
*)
-> unit
Parameters
- src
- Type: Emgu.CVMat
Source image - dst
- Type: Emgu.CVMat
Destination image - sigma
- Type: SystemDouble
Expected noise standard deviation - psize (Optional)
- Type: SystemInt32
Size of block side where dct is computed
See Also