We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In e1, e2, and o1 i have get this error " e1 cannot be resolved to a variable"
i'm using eclipse java
public static void sortTopLeft2BottomRight(List<MatOfPoint> points){ // top-left to right-bottom sort Collections.sort(points, (e1, e2) -> { Point o1 = new Point(e1.get(0, 0)); Point o2 = new Point(e2.get(0, 0)); return o1.y > o2.y ? 1 : -1; }); } public static void sortLeft2Right(List<MatOfPoint> points){ // left to right sort Collections.sort(points, (e1, e2) -> { Point o1 = new Point(e1.get(0, 0)); Point o2 = new Point(e2.get(0, 0)); return o1.x > o2.x ? 1 : -1; }); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In e1, e2, and o1 i have get this error " e1 cannot be resolved to a variable"
i'm using eclipse java
The text was updated successfully, but these errors were encountered: