OTB
9.0.0
Orfeo Toolbox
|
#include <otbSubPixelDisparityImageFilter.h>
Public Types | |
typedef otb::PixelWiseBlockMatchingImageFilter< InputImageType, OutputMetricImageType, OutputDisparityImageType, InputMaskImageType, BlockMatchingFunctorType > | BlockMatchingFilterType |
typedef TBlockMatchingFunctor | BlockMatchingFunctorType |
typedef itk::ConstNeighborhoodIterator< TInputImage > | ConstNeighborhoodIteratorType |
typedef itk::SmartPointer< const Self > | ConstPointer |
typedef OutputDisparityImageType::PixelType | DisparityPixelType |
typedef InputImageType::IndexType | IndexType |
typedef TInputImage | InputImageType |
typedef TMaskImage | InputMaskImageType |
typedef TOutputMetricImage::ValueType | MetricValueType |
typedef TDisparityImage | OutputDisparityImageType |
typedef TOutputMetricImage | OutputMetricImageType |
typedef itk::SmartPointer< Self > | Pointer |
typedef InputImageType::PointType | PointType |
typedef InputImageType::RegionType | RegionType |
typedef itk::ResampleImageFilter< TInputImage, TInputImage, double > | ResamplerFilterType |
typedef SubPixelDisparityImageFilter | Self |
typedef InputImageType::SizeType | SizeType |
typedef InputImageType::SpacingType | SpacingType |
typedef itk::ImageToImageFilter< TInputImage, TDisparityImage > | Superclass |
typedef itk::TranslationTransform< double, 2 > | TransformationType |
Public Member Functions | |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
virtual const char * | GetNameOfClass () const |
void | SetHorizontalDisparityInput (const TDisparityImage *hfield) |
void | SetLeftInput (const TInputImage *image) |
void | SetMetricInput (const TOutputMetricImage *image) |
void | SetRightInput (const TInputImage *image) |
void | SetVerticalDisparityInput (const TDisparityImage *vfield) |
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const int | DICHOTOMY = 2 |
static const int | PARABOLIC = 0 |
static const int | TRIANGULAR = 1 |
SizeType | m_Radius |
int | m_MinimumHorizontalDisparity |
int | m_MaximumHorizontalDisparity |
int | m_MinimumVerticalDisparity |
int | m_MaximumVerticalDisparity |
bool | m_Minimize |
BlockMatchingFunctorType | m_Functor |
int | m_RefineMethod |
std::vector< double > | m_WrongExtrema |
unsigned int | m_Step |
IndexType | m_GridIndex |
const TDisparityImage * | GetHorizontalDisparityInput () const |
const TDisparityImage * | GetVerticalDisparityInput () const |
void | SetLeftMaskInput (const TMaskImage *image) |
void | SetRightMaskInput (const TMaskImage *image) |
const TInputImage * | GetLeftInput () const |
const TInputImage * | GetRightInput () const |
const TMaskImage * | GetLeftMaskInput () const |
const TMaskImage * | GetRightMaskInput () const |
const TOutputMetricImage * | GetMetricOutput () const |
TOutputMetricImage * | GetMetricOutput () |
const TDisparityImage * | GetHorizontalDisparityOutput () const |
TDisparityImage * | GetHorizontalDisparityOutput () |
const TDisparityImage * | GetVerticalDisparityOutput () const |
TDisparityImage * | GetVerticalDisparityOutput () |
void | SetRadius (unsigned int radius) |
virtual void | SetRadius (SizeType _arg) |
virtual const SizeType & | GetRadius () const |
virtual void | SetMinimumHorizontalDisparity (int _arg) |
virtual const int & | GetMinimumHorizontalDisparity () const |
virtual void | SetMaximumHorizontalDisparity (int _arg) |
virtual const int & | GetMaximumHorizontalDisparity () const |
virtual void | SetMinimumVerticalDisparity (int _arg) |
virtual const int & | GetMinimumVerticalDisparity () const |
virtual void | SetMaximumVerticalDisparity (int _arg) |
virtual const int & | GetMaximumVerticalDisparity () const |
virtual void | SetMinimize (bool _arg) |
virtual const bool & | GetMinimize () const |
virtual void | MinimizeOn () |
virtual void | MinimizeOff () |
BlockMatchingFunctorType & | GetFunctor () |
const BlockMatchingFunctorType & | GetFunctor () const |
virtual void | SetRefineMethod (int _arg) |
virtual int | GetRefineMethod () |
void | SetInputsFromBlockMatchingFilter (const BlockMatchingFilterType *filter) |
SubPixelDisparityImageFilter () | |
~SubPixelDisparityImageFilter () override | |
void | VerifyInputInformation () override |
void | GenerateOutputInformation () override |
void | GenerateInputRequestedRegion () override |
void | BeforeThreadedGenerateData () override |
void | ThreadedGenerateData (const RegionType &outputRegionForThread, itk::ThreadIdType threadId) override |
void | AfterThreadedGenerateData () override |
SubPixelDisparityImageFilter (const Self &)=delete | |
void | operator= (const Self &)=delete |
void | ParabolicRefinement (const RegionType &outputRegionForThread, itk::ThreadIdType threadId) |
void | TriangularRefinement (const RegionType &outputRegionForThread, itk::ThreadIdType threadId) |
void | DichotomyRefinement (const RegionType &outputRegionForThread, itk::ThreadIdType threadId) |
Perform sub-pixel disparity estimation from input integer disparities and the image pair that was used.
This filter is intended to be placed after a PixelWiseBlockMatchingImageFilter. Its role is to produce an estimate of the disparities (both horizontal and vertical) with sub-pixel precision. The integer input disparities are used as starting points for the disparity refinement. The refinement is done within a 3x3 neighborhood around this position (it is neighborhood in the 2D disparity space). If no input disparity is given, the shift between input images is assumed to be null along both directions.
Left and right masks can be used to skip the sub-pixel disparity refinement for couples of pixels carrying a non-positive mask value.
The exploration limits for horizontal and vertical disparities can be set like in PixelWiseBlockMatchingFilter. If the 3x3 neighborhood around the initial estimate is not inside the exploration area, refinement is skipped for the current pixel.
Before trying to refine the integer disparity, the filter checks that the initial position is an extrema for the metric used. Depending on the 3x3 neighborhood, the refinement can be done along the horizontal axis only, along the vertical axis only, and also in 2D. Three refinement methods are proposed : parabolic, triangular and dichotomy. The parabolic method tries to fit a parabola to the metric scores on the 3x3 neighborhood. The triangular method tries to fit local scores to a circular cone. The dichotomy method tries to find the local extrema by a dichotomic search (non-integer disparity positions are tested after a resampling of the right image).
Definition at line 67 of file otbSubPixelDisparityImageFilter.h.
typedef otb::PixelWiseBlockMatchingImageFilter<InputImageType, OutputMetricImageType, OutputDisparityImageType, InputMaskImageType, BlockMatchingFunctorType> otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::BlockMatchingFilterType |
Definition at line 104 of file otbSubPixelDisparityImageFilter.h.
typedef TBlockMatchingFunctor otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::BlockMatchingFunctorType |
Definition at line 87 of file otbSubPixelDisparityImageFilter.h.
typedef itk::ConstNeighborhoodIterator<TInputImage> otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::ConstNeighborhoodIteratorType |
Definition at line 99 of file otbSubPixelDisparityImageFilter.h.
typedef itk::SmartPointer<const Self> otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::ConstPointer |
Definition at line 74 of file otbSubPixelDisparityImageFilter.h.
typedef OutputDisparityImageType::PixelType otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::DisparityPixelType |
Definition at line 97 of file otbSubPixelDisparityImageFilter.h.
typedef InputImageType::IndexType otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::IndexType |
Definition at line 90 of file otbSubPixelDisparityImageFilter.h.
typedef TInputImage otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::InputImageType |
Useful typedefs
Definition at line 80 of file otbSubPixelDisparityImageFilter.h.
typedef TMaskImage otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::InputMaskImageType |
Definition at line 86 of file otbSubPixelDisparityImageFilter.h.
typedef TOutputMetricImage::ValueType otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::MetricValueType |
Definition at line 95 of file otbSubPixelDisparityImageFilter.h.
typedef TDisparityImage otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::OutputDisparityImageType |
Definition at line 85 of file otbSubPixelDisparityImageFilter.h.
typedef TOutputMetricImage otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::OutputMetricImageType |
Definition at line 84 of file otbSubPixelDisparityImageFilter.h.
typedef itk::SmartPointer<Self> otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::Pointer |
Definition at line 73 of file otbSubPixelDisparityImageFilter.h.
typedef InputImageType::PointType otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::PointType |
Definition at line 93 of file otbSubPixelDisparityImageFilter.h.
typedef InputImageType::RegionType otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::RegionType |
Definition at line 91 of file otbSubPixelDisparityImageFilter.h.
typedef itk::ResampleImageFilter<TInputImage, TInputImage, double> otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::ResamplerFilterType |
Definition at line 101 of file otbSubPixelDisparityImageFilter.h.
typedef SubPixelDisparityImageFilter otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::Self |
Standard class typedef
Definition at line 71 of file otbSubPixelDisparityImageFilter.h.
typedef InputImageType::SizeType otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SizeType |
Definition at line 89 of file otbSubPixelDisparityImageFilter.h.
typedef InputImageType::SpacingType otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SpacingType |
Definition at line 92 of file otbSubPixelDisparityImageFilter.h.
typedef itk::ImageToImageFilter<TInputImage, TDisparityImage> otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::Superclass |
Definition at line 72 of file otbSubPixelDisparityImageFilter.h.
typedef itk::TranslationTransform<double, 2> otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::TransformationType |
Definition at line 102 of file otbSubPixelDisparityImageFilter.h.
|
protected |
Constructor
Definition at line 29 of file otbSubPixelDisparityImageFilter.hxx.
|
overrideprotected |
Destructor
Definition at line 64 of file otbSubPixelDisparityImageFilter.hxx.
|
privatedelete |
The radius of the blocks
|
overrideprotected |
After threaded generate data
Definition at line 2050 of file otbSubPixelDisparityImageFilter.hxx.
|
overrideprotected |
Before threaded generate data
Definition at line 495 of file otbSubPixelDisparityImageFilter.hxx.
virtual::itk::LightObject::Pointer otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::CreateAnother | ( | void | ) | const |
|
private |
dichotomy refinement method
Definition at line 1392 of file otbSubPixelDisparityImageFilter.hxx.
|
overrideprotected |
Generate input requested region
Definition at line 375 of file otbSubPixelDisparityImageFilter.hxx.
|
overrideprotected |
Generate output information
Definition at line 337 of file otbSubPixelDisparityImageFilter.hxx.
|
inline |
Get the functor for parameters setting
Definition at line 194 of file otbSubPixelDisparityImageFilter.h.
|
inline |
Get the functor (const version)
Definition at line 200 of file otbSubPixelDisparityImageFilter.h.
const TDisparityImage * otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetHorizontalDisparityInput |
Get the initial disparity fields
Definition at line 144 of file otbSubPixelDisparityImageFilter.hxx.
TDisparityImage* otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetHorizontalDisparityOutput | ( | ) |
The radius of the blocks
TDisparityImage * otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetHorizontalDisparityOutput |
Get the disparity output
Definition at line 186 of file otbSubPixelDisparityImageFilter.hxx.
const TInputImage * otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetLeftInput |
Get the inputs
Definition at line 123 of file otbSubPixelDisparityImageFilter.hxx.
const TMaskImage * otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetLeftMaskInput |
The radius of the blocks
Definition at line 165 of file otbSubPixelDisparityImageFilter.hxx.
|
virtual |
The radius of the blocks
|
virtual |
The radius of the blocks
TOutputMetricImage* otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetMetricOutput | ( | ) |
The radius of the blocks
TOutputMetricImage * otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetMetricOutput |
Get the metric output
Definition at line 229 of file otbSubPixelDisparityImageFilter.hxx.
|
virtual |
The radius of the blocks
|
virtual |
The radius of the blocks
|
virtual |
The radius of the blocks
|
virtual |
Run-time type information (and related methods).
|
virtual |
The radius of the blocks
|
virtual |
The radius of the blocks
const TInputImage * otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetRightInput |
The radius of the blocks
Definition at line 133 of file otbSubPixelDisparityImageFilter.hxx.
const TMaskImage * otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetRightMaskInput |
The radius of the blocks
Definition at line 175 of file otbSubPixelDisparityImageFilter.hxx.
const TDisparityImage * otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetVerticalDisparityInput |
The radius of the blocks
Definition at line 155 of file otbSubPixelDisparityImageFilter.hxx.
TDisparityImage* otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetVerticalDisparityOutput | ( | ) |
The radius of the blocks
TDisparityImage * otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetVerticalDisparityOutput |
Get the disparity output
Definition at line 208 of file otbSubPixelDisparityImageFilter.hxx.
|
virtual |
The radius of the blocks
|
virtual |
The radius of the blocks
|
static |
Method for creation through the object factory.
|
privatedelete |
The radius of the blocks
|
private |
parabolic refinement method
Definition at line 536 of file otbSubPixelDisparityImageFilter.hxx.
void otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SetHorizontalDisparityInput | ( | const TDisparityImage * | hfield | ) |
Set initial horizontal disparity field
Definition at line 83 of file otbSubPixelDisparityImageFilter.hxx.
void otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SetInputsFromBlockMatchingFilter | ( | const BlockMatchingFilterType * | filter | ) |
The radius of the blocks
Definition at line 249 of file otbSubPixelDisparityImageFilter.hxx.
References otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetHorizontalDisparityOutput(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetLeftInput(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetLeftMaskInput(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetMaximumHorizontalDisparity(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetMaximumVerticalDisparity(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetMetricOutput(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetMinimize(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetMinimumHorizontalDisparity(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetMinimumVerticalDisparity(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetRadius(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetRightInput(), otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetRightMaskInput(), and otb::PixelWiseBlockMatchingImageFilter< TInputImage, TOutputMetricImage, TOutputDisparityImage, TMaskImage, TBlockMatchingFunctor >::GetVerticalDisparityOutput().
void otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SetLeftInput | ( | const TInputImage * | image | ) |
Set left input
Definition at line 69 of file otbSubPixelDisparityImageFilter.hxx.
void otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SetLeftMaskInput | ( | const TMaskImage * | image | ) |
Set mask input (optional)
Definition at line 99 of file otbSubPixelDisparityImageFilter.hxx.
|
virtual |
|
virtual |
void otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SetMetricInput | ( | const TOutputMetricImage * | image | ) |
Set the input metric image
Definition at line 115 of file otbSubPixelDisparityImageFilter.hxx.
|
virtual |
The radius of the blocks
|
virtual |
|
virtual |
|
virtual |
Set/Get the radius of the area on which metric is evaluated
|
inline |
Set unsigned int radius
Definition at line 159 of file otbSubPixelDisparityImageFilter.h.
|
virtual |
Set/Get the refinement method (PARABOLIC, TRIANGULAR or DICHOTOMY)
void otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SetRightInput | ( | const TInputImage * | image | ) |
Set right input
Definition at line 76 of file otbSubPixelDisparityImageFilter.hxx.
void otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SetRightMaskInput | ( | const TMaskImage * | image | ) |
Set right mask input (optional)
Definition at line 107 of file otbSubPixelDisparityImageFilter.hxx.
void otb::SubPixelDisparityImageFilter< TInputImage, TOutputMetricImage, TDisparityImage, TMaskImage, TBlockMatchingFunctor >::SetVerticalDisparityInput | ( | const TDisparityImage * | vfield | ) |
Set initial vertical disparity field
Definition at line 91 of file otbSubPixelDisparityImageFilter.hxx.
|
overrideprotected |
Threaded generate data
Definition at line 510 of file otbSubPixelDisparityImageFilter.hxx.
|
private |
triangular refinement method
Definition at line 953 of file otbSubPixelDisparityImageFilter.hxx.
|
overrideprotected |
Verify that the input images are compatible.
This method needs to be re-implemented from ImageToImageFilter since the initial images and disparity maps may not have the same size
Definition at line 286 of file otbSubPixelDisparityImageFilter.hxx.
|
static |
Definition at line 108 of file otbSubPixelDisparityImageFilter.h.
|
private |
Block-matching functor
Definition at line 273 of file otbSubPixelDisparityImageFilter.h.
|
private |
Stores the computed grid start index of the disparity map (internal purpose only)
Definition at line 285 of file otbSubPixelDisparityImageFilter.h.
|
private |
The max disparity to explore
Definition at line 261 of file otbSubPixelDisparityImageFilter.h.
|
private |
The max disparity to explore
Definition at line 267 of file otbSubPixelDisparityImageFilter.h.
|
private |
Should we minimize or maximize ?
Definition at line 270 of file otbSubPixelDisparityImageFilter.h.
|
private |
The min disparity to explore
Definition at line 258 of file otbSubPixelDisparityImageFilter.h.
|
private |
The min disparity to explore
Definition at line 264 of file otbSubPixelDisparityImageFilter.h.
|
private |
The radius of the blocks
Definition at line 255 of file otbSubPixelDisparityImageFilter.h.
|
private |
Refinement method (PARABOLIC, TRIANGULAR or DICHOTOMY)
Definition at line 276 of file otbSubPixelDisparityImageFilter.h.
|
private |
Stores the computed grid step of the disparity map (internal purpose only)
Definition at line 282 of file otbSubPixelDisparityImageFilter.h.
|
private |
Stores the number of pixels whose refined position has a worse metric than the initial position
Definition at line 279 of file otbSubPixelDisparityImageFilter.h.
|
static |
Definition at line 106 of file otbSubPixelDisparityImageFilter.h.
|
static |
Definition at line 107 of file otbSubPixelDisparityImageFilter.h.