|
|
|
@ -1320,7 +1320,8 @@ TEST(Core_SparseMat, footprint) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TEST(Core_Mat_vector, OutputArray_create_getMat) |
|
|
|
|
// Can't fix without duty hacks or broken user code (PR #4159)
|
|
|
|
|
TEST(Core_Mat_vector, DISABLED_OutputArray_create_getMat) |
|
|
|
|
{ |
|
|
|
|
cv::Mat_<uchar> src_base(5, 1); |
|
|
|
|
std::vector<uchar> dst8; |
|
|
|
@ -1347,6 +1348,7 @@ TEST(Core_Mat_vector, copyTo_roi_column) |
|
|
|
|
|
|
|
|
|
Mat src_full(src_base); |
|
|
|
|
Mat src(src_full.col(0)); |
|
|
|
|
#if 0 // Can't fix without duty hacks or broken user code (PR #4159)
|
|
|
|
|
OutputArray _dst(dst1); |
|
|
|
|
{ |
|
|
|
|
_dst.create(src.rows, src.cols, src.type()); |
|
|
|
@ -1355,6 +1357,7 @@ TEST(Core_Mat_vector, copyTo_roi_column) |
|
|
|
|
EXPECT_EQ(src.cols, dst.cols); |
|
|
|
|
EXPECT_EQ(src.rows, dst.rows); |
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
std::vector<uchar> dst2; |
|
|
|
|
src.copyTo(dst2); |
|
|
|
|