QuasiDenseStereoGetDisparity Method |
http://www.emgu.com
Compute and return the disparity map based on the correspondences found in the "process" method.
Namespace:
Emgu.CV.Stereo
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic Mat GetDisparity(
byte disparityLvls = 50
)
Public Function GetDisparity (
Optional disparityLvls As Byte = 50
) As Mat
public:
Mat^ GetDisparity(
unsigned char disparityLvls = 50
)
member GetDisparity :
?disparityLvls : byte
(* Defaults:
let _disparityLvls = defaultArg disparityLvls 50
*)
-> Mat
Parameters
- disparityLvls (Optional)
- Type: SystemByte
The level of detail in output disparity image.
Return Value
Type:
MatMat containing a the disparity image in grayscale.
See Also