framebounds
R2026bShearlet system frame bounds
Syntax
Description
[
returns the lower and upper frame bounds for the shearlet system a,b] = framebounds(sls)sls.
The energy in the shearlet transform coefficients is bounded by the energy in the input
image and the frame bounds. See Frame Bounds.
Examples
This example shows how the PreserveEnergy property affects the frame bounds of a shearlet system.
Load an image and calculate its energy.
load xbox energyIm = norm(xbox,'fro')^2;
Create two shearlet systems that can be applied to the image. Set the value of PreserveEnergy in the first shearlet system to true and in the second shearlet system to false.
slsT = shearletSystem('ImageSize',size(xbox),'PreserveEnergy',true); slsF = shearletSystem('ImageSize',size(xbox),'PreserveEnergy',false);
Obtain the shearlet transform of the image using both shearlet systems.
cfsT = sheart2(slsT,xbox); cfsF = sheart2(slsF,xbox);
Calculate the frame bounds of slsT. Confirm that slsT is a Parseval frame.
[aT,bT] = framebounds(slsT)
aT = 1
bT = 1
Confirm that using slsT preserves energy.
energyCfsT = norm(cfsT(:))^2; abs(energyIm-energyCfsT)
ans = 6.9849e-10
Obtain the frame bounds of slsF. Confirm the lower and upper frame bounds are not both equal to 1.
[aF,bF] = framebounds(slsF)
aF = 1.0000
bF = 8.0000
Even though slsF is not normalized to be a Parseval frame, confirm the frame inequality is still satisfied.
energyCfsF = norm(cfsF(:))^2; aF*energyIm <= norm(cfsF(:))^2 && norm(cfsF(:))^2 <= bF*energyIm
ans = logical
1
Input Arguments
Shearlet system, specified as a shearletSystem object.
Output Arguments
Lower and upper frame bounds of the shearlet system, returned as positive real
numbers. If the PreserveEnergy value of sls is
true, then sls is a Parseval frame, and both
frame bounds are equal to 1. See Frame Bounds.
The data types of the frame bounds match the Precision value of the shearlet system.
Note
For an image X, if sls is a Parseval frame
and C = sheart2(sls,X), then
the energy of X and the energy of C are equal
within round-off error.
Data Types: single | double
More About
The energy in the shearlet transform of an image is bounded by the
energy of the image and the lower and upper frame bounds a,b of the
shearlet system. If X is an M-by-N
image and C, the shearlet transform of X, is
M-by-N-by-K, then the frame
inequality holds:
In a Parseval frame, a = b = 1, and
the shearlet transform preserves energy.
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
GPU Code Generation
Generate CUDA® code for NVIDIA® GPUs using GPU Coder™.
The framebounds
function fully supports thread-based environments. For more information, see Run MATLAB Functions in Thread-Based Environment.
Version History
Introduced in R2019bYou can use framebounds in thread-based
environments. For more information, see Run MATLAB Functions in Thread-Based Environment.
See Also
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)