Ask Your Question

cduguet's profile - activity

2017-08-10 06:34:24 -0600 commented answer Aruco (diamonds) not working on bigger images. Which parameters to tune?

who should I talk to to discuss if this is worth a pull request or not?

2017-08-09 11:33:24 -0600 received badge  Self-Learner (source)
2017-08-09 08:41:28 -0600 answered a question Aruco (diamonds) not working on bigger images. Which parameters to tune?

Debugging my app I have noticed that minRepDistance inside detectCharucoDiamond is growing in squared proportion to the image width, and then its value is squared again for the thresholding using closestCandidateDistance inside of refineDetectedMarkers. So to supress this escalation 'to the fourth' of the image size, I have implemented the following patch in charuco.cpp (in the aruco module folder)

--- charuco.cpp 2017-08-09 14:01:38.583984613 +0200
+++ charuco.1.cpp   2017-08-09 14:01:08.972215628 +0200 @@ -738,7
+738,7 @@

     CV_Assert(_markerIds.total() > 0 && _markerIds.total() ==
_markerCorners.total());

-    const float minRepDistanceRate = 0.12f;
+    const float minRepDistanceRate = 1.3024550356922115f;

     // create Charuco board layout for diamond (3x3 layout)
     Ptr<Dictionary> dict = getPredefinedDictionary(PREDEFINED_DICTIONARY_NAME(0)); @@ -771,7 +771,7 @@
           perimeterSq += edge.x*edge.x + edge.y*edge.y;
         }
         // maximum reprojection error relative to perimeter
-        float minRepDistance = perimeterSq * minRepDistanceRate * minRepDistanceRate;
+        float minRepDistance = sqrt(perimeterSq) * minRepDistanceRate;

         int currentId = _markerIds.getMat().at< int >(i);

I came out with that (unneccesarily long) float minRepDistanceRate by trying to maintain the same threashold for a resolution of 640x480 when making the minRepDistance not quadratic anymore. Now when using it for 1920x1080, it works great!

2017-08-09 08:32:03 -0600 commented question Aruco (diamonds) not working on bigger images. Which parameters to tune?

I tried, without success. I came up with a solution for this, explained below.

2017-08-04 08:07:41 -0600 commented question Aruco (diamonds) not working on bigger images. Which parameters to tune?

LBerger, thank you for yout comment. I tried before increasing the window size, but that that you mentioned I checked again and I see an increase in the recognition of the black squares, but not much in the ids and pose estimation.

it looks like this image: link text

2017-08-04 07:47:18 -0600 asked a question Aruco (diamonds) not working on bigger images. Which parameters to tune?

Hello,

somehow detecting charuco diamonds does not work with bigger images for me. With my original images of 1920x1080 it neither recognizes the ids reliably (the diamond ids elements are switching places every time). In the first image, you can see it recognizes (7, 9, 45, 2).

Then I tried downsampling the images to 960x540, and dividing the calibration params, f, c, to half, and it works! The id is correctly recognized as (2,7,45,9) and the pose estimation is accurate.

How to make it work for bigger images? I tried changing the detection parameters depending on absolute pixel units (not relative to image size). Here is a list of my current parameters.

nmarkers: 1024
adaptiveThreshWinSizeMin: 13
adaptiveThreshWinSizeMax: 43
adaptiveThreshWinSizeStep: 10
adaptiveThreshWinSize: 42
adaptiveThreshConstant: 7
minMarkerPerimeterRate: 0.1
maxMarkerPerimeterRate: 4.0
polygonalApproxAccuracyRate: 0.05
minCornerDistance: 10.0
minDistanceToBorder: 10
minMarkerDistance: 10.0
minMarkerDistanceRate: 0.05
doCornerRefinement: false
cornerRefinementWinSize: 5
cornerRefinementMaxIterations: 30
cornerRefinementMinAccuracy: 0.1
markerBorderBits: 1
perspectiveRemovePixelPerCell: 8
perspectiveRemoveIgnoredMarginPerCell: 0.13
maxErroneousBitsInBorderRate: 0.04
minOtsuStdDev: 5.0
errorCorrectionRate: 0.6

Any hints?

thank you!

image description

image description