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
6ead21b1
Commit
6ead21b1
authored
Feb 09, 2012
by
Alexander Reshetnikov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added licenses to some tests; updated new highgui tests
parent
c761996a
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
267 additions
and
9 deletions
+267
-9
test_homography.cpp
modules/calib3d/test/test_homography.cpp
+42
-2
test_countnonzero.cpp
modules/core/test/test_countnonzero.cpp
+42
-0
test_eigen.cpp
modules/core/test/test_eigen.cpp
+42
-0
test_framecount.cpp
modules/highgui/test/test_framecount.cpp
+44
-2
test_positioning.cpp
modules/highgui/test/test_positioning.cpp
+55
-5
test_boundingrect.cpp
modules/imgproc/test/test_boundingrect.cpp
+42
-0
No files found.
modules/calib3d/test/test_homography.cpp
View file @
6ead21b1
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "test_precomp.hpp"
#include <time.h>
...
...
@@ -412,8 +454,6 @@ void CV_HomographyTest::run(int)
}
Mat
tmp_mat_3d
=
H_res_32
*
src_mat_3d
;
for
(
size_t
l
=
0
;
l
<
COUNT_NORM_TYPES
;
++
l
)
if
(
cv
::
norm
(
dst_res_3d
,
dst_mat_3d
,
NORM_TYPE
[
l
])
-
cv
::
norm
(
noise_2d
,
NORM_TYPE
[
l
])
>
max_diff
)
{
...
...
modules/core/test/test_countnonzero.cpp
View file @
6ead21b1
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "test_precomp.hpp"
#include <time.h>
...
...
modules/core/test/test_eigen.cpp
View file @
6ead21b1
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "test_precomp.hpp"
#include <time.h>
...
...
modules/highgui/test/test_framecount.cpp
View file @
6ead21b1
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "test_precomp.hpp"
#include "opencv2/highgui/highgui.hpp"
...
...
@@ -20,7 +62,7 @@ void CV_FramecountTest::run(int)
const
string
src_dir
=
ts
->
get_data_path
();
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"
\n\n
Source files directory: %s
\n
"
,
(
src_dir
+
"../perf/
video/"
).
c_str
());
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"
\n\n
Source files directory: %s
\n
"
,
(
src_dir
+
"
video/"
).
c_str
());
int
failed
=
0
;
...
...
@@ -28,7 +70,7 @@ void CV_FramecountTest::run(int)
{
int
code
=
cvtest
::
TS
::
OK
;
string
file_path
=
src_dir
+
"
../perf/
video/big_buck_bunny."
+
ext
[
i
];
string
file_path
=
src_dir
+
"video/big_buck_bunny."
+
ext
[
i
];
CvCapture
*
cap
=
cvCreateFileCapture
(
file_path
.
c_str
());
if
(
!
cap
)
...
...
modules/highgui/test/test_positioning.cpp
View file @
6ead21b1
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "test_precomp.hpp"
#include "opencv2/highgui/highgui.hpp"
...
...
@@ -46,7 +88,6 @@ void CV_VideoPositioningTest::generate_idx_seq(CvCapture* cap, int method)
{
idx
.
clear
();
int
N
=
(
int
)
cvGetCaptureProperty
(
cap
,
CV_CAP_PROP_FRAME_COUNT
);
// cout << endl; cout << "Frame count: " << N << endl; cout << endl;
switch
(
method
)
{
case
PROGRESSIVE
:
...
...
@@ -78,9 +119,9 @@ void CV_VideoPositioningTest::run_test(int method)
{
const
string
&
src_dir
=
ts
->
get_data_path
();
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"
\n\n
Source files directory: %s
\n
"
,
(
src_dir
+
"../perf/
video/"
).
c_str
());
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"
\n\n
Source files directory: %s
\n
"
,
(
src_dir
+
"
video/"
).
c_str
());
const
string
ext
[]
=
{
/* "mov", */
"avi"
/*, "mp4", "mpg", "wmv"*/
};
const
string
ext
[]
=
{
"mov"
,
"avi"
,
"mp4"
,
"mpg"
,
"wmv"
};
size_t
n
=
sizeof
(
ext
)
/
sizeof
(
ext
[
0
]);
...
...
@@ -88,7 +129,7 @@ void CV_VideoPositioningTest::run_test(int method)
for
(
size_t
i
=
0
;
i
<
n
;
++
i
)
{
string
file_path
=
src_dir
+
"../perf/
video/big_buck_bunny."
+
ext
[
i
];
string
file_path
=
src_dir
+
"
video/big_buck_bunny."
+
ext
[
i
];
CvCapture
*
cap
=
cvCreateFileCapture
(
file_path
.
c_str
());
...
...
@@ -104,10 +145,12 @@ void CV_VideoPositioningTest::run_test(int method)
generate_idx_seq
(
cap
,
method
);
int
N
=
idx
.
size
(),
failed_frames
=
0
,
failed_positions
=
0
;
int
N
=
idx
.
size
(),
failed_frames
=
0
,
failed_positions
=
0
,
failed_iterations
=
0
;
for
(
int
j
=
0
;
j
<
N
;
++
j
)
{
bool
flag
=
false
;
cvSetCaptureProperty
(
cap
,
CV_CAP_PROP_POS_FRAMES
,
idx
.
at
(
j
));
IplImage
*
frame
=
cvRetrieveFrame
(
cap
);
...
...
@@ -121,6 +164,7 @@ void CV_VideoPositioningTest::run_test(int method)
failed_frames
++
;
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"
\n
Iteration: %d
\n\n
Error: cannot read a frame with index %d.
\n
"
,
j
,
idx
.
at
(
j
));
ts
->
set_failed_test_info
(
cvtest
::
TS
::
FAIL_EXCEPTION
);
flag
=
!
flag
;
}
int
val
=
(
int
)
cvGetCaptureProperty
(
cap
,
CV_CAP_PROP_POS_FRAMES
);
...
...
@@ -139,9 +183,15 @@ void CV_VideoPositioningTest::run_test(int method)
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"Required pos: %d
\n
Returned pos: %d
\n
"
,
idx
.
at
(
j
),
val
);
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"Error: required and returned positions are not matched.
\n
"
);
ts
->
set_failed_test_info
(
cvtest
::
TS
::
FAIL_INVALID_OUTPUT
);
if
(
!
flag
)
flag
=
!
flag
;
}
if
(
flag
)
failed_iterations
++
;
}
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"
\n
Successfull iterations: %d (%d%%)
\n
"
,
idx
.
size
()
-
failed_iterations
,
100
*
(
idx
.
size
()
-
failed_iterations
)
/
idx
.
size
());
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"Failed iterations: %d (%d%%)
\n
"
,
failed_iterations
,
100
*
failed_iterations
/
idx
.
size
());
if
(
failed_frames
||
failed_positions
)
{
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"
\n
FAILED
\n
----------
\n
"
);
failed_videos
++
;
...
...
modules/imgproc/test/test_boundingrect.cpp
View file @
6ead21b1
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "test_precomp.hpp"
#include <time.h>
...
...
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