eptdecomp2d {EPT} | R Documentation |
Decomposition of an Image by Two-dimensional Ensemble Patch Transform
Description
This function decomposes an image into frequency component and residue of two-dimensional ensemble patch transform by sifting process.
Usage
eptdecomp2d(x = NULL, y = NULL, z, type = "rectangle", tau, theta = 0,
process = c("average", "average"), pquantile = c(0, 1), equantile = c(0, 1),
gamma = 1, boundary = "reflexive",
stoprule = "type2", tol = 0.1^2, maxiter = 10, check = FALSE)
Arguments
x , y |
locations of regular grid at which the values in image |
z |
matrix of an image observed at location |
type |
patch type of |
tau |
a size parameter for two-dimensional ensemble patch transform: |
theta |
a degree of clockwise rotation of a patch. |
process |
specifies transform types for patch and ensemble processes:
|
pquantile |
quantiles for lower and upper envelopes of patch transform. When it is |
equantile |
quantiles for lower and upper envelopes of ensemble patch transform. |
gamma |
controls the amount of envelope magnitude. |
boundary |
specifies boundary condition from |
stoprule |
stopping rule of sifting. The |
tol |
tolerance for stopping rule of sifting. |
maxiter |
the maximum number of sifting. |
check |
specifies whether the sifting process is displayed. When |
Details
This function decomposes an image into frequency component and residue of two-dimensional ensemble patch transform by sifting process for a size parameter.
Value
eptcomp |
list of ept (ensemble patch transform) component at each sifting step when |
FC |
frequency component of ensemble patch transform by sifting process. |
residue |
residue of ensemble patch transform by sifting process. |
parameters |
a list of input parameters of |
See Also
Examples
#### example : composite of two components having different frequencies
nr <- nc <- 128; x <- seq(0, 1, length=nr); y <- seq(0, 1, length=nc)
coscomp1 <- outer(cos(20 * pi * x), cos(20 * pi * y))
coscomp2 <- outer(cos(5* pi * x), cos(5 * pi * y))
cosmeanf <- coscomp1 + coscomp2
op <- par(mfcol=c(3,1), mar=c(0,0.5,2,0.5))
image(cosmeanf, xlab="", ylab="", col=gray(0:100/100), axes=FALSE, main="a composite image")
image(coscomp1, xlab="", ylab="", col=gray(0:100/100), axes=FALSE, main="high-frequency component")
image(coscomp2, xlab="", ylab="", col=gray(0:100/100), axes=FALSE, main="low-frequency component")
#### Decomposition by Ensemble Patch Transform
outcossift <- eptdecomp2d(z=cosmeanf, tau=8)
#### Decomposition Result
op <- par(mfrow=c(2,2), mar=c(2,2,2,1))
image(outcossift$FC, xlab="", ylab="", col=gray(0:100/100), axes=FALSE, main="Decomposed HF")
persp(outcossift$FC, theta = -30, phi = 45, col = "white", xlab="X", ylab="Y", main="Decomposed HF")
image(outcossift$residue, xlab="", ylab="", col=gray(0:100/100), axes=FALSE, main="Residue")
persp(outcossift$residue, theta = -30, phi = 45, col = "white", xlab="X", ylab="Y", main="Residue")
par(op)