Cv2ComputeCorrespondEpilines Method (InputArray, Int32, InputArray, OutputArray) OpenCvSharp Class Library
For points in an image of a stereo pair, computes the corresponding epilines in the other image.

Namespace:  OpenCvSharp.CPlusPlus
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static void ComputeCorrespondEpilines(
	InputArray points,
	int whichImage,
	InputArray F,
	OutputArray lines
)

Parameters

points
Type: OpenCvSharp.CPlusPlusInputArray
Input points. N \times 1 or 1 x N matrix of type CV_32FC2 or CV_64FC2.
whichImage
Type: SystemInt32
Index of the image (1 or 2) that contains the points .
F
Type: OpenCvSharp.CPlusPlusInputArray
Fundamental matrix that can be estimated using findFundamentalMat() or stereoRectify() .
lines
Type: OpenCvSharp.CPlusPlusOutputArray
Output vector of the epipolar lines corresponding to the points in the other image. Each line ax + by + c=0 is encoded by 3 numbers (a, b, c) .
See Also

Reference