computeCorrespondEpilinesAsync function
        
Future<Mat> 
computeCorrespondEpilinesAsync(
    
- InputArray points,
 - int whichImage,
 - InputArray F, {
 - 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
Future<Mat> computeCorrespondEpilinesAsync(
  InputArray points,
  int whichImage,
  InputArray F, {
  OutputArray? lines,
}) async {
  lines ??= Mat.empty();
  return cvRunAsync0(
    (callback) => ccalib3d.cv_computeCorrespondEpilines(points.ref, whichImage, F.ref, lines!.ref, callback),
    (c) => c.complete(lines!),
  );
}