computeCorrespondEpilines function

Mat computeCorrespondEpilines(
  1. InputArray points,
  2. int whichImage,
  3. InputArray F, {
  4. OutputArray? lines,
})

For points in an image of a stereo pair, computes the corresponding epilines in the other image.

https://docs.opencv.org/4.11.0/d9/d0c/group__calib3d.html#ga19e3401c94c44b47c229be6e51d158b7

Implementation

Mat computeCorrespondEpilines(InputArray points, int whichImage, InputArray F, {OutputArray? lines}) {
  lines ??= Mat.empty();
  cvRun(() => ccalib3d.cv_computeCorrespondEpilines(points.ref, whichImage, F.ref, lines!.ref, ffi.nullptr));
  return lines;
}