Skip to content

Commit

Permalink
Run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Oct 14, 2023
1 parent 1917fb7 commit d7411f7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@

package org.photonvision.vision.aruco;

import org.opencv.aruco.Aruco;
import org.opencv.objdetect.ArucoDetector;
import org.opencv.objdetect.DetectorParameters;
import org.opencv.objdetect.Dictionary;
import org.opencv.objdetect.Objdetect;
import org.photonvision.common.logging.LogGroup;
import org.photonvision.common.logging.Logger;
Expand All @@ -40,7 +38,9 @@ public ArucoDetectorParams() {
setCornerAccuracy(25);
setCornerRefinementMaxIterations(100);

detector = new ArucoDetector(Objdetect.getPredefinedDictionary(Objdetect.DICT_APRILTAG_16h5), parameters);
detector =
new ArucoDetector(
Objdetect.getPredefinedDictionary(Objdetect.DICT_APRILTAG_16h5), parameters);
}

public void setDecimation(float decimate) {
Expand Down

0 comments on commit d7411f7

Please sign in to comment.