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
ed64c560
Commit
ed64c560
authored
Jun 10, 2010
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
the new 3D object selection demo
parent
7c1eedfc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
CMakeLists.txt
samples/cpp/CMakeLists.txt
+7
-2
select3dobj.cpp
samples/cpp/select3dobj.cpp
+0
-0
No files found.
samples/cpp/CMakeLists.txt
View file @
ed64c560
...
...
@@ -29,8 +29,12 @@ if (BUILD_EXAMPLES)
MACRO
(
MY_DEFINE_EXAMPLE name srcs
)
add_executable
(
${
name
}
${
srcs
}
)
set_target_properties
(
${
name
}
PROPERTIES PROJECT_LABEL
"(EXAMPLE)
${
name
}
"
)
add_dependencies
(
${
name
}
opencv_core opencv_imgproc opencv_highgui opencv_ml opencv_video opencv_objdetect opencv_features2d opencv_calib3d opencv_contrib
)
target_link_libraries
(
${
name
}
${
OPENCV_LINKER_LIBS
}
opencv_core opencv_imgproc opencv_highgui opencv_ml opencv_video opencv_objdetect opencv_features2d opencv_calib3d opencv_contrib
)
add_dependencies
(
${
name
}
opencv_core opencv_imgproc
opencv_highgui opencv_ml opencv_video opencv_objdetect
opencv_features2d opencv_calib3d opencv_contrib
)
target_link_libraries
(
${
name
}
${
OPENCV_LINKER_LIBS
}
opencv_core
opencv_imgproc opencv_highgui opencv_ml opencv_video
opencv_objdetect opencv_features2d opencv_calib3d opencv_contrib
)
if
(
WIN32
)
install
(
TARGETS
${
name
}
...
...
@@ -38,6 +42,7 @@ if (BUILD_EXAMPLES)
endif
()
ENDMACRO
(
MY_DEFINE_EXAMPLE
)
MY_DEFINE_EXAMPLE
(
select3dobj select3dobj.cpp
)
MY_DEFINE_EXAMPLE
(
connected_components connected_components.cpp
)
MY_DEFINE_EXAMPLE
(
contours2 contours2.cpp
)
MY_DEFINE_EXAMPLE
(
keypoints_matching keypoints_matching.cpp
)
...
...
samples/cpp/select3dobj.cpp
0 → 100644
View file @
ed64c560
This diff is collapsed.
Click to expand it.
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