imgFFTConvolve: Apply a convolution filter on an imagedata through fft...

Description Usage Arguments Value See Also Examples

Description

This function returns the imagedata that results from the convolution, using fft transformation that let you convolve with bigger masks.

Usage

1
imgFFTConvolve(imgdata, mask)

Arguments

imgdata

The image

mask

The convolution mask

Value

return an imagedata

See Also

imgFFT imgFFTInv

Examples

1
2
3
4
5
6
7
	## Not run: 
		x <- readJpeg(system.file("samples", "violet.jpg", package="biOps"))
		data <- c(-1,-1,-1,-1,9,-1,-1,-1,-1)
		m <- matrix(data, 3, 3, byrow = TRUE)
		i <- imgFFTConvolve(x, m)
	
## End(Not run)

matiasb/biOps documentation built on May 21, 2019, 12:55 p.m.