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
a6e2acbf
Commit
a6e2acbf
authored
Aug 30, 2012
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added a few missing images for tutorials; integrated pull request #26
parent
3d4ca2d7
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
20 additions
and
7 deletions
+20
-7
CMakeLists.txt
3rdparty/libjasper/CMakeLists.txt
+2
-2
CMakeLists.txt
CMakeLists.txt
+4
-1
header_directive.png
doc/tutorials/ios/hello/images/header_directive.png
+0
-0
linking_opencv_ios.png
doc/tutorials/ios/hello/images/linking_opencv_ios.png
+0
-0
output.png
doc/tutorials/ios/hello/images/output.png
+0
-0
view_did_load.png
doc/tutorials/ios/hello/images/view_did_load.png
+0
-0
output.jpg
doc/tutorials/ios/image_manipulation/images/output.jpg
+0
-0
perf_calib3d.cpp
modules/gpu/perf/perf_calib3d.cpp
+13
-4
CMakeLists.txt
modules/highgui/CMakeLists.txt
+1
-0
No files found.
3rdparty/libjasper/CMakeLists.txt
View file @
a6e2acbf
...
...
@@ -19,9 +19,9 @@ file(GLOB lib_ext_hdrs jasper/*.h)
add_library
(
${
JASPER_LIBRARY
}
STATIC
${
lib_srcs
}
${
lib_hdrs
}
${
lib_ext_hdrs
}
)
if
(
MSVC
)
if
(
WIN32 AND NOT MINGW
)
add_definitions
(
-DJAS_WIN_MSVC_BUILD
)
endif
()
endif
(
WIN32 AND NOT MINGW
)
ocv_warnings_disable
(
CMAKE_C_FLAGS -Wno-implicit-function-declaration -Wno-uninitialized -Wmissing-prototypes -Wmissing-declarations -Wunused -Wshadow -Wsign-compare
)
ocv_warnings_disable
(
CMAKE_C_FLAGS /wd4013 /wd4018 /wd4101 /wd4244 /wd4267 /wd4715
)
# vs2005
...
...
CMakeLists.txt
View file @
a6e2acbf
...
...
@@ -337,9 +337,12 @@ include(cmake/OpenCVCompilerOptions.cmake REQUIRED)
# ----------------------------------------------------------------------------
if
(
MSVC
)
include
(
cmake/OpenCVCRTLinkage.cmake REQUIRED
)
add_definitions
(
-D_VARIADIC_MAX=10
)
endif
(
MSVC
)
if
(
WIN32 AND NOT MINGW
)
add_definitions
(
-D_VARIADIC_MAX=10
)
endif
(
WIN32 AND NOT MINGW
)
# ----------------------------------------------------------------------------
# CHECK FOR SYSTEM LIBRARIES, OPTIONS, ETC..
...
...
doc/tutorials/ios/hello/images/header_directive.png
0 → 100644
View file @
a6e2acbf
104 KB
doc/tutorials/ios/hello/images/linking_opencv_ios.png
0 → 100644
View file @
a6e2acbf
88.2 KB
doc/tutorials/ios/hello/images/output.png
0 → 100644
View file @
a6e2acbf
100 KB
doc/tutorials/ios/hello/images/view_did_load.png
0 → 100644
View file @
a6e2acbf
160 KB
doc/tutorials/ios/image_manipulation/images/output.jpg
0 → 100644
View file @
a6e2acbf
144 KB
modules/gpu/perf/perf_calib3d.cpp
View file @
a6e2acbf
...
...
@@ -11,7 +11,16 @@ namespace {
typedef
pair
<
string
,
string
>
pair_string
;
DEF_PARAM_TEST_1
(
ImagePair
,
pair_string
);
PERF_TEST_P
(
ImagePair
,
Calib3D_StereoBM
,
Values
(
make_pair
<
string
,
string
>
(
"gpu/perf/aloe.jpg"
,
"gpu/perf/aloeR.jpg"
)))
static
pair_string
make_string_pair
(
const
string
&
a
,
const
string
&
b
)
{
#ifdef _MSC_VER
return
pair
<
string
,
string
>
(
a
,
b
);
#else
return
make_pair
<
string
,
string
>
(
a
,
b
);
#endif
}
PERF_TEST_P
(
ImagePair
,
Calib3D_StereoBM
,
Values
(
make_string_pair
(
"gpu/perf/aloe.jpg"
,
"gpu/perf/aloeR.jpg"
)))
{
declare
.
time
(
5.0
);
...
...
@@ -57,7 +66,7 @@ PERF_TEST_P(ImagePair, Calib3D_StereoBM, Values(make_pair<string, string>("gpu/p
//////////////////////////////////////////////////////////////////////
// StereoBeliefPropagation
PERF_TEST_P
(
ImagePair
,
Calib3D_StereoBeliefPropagation
,
Values
(
make_
pair
<
string
,
string
>
(
"gpu/stereobp/aloe-L.png"
,
"gpu/stereobp/aloe-R.png"
)))
PERF_TEST_P
(
ImagePair
,
Calib3D_StereoBeliefPropagation
,
Values
(
make_
string_pair
(
"gpu/stereobp/aloe-L.png"
,
"gpu/stereobp/aloe-R.png"
)))
{
declare
.
time
(
10.0
);
...
...
@@ -93,7 +102,7 @@ PERF_TEST_P(ImagePair, Calib3D_StereoBeliefPropagation, Values(make_pair<string,
//////////////////////////////////////////////////////////////////////
// StereoConstantSpaceBP
PERF_TEST_P
(
ImagePair
,
Calib3D_StereoConstantSpaceBP
,
Values
(
make_
pair
<
string
,
string
>
(
"gpu/stereobm/aloe-L.png"
,
"gpu/stereobm/aloe-R.png"
)))
PERF_TEST_P
(
ImagePair
,
Calib3D_StereoConstantSpaceBP
,
Values
(
make_
string_pair
(
"gpu/stereobm/aloe-L.png"
,
"gpu/stereobm/aloe-R.png"
)))
{
declare
.
time
(
10.0
);
...
...
@@ -129,7 +138,7 @@ PERF_TEST_P(ImagePair, Calib3D_StereoConstantSpaceBP, Values(make_pair<string, s
//////////////////////////////////////////////////////////////////////
// DisparityBilateralFilter
PERF_TEST_P
(
ImagePair
,
Calib3D_DisparityBilateralFilter
,
Values
(
make_
pair
<
string
,
string
>
(
"gpu/stereobm/aloe-L.png"
,
"gpu/stereobm/aloe-disp.png"
)))
PERF_TEST_P
(
ImagePair
,
Calib3D_DisparityBilateralFilter
,
Values
(
make_
string_pair
(
"gpu/stereobm/aloe-L.png"
,
"gpu/stereobm/aloe-disp.png"
)))
{
const
cv
::
Mat
img
=
readImage
(
GetParam
().
first
,
cv
::
IMREAD_GRAYSCALE
);
ASSERT_FALSE
(
img
.
empty
());
...
...
modules/highgui/CMakeLists.txt
View file @
a6e2acbf
...
...
@@ -107,6 +107,7 @@ endif()
if
(
WIN32
)
list
(
APPEND highgui_srcs src/cap_vfw.cpp src/cap_cmu.cpp src/cap_dshow.cpp
)
list
(
APPEND HIGHGUI_LIBRARIES vfw32
)
endif
(
WIN32
)
if
(
HAVE_XINE
)
...
...
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