| Package | Description |
|---|---|
| boofcv.alg.transform.pyramid | |
| boofcv.struct.pyramid |
| Modifier and Type | Class and Description |
|---|---|
class |
PyramidDiscreteAverage<T extends ImageSingleBand>
Creates an image pyramid by down sampling square regions using .
|
class |
PyramidDiscreteSampleBlur<T extends ImageSingleBand>
Convolves a re-normalizable blur kernel across the image before down sampling.
|
class |
PyramidFloatGaussianScale<T extends ImageSingleBand>
PyramidFloat in which each layer is constructed by 1) applying Gaussian blur to the previous layer, and then
2) re-sampling the blurred previous layer. |
class |
PyramidFloatScale<T extends ImageSingleBand>
Updates each layer in a
PyramidFloat by rescaling the layer with interpolation. |
| Modifier and Type | Method and Description |
|---|---|
static <O extends ImageSingleBand> |
PyramidOps.declareOutput(ImagePyramid<?> pyramid,
Class<O> outputType)
Creates an array of single band images for each layer in the provided pyramid.
|
static <I extends ImageSingleBand,O extends ImageSingleBand> |
PyramidOps.filter(ImagePyramid<I> input,
FilterImageInterface<I,O> filter,
O[] output)
Runs an image filter through each layer in the pyramid.
|
static <I extends ImageSingleBand,O extends ImageSingleBand> |
PyramidOps.gradient(ImagePyramid<I> input,
ImageGradient<I,O> gradient,
O[] derivX,
O[] derivY)
Computes the gradient for each image the pyramid.
|
static <O extends ImageSingleBand> |
PyramidOps.reshapeOutput(ImagePyramid<?> pyramid,
O[] output)
Reshapes each image in the array to match the layers in the pyramid
|
| Modifier and Type | Class and Description |
|---|---|
class |
ImagePyramidBase<T extends ImageSingleBand>
Base class for image pyramids.
|
class |
PyramidDiscrete<T extends ImageSingleBand>
In this implementation the scale factor between each layer is limited to being a positive integer that is evenly
divisible by the previous layer.
|
class |
PyramidFloat<T extends ImageSingleBand>
An image pyramid where each level can be an arbitrary scale.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ImagePyramid.setTo(ImagePyramid<T> input)
Set's this pyramid to be the same as input.
|
void |
ImagePyramidBase.setTo(ImagePyramid<T> input) |
Copyright © 2013. All Rights Reserved.