| Cv2ComputeCorrespondEpilines Method (InputArray, Int32, InputArray, OutputArray) |
For points in an image of a stereo pair, computes the corresponding epilines in the other image.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void ComputeCorrespondEpilines(
InputArray points,
int whichImage,
InputArray F,
OutputArray lines
)
Public Shared Sub ComputeCorrespondEpilines (
points As InputArray,
whichImage As Integer,
F As InputArray,
lines As OutputArray
)
public:
static void ComputeCorrespondEpilines(
InputArray^ points,
int whichImage,
InputArray^ F,
OutputArray^ lines
)
static member ComputeCorrespondEpilines :
points : InputArray *
whichImage : int *
F : InputArray *
lines : OutputArray -> unit
Parameters
- points
- Type: OpenCvSharpInputArray
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: OpenCvSharpInputArray
Fundamental matrix that can be estimated using findFundamentalMat() or stereoRectify() . - lines
- Type: OpenCvSharpOutputArray
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