Skip to content

Commit bf95e79

Browse files
committed
Merge pull request #3695 from vpisarev:disabled_aruco_tutorial_tests
2 parents 6b5142f + b9a9931 commit bf95e79

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

modules/aruco/test/test_aruco_tutorial.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace opencv_test { namespace {
1010

1111
TEST(CV_ArucoTutorial, can_find_singlemarkersoriginal)
1212
{
13-
string img_path = cvtest::findDataFile("aruco/singlemarkersoriginal.jpg", false);
13+
string img_path = cvtest::findDataFile("aruco/singlemarkersoriginal.jpg");
1414
Mat image = imread(img_path);
1515
aruco::ArucoDetector detector(aruco::getPredefinedDictionary(aruco::DICT_6X6_250));
1616

@@ -44,9 +44,9 @@ TEST(CV_ArucoTutorial, can_find_singlemarkersoriginal)
4444

4545
TEST(CV_ArucoTutorial, can_find_gboriginal)
4646
{
47-
string imgPath = cvtest::findDataFile("aruco/gboriginal.jpg", false);
47+
string imgPath = cvtest::findDataFile("aruco/gboriginal.jpg");
4848
Mat image = imread(imgPath);
49-
string dictPath = cvtest::findDataFile("aruco/tutorial_dict.yml", false);
49+
string dictPath = cvtest::findDataFile("aruco/tutorial_dict.yml");
5050
aruco::Dictionary dictionary;
5151

5252
FileStorage fs(dictPath, FileStorage::READ);
@@ -99,7 +99,7 @@ TEST(CV_ArucoTutorial, can_find_gboriginal)
9999

100100
TEST(CV_ArucoTutorial, can_find_choriginal)
101101
{
102-
string imgPath = cvtest::findDataFile("aruco/choriginal.jpg", false);
102+
string imgPath = cvtest::findDataFile("aruco/choriginal.jpg");
103103
Mat image = imread(imgPath);
104104
aruco::ArucoDetector detector(aruco::getPredefinedDictionary(aruco::DICT_6X6_250));
105105

@@ -138,7 +138,7 @@ TEST(CV_ArucoTutorial, can_find_choriginal)
138138

139139
TEST(CV_ArucoTutorial, can_find_chocclusion)
140140
{
141-
string imgPath = cvtest::findDataFile("aruco/chocclusion_original.jpg", false);
141+
string imgPath = cvtest::findDataFile("aruco/chocclusion_original.jpg");
142142
Mat image = imread(imgPath);
143143
aruco::ArucoDetector detector(aruco::getPredefinedDictionary(aruco::DICT_6X6_250));
144144

@@ -176,15 +176,15 @@ TEST(CV_ArucoTutorial, can_find_chocclusion)
176176

177177
TEST(CV_ArucoTutorial, can_find_diamondmarkers)
178178
{
179-
string imgPath = cvtest::findDataFile("aruco/diamondmarkers.jpg", false);
179+
string imgPath = cvtest::findDataFile("aruco/diamondmarkers.jpg");
180180
Mat image = imread(imgPath);
181181

182-
string dictPath = cvtest::findDataFile("aruco/tutorial_dict.yml", false);
182+
string dictPath = cvtest::findDataFile("aruco/tutorial_dict.yml");
183183
aruco::Dictionary dictionary;
184184
FileStorage fs(dictPath, FileStorage::READ);
185185
dictionary.aruco::Dictionary::readDictionary(fs.root()); // set marker from tutorial_dict.yml
186186

187-
string detectorPath = cvtest::findDataFile("aruco/detector_params.yml", false);
187+
string detectorPath = cvtest::findDataFile("aruco/detector_params.yml");
188188
fs = FileStorage(detectorPath, FileStorage::READ);
189189
aruco::DetectorParameters detectorParams;
190190
detectorParams.readDetectorParameters(fs.root());

0 commit comments

Comments
 (0)