Package boofcv.struct.wavelet
Class WlBorderCoefFixed<T extends WlCoef>
java.lang.Object
boofcv.struct.wavelet.WlBorderCoefFixed<T>
- All Implemented Interfaces:
WlBorderCoef<T>
public class WlBorderCoefFixed<T extends WlCoef> extends Object implements WlBorderCoef<T>
Precomputed border coefficients up to the specified depth.
-
Field Summary
-
Constructor Summary
Constructors Constructor Description WlBorderCoefFixed(int numLower, int numUpper)
-
Method Summary
Modifier and Type Method Description T
getBorderCoefficients(int index)
T
getInnerCoefficients()
Set of coefficients used inside the image where the scaling and wavelet signals do not go outside the image borders.T
getLower(int index)
int
getLowerLength()
T
getUpper(int index)
int
getUpperLength()
void
setInnerCoef(T innerCoef)
void
setLower(int index, T coef)
void
setUpper(int index, T coef)
-
Field Details
-
lowerCoef
-
upperCoef
-
-
Constructor Details
-
WlBorderCoefFixed
public WlBorderCoefFixed(int numLower, int numUpper)
-
-
Method Details
-
setInnerCoef
-
getLower
-
getUpper
-
setLower
-
setUpper
-
getLowerLength
public int getLowerLength()- Specified by:
getLowerLength
in interfaceWlBorderCoef<T extends WlCoef>
-
getUpperLength
public int getUpperLength()- Specified by:
getUpperLength
in interfaceWlBorderCoef<T extends WlCoef>
-
getBorderCoefficients
- Specified by:
getBorderCoefficients
in interfaceWlBorderCoef<T extends WlCoef>
-
getInnerCoefficients
Description copied from interface:WlBorderCoef
Set of coefficients used inside the image where the scaling and wavelet signals do not go outside the image borders.- Specified by:
getInnerCoefficients
in interfaceWlBorderCoef<T extends WlCoef>
- Returns:
- Wavelet coefficients for inside the image.
-