Interface OrientationGradient<D extends ImageGray<D>>

All Superinterfaces:
RegionOrientation
All Known Implementing Classes:
ImplOrientationAverage_F32, ImplOrientationAverage_S16, ImplOrientationAverage_S32, ImplOrientationHistogram_F32, ImplOrientationHistogram_S16, ImplOrientationHistogram_S32, ImplOrientationSlidingWindow_F32, ImplOrientationSlidingWindow_S16, ImplOrientationSlidingWindow_S32, OrientationAverage, OrientationHistogram, OrientationSlidingWindow

public interface OrientationGradient<D extends ImageGray<D>> extends RegionOrientation
Estimates the orientation of a region from the image gradient.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the type of image it can process.
    void
    setImage(D derivX, D derivY)
    Specifies input image data for estimating orientation.

    Methods inherited from interface boofcv.abst.feature.orientation.RegionOrientation

    compute, copy, setObjectRadius
  • Method Details

    • setImage

      void setImage(D derivX, D derivY)
      Specifies input image data for estimating orientation.
      Parameters:
      derivX - Image derivative along x-axis.
      derivY - Image derivative along y-axis.
    • getImageType

      Class<D> getImageType()
      Returns the type of image it can process.
      Returns:
      Type of image which can be processed