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
5a34b007
Commit
5a34b007
authored
Jul 12, 2013
by
hbristow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added more test cases
parent
603d9493
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
33 deletions
+43
-33
CMakeLists.txt
modules/matlab/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/matlab/test/CMakeLists.txt
+16
-21
OpenCVTest.m
modules/matlab/test/OpenCVTest.m
+23
-11
testsuite.m
modules/matlab/test/testsuite.m
+3
-0
No files found.
modules/matlab/CMakeLists.txt
View file @
5a34b007
...
...
@@ -153,7 +153,7 @@ add_custom_command(
${
CMAKE_CURRENT_SOURCE_DIR
}
/generator/gen_matlab.py
${
HDR_PARSER_PATH
}
${
opencv_hdrs
}
${
CMAKE_CURRENT_BINARY_DIR
}
COMMAND
${
CMAKE_COMMAND
}
-E touch
${
GENERATE_PROXY
}
COMMENT
"Generating
m
atlab source files"
COMMENT
"Generating
M
atlab source files"
)
# compile
...
...
modules/matlab/test/CMakeLists.txt
View file @
5a34b007
# compile the test sources
file
(
GLOB SOURCE_FILES
"*.cpp"
)
add_custom_target
(
opencv_test_matlab_sources
)
foreach
(
SOURCE_FILE
${
SOURCE_FILES
}
)
get_filename_component
(
FILENAME
${
SOURCE_FILE
}
NAME_WE
)
# compile the source file using mex
add_custom_command
(
TARGET opencv_test_matlab_sources PRE_BUILD
COMMAND echo
${
MATLAB_MEX_SCRIPT
}
${
MEX_INCLUDES
}
${
SOURCE_FILE
}
WORKING_DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
)
endforeach
()
set
(
TEST_PROXY
${
CMAKE_CURRENT_BINARY_DIR
}
/test.proxy
)
file
(
REMOVE
${
TEST_PROXY
}
)
# copy the test files into the build dir
file
(
GLOB TEST_FILES
"*.m"
)
foreach
(
TEST_FILE
${
TEST_FILES
}
)
add_custom_command
(
TARGET opencv_test_matlab_sources PRE_BUILD
COMMAND
${
CMAKE_COMMAND
}
-E
copy
${
TEST_FILE
}
${
CMAKE_CURRENT_BINARY_DIR
}
)
endforeach
()
# generate
# call the python executable to generate the Matlab gateways
add_custom_command
(
OUTPUT
${
TEST_PROXY
}
COMMAND
${
CMAKE_COMMAND
}
-E copy
${
CMAKE_CURRENT_SOURCE_DIR
}
/OpenCVTest.m
${
CMAKE_CURRENT_BINARY_DIR
}
COMMAND
${
CMAKE_COMMAND
}
-E copy
${
CMAKE_CURRENT_SOURCE_DIR
}
/testsuite.m
${
CMAKE_CURRENT_BINARY_DIR
}
COMMAND
${
CMAKE_COMMAND
}
-E touch
${
TEST_PROXY
}
COMMENT
"Building Matlab tests"
)
# targets
# opencv_matlab_sources --> opencv_matlab
add_custom_target
(
opencv_test_matlab ALL DEPENDS
${
TEST_PROXY
}
)
add_dependencies
(
opencv_test_matlab
${
the_module
}
)
# run the matlab test suite
add_test
(
opencv_test_matlab
...
...
modules/matlab/test/OpenCVTest.m
View file @
5a34b007
...
...
@@ -4,16 +4,6 @@ classdef OpenCVTest < matlab.unittest.TestCase
methods
(
Test
)
% check if the autogenerated functions can be found
function
functionsExist
(
testcase
)
try
cv
.
rand
();
catch
testcase
.
verifyFail
();
end
testcase
.
verifyTrue
(
true
);
end
% check that std exception is thrown
function
stdException
(
testcase
)
try
...
...
@@ -27,7 +17,13 @@ classdef OpenCVTest < matlab.unittest.TestCase
% check that OpenCV exceptions are correctly caught
function
cvException
(
testcase
)
testcase
.
verifyFail
();
try
cv_exception
();
testcase
.
verifyFail
();
catch
% TODO: Catch more specific exception
testcase
.
verifyTrue
(
true
);
end
end
% check that all exceptions are caught
...
...
@@ -41,5 +37,21 @@ classdef OpenCVTest < matlab.unittest.TestCase
end
end
% check that a matrix is correctly filled with random numbers
function
randomFill
(
testcase
)
sz
=
[
7
11
];
mat
=
zeros
(
sz
);
mat
=
cv
.
randn
(
mat
,
0
,
1
);
testcase
.
verifyEqual
(
size
(
mat
),
sz
,
'Matrix should not change size'
);
testcase
.
verifyNotEqual
(
mat
,
zeros
(
sz
),
'Matrix should be nonzero'
);
end
% check that cv::waitKey waits for at least specified time
function
waitKey
(
testcase
)
tic
();
cv
.
waitKey
(
500
);
elapsed
=
toc
();
testcase
.
verifyGreaterThan
(
elapsed
,
0.5
,
'Elapsed time should be at least 0.5 seconds'
);
end
end
end
modules/matlab/test/testsuite.m
View file @
5a34b007
% add the opencv bindings folder
addpath
..
%setup the tests
opencv_tests
=
OpenCVTest
();
...
...
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