Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
362 B
17 lines
362 B
% Matlab binding test cases |
|
% Uses Matlab's builtin testing framework |
|
classdef OpenCVTest < matlab.unittest.TestCase |
|
|
|
methods(Test) |
|
|
|
% check if the autogenerated functions can be found |
|
function randExists(testcase) |
|
try |
|
cv.rand(); |
|
catch |
|
testcase.verifyFail(); |
|
end |
|
testcase.verifyTrue(true); |
|
end |
|
end |
|
end
|
|
|