Skip to content

Commit

Permalink
aruco: correct test from latest OpenCV update
Browse files Browse the repository at this point in the history
  • Loading branch information
deadprogram committed Mar 28, 2024
1 parent 90a27a8 commit a828f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aruco_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func TestDetectMarkers(t *testing.T) {
defer detector.Close()

_, markerIds, _ := detector.DetectMarkers(img)
expected := []int{40, 98, 62, 23, 124, 203}
expected := []int{203, 124, 23, 40, 98, 62}
if !reflect.DeepEqual(markerIds, expected) {
t.Error(fmt.Sprintf("Marker id expected %v got %v", expected, markerIds))
}
Expand Down

0 comments on commit a828f67

Please sign in to comment.