| Class | Description |
|---|---|
| OrientationAverage<D extends boofcv.struct.image.ImageGray> |
Computes the orientation of a region by summing up the derivative along each axis independently
then computing the direction fom the sum.
|
| OrientationHistogram<D extends boofcv.struct.image.ImageGray> |
Estimates the orientation by creating a histogram of discrete angles around
the entire circle.
|
| OrientationHistogramSift<Deriv extends boofcv.struct.image.ImageGray> |
Computes the orientation of a region around a point in scale-space as specified in the SIFT [1] paper.
|
| OrientationImageAverage<T extends boofcv.struct.image.ImageGray> |
Computes the orientation of a region by computing a weighted sum of each pixel's intensity
using their respective sine and cosine values.
|
| OrientationIntegralBase<II extends boofcv.struct.image.ImageGray,G extends boofcv.struct.sparse.GradientValue> |
Common base class for integral image region orientation algorithms.
|
| OrientationSlidingWindow<D extends boofcv.struct.image.ImageGray> |
Estimates the orientation by sliding window across all angles.
|