| Package | Description |
|---|---|
| boofcv.abst.feature.orientation | |
| boofcv.alg.feature.orientation | |
| boofcv.alg.feature.orientation.impl | |
| boofcv.factory.feature.orientation |
| Modifier and Type | Interface and Description |
|---|---|
interface |
OrientationGradient<D extends ImageSingleBand>
Estimates the orientation of a region from the image gradient.
|
interface |
OrientationImage<T extends ImageSingleBand>
Estimates the orientation of a region directly from the image's pixels.
|
interface |
OrientationIntegral<II extends ImageSingleBand>
Estimate the orientation of an image from an
integral image. |
| Modifier and Type | Class and Description |
|---|---|
class |
OrientationGradientToImage<T extends ImageSingleBand,D extends ImageSingleBand>
Converts an implementation of
OrientationGradient into OrientationImage. |
class |
OrientationIntegralToImage<T extends ImageSingleBand,II extends ImageSingleBand>
Converts an implementation of
OrientationIntegral into OrientationImage. |
class |
OrientationSiftToImage
Wrapper around
OrientationHistogramSift for OrientationImage. |
| Modifier and Type | Class and Description |
|---|---|
class |
OrientationAverage<D extends ImageSingleBand>
Computes the orientation of a region by summing up the derivative along each axis independently
then computing the direction fom the sum.
|
class |
OrientationHistogram<D extends ImageSingleBand>
Estimates the orientation by creating a histogram of discrete angles around
the entire circle.
|
class |
OrientationImageAverage<T extends ImageSingleBand>
Computes the orientation of a region by computing a weighted sum of each pixel's intensity
using their respective sine and cosine values.
|
class |
OrientationIntegralBase<II extends ImageSingleBand,G extends GradientValue>
Common base class for integral image region orientation algorithms.
|
class |
OrientationSlidingWindow<D extends ImageSingleBand>
Estimates the orientation by sliding window across all angles.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ImplOrientationAverage_F32
Implementation of
OrientationAverage for a specific image type. |
class |
ImplOrientationAverage_S16
Implementation of
OrientationAverage for a specific image type. |
class |
ImplOrientationAverage_S32
Implementation of
OrientationAverage for a specific image type. |
class |
ImplOrientationAverageGradientIntegral<T extends ImageSingleBand,G extends GradientValue>
Estimates the orientation of a region by computing the image derivative from an integral image.
|
class |
ImplOrientationHistogram_F32
Implementation of
OrientationHistogram for a specific image type. |
class |
ImplOrientationHistogram_S16
Implementation of
OrientationHistogram for a specific image type. |
class |
ImplOrientationHistogram_S32
Implementation of
OrientationHistogram for a specific image type. |
class |
ImplOrientationImageAverage_F32
Implementation of
OrientationImageAverage for a specific image type. |
class |
ImplOrientationImageAverage_U8
Implementation of
OrientationImageAverage for a specific image type. |
class |
ImplOrientationImageAverageIntegral<T extends ImageSingleBand,G extends GradientValue>
Estimates the orientation of a region using a "derivative free" method.
|
class |
ImplOrientationSlidingWindow_F32
Implementation of
OrientationSlidingWindow for a specific image type. |
class |
ImplOrientationSlidingWindow_S16
Implementation of
OrientationSlidingWindow for a specific image type. |
class |
ImplOrientationSlidingWindow_S32
Implementation of
OrientationSlidingWindow for a specific image type. |
class |
ImplOrientationSlidingWindowIntegral<T extends ImageSingleBand,G extends GradientValue>
Implementation of
OrientationSlidingWindow for integral images. |
| Modifier and Type | Method and Description |
|---|---|
static <T extends ImageSingleBand> |
FactoryOrientation.convertImage(RegionOrientation algorithm,
Class<T> imageType)
Adds wrappers around implementations of
RegionOrientation such that they can be used
as a OrientationImage. |
Copyright © 2013. All Rights Reserved.