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
703f79b7
Commit
703f79b7
authored
May 15, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: add "bigdata" tests
parent
6582afcd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
38 deletions
+34
-38
test_io.cpp
modules/core/test/test_io.cpp
+8
-18
test_mat.cpp
modules/core/test/test_mat.cpp
+22
-0
test_thresh.cpp
modules/imgproc/test/test_thresh.cpp
+4
-20
No files found.
modules/core/test/test_io.cpp
View file @
703f79b7
...
...
@@ -522,33 +522,23 @@ protected:
TEST
(
Core_InputOutput
,
misc
)
{
CV_MiscIOTest
test
;
test
.
safe_run
();
}
/*class CV_BigMatrixIOTest : public cvtest::BaseTest
#if 0 // 4+ GB of data, 40+ GB of estimated result size, it is very slow
BIGDATA_TEST(Core_InputOutput, huge)
{
public:
CV_BigMatrixIOTest() {}
~CV_BigMatrixIOTest() {}
protected:
void run(int)
{
try
{
RNG& rng = theRNG();
int N = 1000, M = 1200000;
std::cout << "Allocating..." << std::endl;
Mat mat(M, N, CV_32F);
std::cout << "Initializing..." << std::endl;
rng.fill(mat, RNG::UNIFORM, 0, 1);
std::cout << "Writing..." << std::endl;
{
FileStorage fs(cv::tempfile(".xml"), FileStorage::WRITE);
fs << "mat" << mat;
fs.release();
}
catch(...)
{
ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
}
}
};
TEST(Core_InputOutput, huge) { CV_BigMatrixIOTest test; test.safe_run(); }
*/
}
#endif
TEST
(
Core_globbing
,
accuracy
)
{
...
...
modules/core/test/test_mat.cpp
View file @
703f79b7
...
...
@@ -1776,4 +1776,26 @@ TEST(Mat_, template_based_ptr)
#endif
BIGDATA_TEST
(
Mat
,
push_back_regression_4158
)
// memory usage: ~10.6 Gb
{
Mat
result
;
Mat
tail
(
100
,
500000
,
CV_32FC2
,
Scalar
(
1
,
2
));
tail
.
copyTo
(
result
);
for
(
int
i
=
1
;
i
<
15
;
i
++
)
{
result
.
push_back
(
tail
);
std
::
cout
<<
"i = "
<<
i
<<
" result = "
<<
result
.
size
()
<<
" used = "
<<
(
uint64
)
result
.
total
()
*
result
.
elemSize
()
*
(
1.0
/
(
1
<<
20
))
<<
" Mb"
<<
" allocated="
<<
(
uint64
)(
result
.
datalimit
-
result
.
datastart
)
*
(
1.0
/
(
1
<<
20
))
<<
" Mb"
<<
std
::
endl
;
}
for
(
int
i
=
0
;
i
<
15
;
i
++
)
{
Rect
roi
(
0
,
tail
.
rows
*
i
,
tail
.
cols
,
tail
.
rows
);
int
nz
=
countNonZero
(
result
(
roi
).
reshape
(
1
)
==
2
);
EXPECT_EQ
(
tail
.
total
(),
(
size_t
)
nz
)
<<
"i="
<<
i
;
}
}
}}
// namespace
modules/imgproc/test/test_thresh.cpp
View file @
703f79b7
...
...
@@ -420,23 +420,9 @@ void CV_ThreshTest::prepare_to_validation( int /*test_case_idx*/ )
TEST
(
Imgproc_Threshold
,
accuracy
)
{
CV_ThreshTest
test
;
test
.
safe_run
();
}
#if defined(_M_X64) || defined(__x86_64__)
TEST
(
Imgproc_Threshold
,
huge
)
/* since the test needs a lot of memory, enable it only on 64-bit Intel/AMD platforms, otherwise it may take a lot of time because of heavy swapping */
#else
TEST
(
DISABLED_Imgproc_Threshold
,
huge
)
#endif
BIGDATA_TEST
(
Imgproc_Threshold
,
huge
)
{
Mat
m
;
try
{
m
.
create
(
65000
,
40000
,
CV_8U
);
}
catch
(...)
{
}
if
(
!
m
.
empty
()
)
{
Mat
m
(
65000
,
40000
,
CV_8U
);
ASSERT_FALSE
(
m
.
isContinuous
());
uint64
i
,
n
=
(
uint64
)
m
.
rows
*
m
.
cols
;
...
...
@@ -444,10 +430,8 @@ TEST(DISABLED_Imgproc_Threshold, huge)
m
.
data
[
i
]
=
(
uchar
)(
i
&
255
);
cv
::
threshold
(
m
,
m
,
127
,
255
,
cv
::
THRESH_BINARY
);
int
nz
=
cv
::
countNonZero
(
m
);
ASSERT_EQ
(
nz
,
(
int
)(
n
/
2
));
}
// just skip the test if there is no enough memory
int
nz
=
cv
::
countNonZero
(
m
);
// FIXIT 'int' is not enough here (overflow is possible with other inputs)
ASSERT_EQ
((
uint64
)
nz
,
n
/
2
);
}
}}
// namespace
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