specplot {LS2W} | R Documentation |
Plot the LWP associated with a cddews object
Description
This function displays the LWP associated with a cddews object, allowing the user to dictate display type.
Usage
specplot(cddews, scaling = "by.level", arrangement = c(3, 3), page = TRUE,
dataname = "Image", verbose = FALSE, display = "persp", reset = TRUE, wtitle="TRUE")
Arguments
cddews |
An object of class |
scaling |
Two scaling options are available. The default setting is to scale |
arrangement |
Allows the user to specify the number of spectral plots which are to appear on any given page. |
page |
An argument which allows the user to request that they be prompted when a new page of plots
appears. Two options are available: |
dataname |
A name for the image whose LWP is being displayed. This will appear as part of the title associated with each plot. |
verbose |
If set to |
display |
Two display methods are available. Using the option |
reset |
If set to |
wtitle |
A logical variable which dictates whether a common title is displayed on all spectral plots. |
Value
No value is returned.
Author(s)
Idris Eckley
References
Eckley, I.A., Nason, G.P. and Treloar, R.L. (2010) Locally stationary wavelet fields with application to the modelling and analysis of image texture. Journal of the Royal Statistical Society (Series C), 59, 595 - 616.
Eckley, I.A. and Nason, G.P. (2011). LS2W: Implementing the Locally Stationary 2D Wavelet Process Approach in R, Journal of Statistical Software, 43(3), 1-23. URL http://www.jstatsoft.org/v43/i03/.
See Also
Examples
#
# First let us create a textured image and create a cddews object.
#
## Not run:
monty <- HaarMontage(direction="diagonal")
monty.cddews <- cddews(monty, filter.number=1, family="DaubExPhase")
#
# Finally let's view this using a perspective plot.
#
specplot(monty.cddews, display = "persp")
## End(Not run)