Skip to content

Commit c1dec72

Browse files
committed
java: force 64F in solvePnP test
1 parent aa5caf8 commit c1dec72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/calib3d/misc/java/test/Calib3dTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ public void testRQDecomp3x3MatMatMatMatMatMat() {
499499
}
500500

501501
public void testSolvePnPListOfPoint3ListOfPointMatMatMatMat() {
502-
Mat intrinsics = Mat.eye(3, 3, CvType.CV_32F);
502+
Mat intrinsics = Mat.eye(3, 3, CvType.CV_64F);
503503
intrinsics.put(0, 0, 400);
504504
intrinsics.put(1, 1, 400);
505505
intrinsics.put(0, 2, 640 / 2);

0 commit comments

Comments
 (0)