1 | initial version |
Ok, I've tracked it down, there were two problems:
I've found bug in drawing method and for the second loop in public Mat drawEpiLines(Mat outImg) I've used
Point p1 = new Point(x0+outImg.cols()/2, y0);
Point p2 = new Point(x1+outImg.cols()/2, y1);
so I''ve added outImg.cols()/2 which transposed line for the second image. Results are here:
2 | No.2 Revision |
Ok, I've tracked it down, there were two problems:
I've found bug in drawing method and for the second loop in public Mat drawEpiLines(Mat outImg) I've used
Point p1 = new Point(x0+outImg.cols()/2, y0);
Point p2 = new Point(x1+outImg.cols()/2, y1);
so I''ve added outImg.cols()/2 outImg.cols()/2 which transposed line for the second image.
Results are here:
3 | No.3 Revision |
Ok, I've tracked it down, there were two problems:
I've found bug in drawing method and for the second loop in public Mat drawEpiLines(Mat outImg) I've used
Point p1 = new Point(x0+outImg.cols()/2, y0);
Point p2 = new Point(x1+outImg.cols()/2, y1);
so I''ve I've added outImg.cols()/2 which transposed line for the second image.
Results are here: