Calculates disparity for stereo-pair

C# | Visual Basic | Visual C++ |
public static Image<Gray, byte> FindStereoCorrespondence( Image<Gray, byte> leftImage, Image<Gray, byte> rightImage, int maxDisparity )
Public Shared Function FindStereoCorrespondence ( _ leftImage As Image(Of Gray, Byte), _ rightImage As Image(Of Gray, Byte), _ maxDisparity As Integer _ ) As Image(Of Gray, Byte)
public: static Image<Gray^, unsigned char>^ FindStereoCorrespondence( Image<Gray^, unsigned char>^ leftImage, Image<Gray^, unsigned char>^ rightImage, int maxDisparity )

- maxDisparity (Int32)
- Maximum possible disparity. The closer the objects to the cameras, the larger value should be specified here. Too big values slow down the process significantly

[Missing <returns> documentation for M:Emgu.CV.Utils.FindStereoCorrespondence(Emgu.CV.Image{Emgu.CV.Gray,System.Byte},Emgu.CV.Image{Emgu.CV.Gray,System.Byte},System.Int32)]