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
Syntaxpublic void Process(
Mat imgLeft,
Mat imgRight
)
Public Sub Process (
imgLeft As Mat,
imgRight As Mat
)
public:
void Process(
Mat^ imgLeft,
Mat^ imgRight
)
member Process :
imgLeft : Mat *
imgRight : Mat -> unit
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.
RemarksIf input images are in color, the method assumes that are BGR and converts them to grayscale.
See Also