Click or drag to resize

QuasiDenseStereoProcess Method

http://www.emgu.com
Main process of the algorithm. This method computes the sparse seeds and then densifies them. Initially input images are converted to gray-scale and then the sparseMatching method is called to obtain the sparse stereo. Finally quasiDenseMatching is called to densify the corresponding points.

Namespace:  Emgu.CV.Stereo
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public void Process(
	Mat imgLeft,
	Mat imgRight
)

Parameters

imgLeft
Type: Emgu.CVMat
The left Channel of a stereo image pair.
imgRight
Type: Emgu.CVMat
The right Channel of a stereo image pair.
Remarks
If input images are in color, the method assumes that are BGR and converts them to grayscale.
See Also