Interface DisparitySmoother<Image extends ImageBase<Image>,Disparity extends ImageGray<Disparity>>

All Superinterfaces:
VerbosePrint
All Known Implementing Classes:
DisparitySmootherSpeckleFilter

public interface DisparitySmoother<Image extends ImageBase<Image>,Disparity extends ImageGray<Disparity>> extends VerbosePrint
High level API for algorithm which attempt to reduce the noise in disparity images in a post processing step
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(Image image, Disparity disparity, int disparityRange)
    Process the disparity image and smooth it.

    Methods inherited from interface org.ddogleg.struct.VerbosePrint

    setVerbose
  • Method Details

    • process

      void process(Image image, Disparity disparity, int disparityRange)
      Process the disparity image and smooth it. The input disparity is modified.
      Parameters:
      image - (Input) Rectified image the disparity is computed from. Pixels should line up.
      disparity - (Input, Output) The disparity image which is to be smoothed.
      disparityRange - (Input) Range of values in the disparity image.