Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
445f44c1
Commit
445f44c1
authored
Oct 19, 2010
by
Alexander Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move failed tests to corresponding blacklists
parent
387f2040
Hide whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
74 additions
and
41 deletions
+74
-41
acameracalibration.cpp
tests/cv/src/acameracalibration.cpp
+2
-2
acameracalibration_artificial.cpp
tests/cv/src/acameracalibration_artificial.cpp
+1
-1
acamshift.cpp
tests/cv/src/acamshift.cpp
+1
-1
acascadeandhog.cpp
tests/cv/src/acascadeandhog.cpp
+2
-2
achesscorners.cpp
tests/cv/src/achesscorners.cpp
+1
-1
acolor.cpp
tests/cv/src/acolor.cpp
+1
-1
aconvhull.cpp
tests/cv/src/aconvhull.cpp
+1
-1
acornerssubpix.cpp
tests/cv/src/acornerssubpix.cpp
+1
-1
aestimaterigid.cpp
tests/cv/src/aestimaterigid.cpp
+1
-1
afeatures2d.cpp
tests/cv/src/afeatures2d.cpp
+5
-5
afundam.cpp
tests/cv/src/afundam.cpp
+1
-1
ahistograms.cpp
tests/cv/src/ahistograms.cpp
+1
-1
aimgwarp.cpp
tests/cv/src/aimgwarp.cpp
+5
-5
amotiontemplates.cpp
tests/cv/src/amotiontemplates.cpp
+1
-1
amser.cpp
tests/cv/src/amser.cpp
+1
-1
aposit.cpp
tests/cv/src/aposit.cpp
+1
-1
apyrsegmentation.cpp
tests/cv/src/apyrsegmentation.cpp
+1
-1
astereomatching.cpp
tests/cv/src/astereomatching.cpp
+1
-1
asubdivisions.cpp
tests/cv/src/asubdivisions.cpp
+1
-1
inpaint.cpp
tests/cv/src/inpaint.cpp
+1
-1
tsysa.cpp
tests/cv/src/tsysa.cpp
+32
-4
adatastruct.cpp
tests/cxcore/src/adatastruct.cpp
+1
-1
amath.cpp
tests/cxcore/src/amath.cpp
+1
-1
apca.cpp
tests/cxcore/src/apca.cpp
+1
-1
cxcoretest_main.cpp
tests/cxcore/src/cxcoretest_main.cpp
+4
-1
amltests.cpp
tests/ml/src/amltests.cpp
+2
-2
mltest_main.cpp
tests/ml/src/mltest_main.cpp
+3
-1
No files found.
tests/cv/src/acameracalibration.cpp
View file @
445f44c1
...
@@ -795,7 +795,7 @@ void CV_CameraCalibrationTest_CPP::project( int pointCount, CvPoint3D64f* _objec
...
@@ -795,7 +795,7 @@ void CV_CameraCalibrationTest_CPP::project( int pointCount, CvPoint3D64f* _objec
}
}
}
}
//
CV_CameraCalibrationTest_CPP calibrate_test_cpp;
CV_CameraCalibrationTest_CPP
calibrate_test_cpp
;
//----------------------------------------- CV_CalibrationMatrixValuesTest --------------------------------
//----------------------------------------- CV_CalibrationMatrixValuesTest --------------------------------
...
@@ -1656,7 +1656,7 @@ bool CV_StereoCalibrationTest_C::rectifyUncalibrated( const Mat& points1,
...
@@ -1656,7 +1656,7 @@ bool CV_StereoCalibrationTest_C::rectifyUncalibrated( const Mat& points1,
return
cvStereoRectifyUncalibrated
(
&
_pt1
,
&
_pt2
,
pF
,
imgSize
,
&
_H1
,
&
_H2
,
threshold
)
>
0
;
return
cvStereoRectifyUncalibrated
(
&
_pt1
,
&
_pt2
,
pF
,
imgSize
,
&
_H1
,
&
_H2
,
threshold
)
>
0
;
}
}
//
CV_StereoCalibrationTest_C stereocalib_test_c;
CV_StereoCalibrationTest_C
stereocalib_test_c
;
//-------------------------------- CV_StereoCalibrationTest_CPP ------------------------------
//-------------------------------- CV_StereoCalibrationTest_CPP ------------------------------
...
...
tests/cv/src/acameracalibration_artificial.cpp
View file @
445f44c1
...
@@ -425,4 +425,4 @@ protected:
...
@@ -425,4 +425,4 @@ protected:
}
}
};
};
//
CV_CalibrateCameraArtificialTest calibrateCameraArtificialTest;
CV_CalibrateCameraArtificialTest
calibrateCameraArtificialTest
;
tests/cv/src/acamshift.cpp
View file @
445f44c1
...
@@ -383,7 +383,7 @@ _exit_:
...
@@ -383,7 +383,7 @@ _exit_:
}
}
//
CV_CamShiftTest camshift_test;
CV_CamShiftTest
camshift_test
;
///////////////////////// MeanShift //////////////////////////////
///////////////////////// MeanShift //////////////////////////////
...
...
tests/cv/src/acascadeandhog.cpp
View file @
445f44c1
...
@@ -465,5 +465,5 @@ int CV_HOGDetectorTest::detectMultiScale( int di, const Mat& img,
...
@@ -465,5 +465,5 @@ int CV_HOGDetectorTest::detectMultiScale( int di, const Mat& img,
return
CvTS
::
OK
;
return
CvTS
::
OK
;
}
}
//
CV_CascadeDetectorTest cascadeTest("cascade-detector");
CV_CascadeDetectorTest
cascadeTest
(
"cascade-detector"
);
//
CV_HOGDetectorTest hogTest("hog-detector");
CV_HOGDetectorTest
hogTest
(
"hog-detector"
);
tests/cv/src/achesscorners.cpp
View file @
445f44c1
...
@@ -408,6 +408,6 @@ bool CV_ChessboardDetectorTest::checkByGenerator()
...
@@ -408,6 +408,6 @@ bool CV_ChessboardDetectorTest::checkByGenerator()
return
res
;
return
res
;
}
}
//
CV_ChessboardDetectorTest chessboard_detector_test;
CV_ChessboardDetectorTest
chessboard_detector_test
;
/* End of file. */
/* End of file. */
tests/cv/src/acolor.cpp
View file @
445f44c1
...
@@ -1375,7 +1375,7 @@ void CV_ColorLuvTest::convert_row_abc2bgr_32f_c3( const float* src_row, float* d
...
@@ -1375,7 +1375,7 @@ void CV_ColorLuvTest::convert_row_abc2bgr_32f_c3( const float* src_row, float* d
}
}
//
CV_ColorLuvTest color_luv_test;
CV_ColorLuvTest
color_luv_test
;
...
...
tests/cv/src/aconvhull.cpp
View file @
445f44c1
...
@@ -789,7 +789,7 @@ _exit_:
...
@@ -789,7 +789,7 @@ _exit_:
}
}
//
CV_MinAreaRectTest shape_minarearect_test;
CV_MinAreaRectTest
shape_minarearect_test
;
/****************************************************************************************\
/****************************************************************************************\
...
...
tests/cv/src/acornerssubpix.cpp
View file @
445f44c1
...
@@ -240,6 +240,6 @@ void CV_ChessboardSubpixelTest::generateIntrinsicParams()
...
@@ -240,6 +240,6 @@ void CV_ChessboardSubpixelTest::generateIntrinsicParams()
distortion_coeffs_
=
(
Mat_
<
double
>
(
1
,
5
)
<<
k1
,
k2
,
p1
,
p2
,
k3
);
distortion_coeffs_
=
(
Mat_
<
double
>
(
1
,
5
)
<<
k1
,
k2
,
p1
,
p2
,
k3
);
}
}
//
CV_ChessboardSubpixelTest chessboard_subpixel_test;
CV_ChessboardSubpixelTest
chessboard_subpixel_test
;
/* End of file. */
/* End of file. */
tests/cv/src/aestimaterigid.cpp
View file @
445f44c1
...
@@ -172,5 +172,5 @@ void CV_RigidTransform_Test::run( int start_from )
...
@@ -172,5 +172,5 @@ void CV_RigidTransform_Test::run( int start_from )
ts
->
set_failed_test_info
(
CvTS
::
OK
);
ts
->
set_failed_test_info
(
CvTS
::
OK
);
}
}
//
CV_RigidTransform_Test CV_RigidTransform_test;
CV_RigidTransform_Test
CV_RigidTransform_test
;
tests/cv/src/afeatures2d.cpp
View file @
445f44c1
...
@@ -172,7 +172,7 @@ CV_FeatureDetectorTest harrisTest( "detector_harris", createFeatureDetector("HAR
...
@@ -172,7 +172,7 @@ CV_FeatureDetectorTest harrisTest( "detector_harris", createFeatureDetector("HAR
CV_FeatureDetectorTest
mserTest
(
"detector_mser"
,
createFeatureDetector
(
"MSER"
)
);
CV_FeatureDetectorTest
mserTest
(
"detector_mser"
,
createFeatureDetector
(
"MSER"
)
);
CV_FeatureDetectorTest
siftTest
(
"detector_sift"
,
createFeatureDetector
(
"SIFT"
)
);
CV_FeatureDetectorTest
siftTest
(
"detector_sift"
,
createFeatureDetector
(
"SIFT"
)
);
CV_FeatureDetectorTest
starTest
(
"detector_star"
,
createFeatureDetector
(
"STAR"
)
);
CV_FeatureDetectorTest
starTest
(
"detector_star"
,
createFeatureDetector
(
"STAR"
)
);
//
CV_FeatureDetectorTest surfTest( "detector_surf", createFeatureDetector("SURF") );
CV_FeatureDetectorTest
surfTest
(
"detector_surf"
,
createFeatureDetector
(
"SURF"
)
);
/****************************************************************************************\
/****************************************************************************************\
* Regression tests for descriptor extractors. *
* Regression tests for descriptor extractors. *
...
@@ -320,10 +320,10 @@ public:
...
@@ -320,10 +320,10 @@ public:
}
}
};
};
//
CV_DescriptorExtractorTest siftDescriptorTest( "descriptor_sift", 0.001f,
CV_DescriptorExtractorTest
siftDescriptorTest
(
"descriptor_sift"
,
0.001
f
,
//
createDescriptorExtractor("SIFT"), 8.06652f );
createDescriptorExtractor
(
"SIFT"
),
8.06652
f
);
//
CV_DescriptorExtractorTest surfDescriptorTest( "descriptor_surf", 0.004f,
CV_DescriptorExtractorTest
surfDescriptorTest
(
"descriptor_surf"
,
0.004
f
,
//
createDescriptorExtractor("SURF"), 0.147372f );
createDescriptorExtractor
(
"SURF"
),
0.147372
f
);
//CV_DescriptorExtractorTest siftDescriptorTest( "descriptor_opponent_sift", 0.001f,
//CV_DescriptorExtractorTest siftDescriptorTest( "descriptor_opponent_sift", 0.001f,
// createDescriptorExtractor("OpponentSIFT"), 8.06652f );
// createDescriptorExtractor("OpponentSIFT"), 8.06652f );
//CV_DescriptorExtractorTest surfDescriptorTest( "descriptor_opponent_surf", 0.004f,
//CV_DescriptorExtractorTest surfDescriptorTest( "descriptor_opponent_surf", 0.004f,
...
...
tests/cv/src/afundam.cpp
View file @
445f44c1
...
@@ -1096,7 +1096,7 @@ void CV_FundamentalMatTest::prepare_to_validation( int test_case_idx )
...
@@ -1096,7 +1096,7 @@ void CV_FundamentalMatTest::prepare_to_validation( int test_case_idx )
}
}
//
CV_FundamentalMatTest fmatrix_test;
CV_FundamentalMatTest
fmatrix_test
;
/********************************** convert homogeneous *********************************/
/********************************** convert homogeneous *********************************/
...
...
tests/cv/src/ahistograms.cpp
View file @
445f44c1
...
@@ -1569,7 +1569,7 @@ int CV_CalcBackProjectTest::validate_test_results( int /*test_case_idx*/ )
...
@@ -1569,7 +1569,7 @@ int CV_CalcBackProjectTest::validate_test_results( int /*test_case_idx*/ )
}
}
//
CV_CalcBackProjectTest hist_backproj_test;
CV_CalcBackProjectTest
hist_backproj_test
;
////////////// cvCalcBackProjectPatch //////////////
////////////// cvCalcBackProjectPatch //////////////
...
...
tests/cv/src/aimgwarp.cpp
View file @
445f44c1
...
@@ -426,7 +426,7 @@ void CV_ResizeTest::prepare_to_validation( int /*test_case_idx*/ )
...
@@ -426,7 +426,7 @@ void CV_ResizeTest::prepare_to_validation( int /*test_case_idx*/ )
cvReleaseMat
(
&
y_idx
);
cvReleaseMat
(
&
y_idx
);
}
}
//
CV_ResizeTest warp_resize_test;
CV_ResizeTest
warp_resize_test
;
/////////////////////////
/////////////////////////
...
@@ -753,7 +753,7 @@ void CV_WarpAffineTest::prepare_to_validation( int /*test_case_idx*/ )
...
@@ -753,7 +753,7 @@ void CV_WarpAffineTest::prepare_to_validation( int /*test_case_idx*/ )
}
}
//
CV_WarpAffineTest warp_affine_test;
CV_WarpAffineTest
warp_affine_test
;
...
@@ -965,7 +965,7 @@ void CV_WarpPerspectiveTest::prepare_to_validation( int /*test_case_idx*/ )
...
@@ -965,7 +965,7 @@ void CV_WarpPerspectiveTest::prepare_to_validation( int /*test_case_idx*/ )
}
}
//
CV_WarpPerspectiveTest warp_perspective_test;
CV_WarpPerspectiveTest
warp_perspective_test
;
...
@@ -1191,7 +1191,7 @@ void CV_RemapTest::prepare_to_validation( int /*test_case_idx*/ )
...
@@ -1191,7 +1191,7 @@ void CV_RemapTest::prepare_to_validation( int /*test_case_idx*/ )
}
}
//
CV_RemapTest remap_test;
CV_RemapTest
remap_test
;
////////////////////////////// undistort /////////////////////////////////
////////////////////////////// undistort /////////////////////////////////
...
@@ -1435,7 +1435,7 @@ void CV_UndistortTest::prepare_to_validation( int /*test_case_idx*/ )
...
@@ -1435,7 +1435,7 @@ void CV_UndistortTest::prepare_to_validation( int /*test_case_idx*/ )
}
}
//
CV_UndistortTest undistort_test;
CV_UndistortTest
undistort_test
;
...
...
tests/cv/src/amotiontemplates.cpp
View file @
445f44c1
...
@@ -635,5 +635,5 @@ int CV_MHIGlobalOrientTest::validate_test_results( int test_case_idx )
...
@@ -635,5 +635,5 @@ int CV_MHIGlobalOrientTest::validate_test_results( int test_case_idx )
}
}
//
CV_MHIGlobalOrientTest mhi_global_orient_test;
CV_MHIGlobalOrientTest
mhi_global_orient_test
;
tests/cv/src/amser.cpp
View file @
445f44c1
...
@@ -198,4 +198,4 @@ void CV_MserTest::run(int)
...
@@ -198,4 +198,4 @@ void CV_MserTest::run(int)
cvReleaseImage
(
&
img
);
cvReleaseImage
(
&
img
);
}
}
//
CV_MserTest mser_test;
CV_MserTest
mser_test
;
tests/cv/src/aposit.cpp
View file @
445f44c1
...
@@ -216,6 +216,6 @@ _exit_:
...
@@ -216,6 +216,6 @@ _exit_:
ts
->
set_failed_test_info
(
code
);
ts
->
set_failed_test_info
(
code
);
}
}
//
CV_POSITTest posit_test;
CV_POSITTest
posit_test
;
/* End of file. */
/* End of file. */
tests/cv/src/apyrsegmentation.cpp
View file @
445f44c1
...
@@ -194,6 +194,6 @@ _exit_:
...
@@ -194,6 +194,6 @@ _exit_:
ts
->
set_failed_test_info
(
code
);
ts
->
set_failed_test_info
(
code
);
}
}
//
CV_PyrSegmentationTest pyr_segmentation_test;
CV_PyrSegmentationTest
pyr_segmentation_test
;
/* End of file. */
/* End of file. */
tests/cv/src/astereomatching.cpp
View file @
445f44c1
...
@@ -767,7 +767,7 @@ protected:
...
@@ -767,7 +767,7 @@ protected:
};
};
//
CV_StereoGCTest stereoGC;
CV_StereoGCTest
stereoGC
;
//----------------------------------- StereoSGBM test -----------------------------------------------------
//----------------------------------- StereoSGBM test -----------------------------------------------------
...
...
tests/cv/src/asubdivisions.cpp
View file @
445f44c1
...
@@ -293,7 +293,7 @@ _exit_:
...
@@ -293,7 +293,7 @@ _exit_:
return
code
;
return
code
;
}
}
//
CV_SubdivTest subdiv_test;
CV_SubdivTest
subdiv_test
;
/* End of file. */
/* End of file. */
tests/cv/src/inpaint.cpp
View file @
445f44c1
...
@@ -119,4 +119,4 @@ void CV_InpaintTest::run( int )
...
@@ -119,4 +119,4 @@ void CV_InpaintTest::run( int )
ts
->
set_failed_test_info
(
CvTS
::
OK
);
ts
->
set_failed_test_info
(
CvTS
::
OK
);
}
}
//
CV_InpaintTest inpaint_test;
CV_InpaintTest
inpaint_test
;
tests/cv/src/tsysa.cpp
View file @
445f44c1
...
@@ -45,10 +45,38 @@ CvTS test_system("cv");
...
@@ -45,10 +45,38 @@ CvTS test_system("cv");
const
char
*
blacklist
[]
=
const
char
*
blacklist
[]
=
{
{
"morph-ex"
,
"morph-ex"
,
//ticket 612
"operations"
,
"operations"
,
//ticket 613
"stereobm"
,
"stereobm"
,
//ticket 614
"stereosgbm"
,
"stereosgbm"
,
//ticket 615
"cascade-detector"
,
//ticket 432
"hog-detector"
,
//ticket 428
"warp-resize"
,
//ticket 429
"posit"
,
//ticket 430
"optflow-estimate-rigid"
,
//ticket 433
"shape-minarearect"
,
//ticket 436
"MSER"
,
//ticket 437
"stereogc"
,
//ticket 439
"subdiv"
,
//ticket 454
"mhi-global"
,
//ticket 457
"segmentation-pyramid"
,
//ticket 464
"calibrate-camera-artificial"
,
//ticket 472
"chessboard-subpixel"
,
//ticket 473
"track-camshift"
,
//ticket 483
"_3d-fundam"
,
//ticket 484
"color-luv"
,
//ticket 502
"calibrate-camera-cpp"
,
//ticket 564
"calibrate-stereo-c"
,
//ticket 565
"descriptor_sift"
,
//ticket 567
"descriptor_surf"
,
//ticket 568
"chessboard-detector"
,
//ticket 569
"inpaint"
,
//ticket 570
"warp-affine"
,
//ticket 572
"warp-perspective"
,
//ticket 575
"warp-remap"
,
//ticket 576
"warp-undistort"
,
//ticket 577
"detector_surf"
,
//ticket 578
"hist-backproj"
,
//ticket 579
0
0
};
};
...
...
tests/cxcore/src/adatastruct.cpp
View file @
445f44c1
...
@@ -2333,6 +2333,6 @@ void CxCore_GraphScanTest::run( int )
...
@@ -2333,6 +2333,6 @@ void CxCore_GraphScanTest::run( int )
cvReleaseMat
(
&
edge_mask
);
cvReleaseMat
(
&
edge_mask
);
}
}
//
CxCore_GraphScanTest graphscan_test;
CxCore_GraphScanTest
graphscan_test
;
/* End of file. */
/* End of file. */
tests/cxcore/src/amath.cpp
View file @
445f44c1
...
@@ -2618,7 +2618,7 @@ void CxCore_InvertTest::prepare_to_validation( int )
...
@@ -2618,7 +2618,7 @@ void CxCore_InvertTest::prepare_to_validation( int )
cvTsSetIdentity
(
&
test_mat
[
REF_OUTPUT
][
0
],
cvScalarAll
(
1.
)
);
cvTsSetIdentity
(
&
test_mat
[
REF_OUTPUT
][
0
],
cvScalarAll
(
1.
)
);
}
}
//
CxCore_InvertTest invert_test;
CxCore_InvertTest
invert_test
;
///////////////// solve /////////////////////
///////////////// solve /////////////////////
...
...
tests/cxcore/src/apca.cpp
View file @
445f44c1
...
@@ -305,4 +305,4 @@ exit_func:
...
@@ -305,4 +305,4 @@ exit_func:
#endif
#endif
//
CV_PCATest pca_test;
CV_PCATest
pca_test
;
tests/cxcore/src/cxcoretest_main.cpp
View file @
445f44c1
...
@@ -45,7 +45,10 @@ CvTS test_system("core");
...
@@ -45,7 +45,10 @@ CvTS test_system("core");
const
char
*
blacklist
[]
=
const
char
*
blacklist
[]
=
{
{
//"matrix-invert",
"matrix-dotproduct"
,
//ticket 447
"ds-graphscan"
,
//ticket 504
"matrix-invert"
,
//ticket 536
"pca"
,
//ticket 566
0
0
};
};
...
...
tests/ml/src/amltests.cpp
View file @
445f44c1
...
@@ -116,8 +116,8 @@ int CV_AMLTest::validate_test_results( int testCaseIdx )
...
@@ -116,8 +116,8 @@ int CV_AMLTest::validate_test_results( int testCaseIdx )
}
}
CV_AMLTest
amldtree
(
CV_DTREE
,
"adtree"
);
CV_AMLTest
amldtree
(
CV_DTREE
,
"adtree"
);
//
CV_AMLTest amlboost( CV_BOOST, "aboost" );
CV_AMLTest
amlboost
(
CV_BOOST
,
"aboost"
);
//
CV_AMLTest amlrtrees( CV_RTREES, "artrees" );
CV_AMLTest
amlrtrees
(
CV_RTREES
,
"artrees"
);
//CV_AMLTest amlertrees( CV_ERTREES, "aertrees" );
//CV_AMLTest amlertrees( CV_ERTREES, "aertrees" );
/* End of file. */
/* End of file. */
tests/ml/src/mltest_main.cpp
View file @
445f44c1
...
@@ -45,7 +45,9 @@ CvTS test_system("ml");
...
@@ -45,7 +45,9 @@ CvTS test_system("ml");
const
char
*
blacklist
[]
=
const
char
*
blacklist
[]
=
{
{
"kmeans"
,
"kmeans"
,
//ticket 616
"artrees"
,
//ticket 460
"aboost"
,
//ticket 474
0
0
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment