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
02fe93a3
Commit
02fe93a3
authored
May 11, 2016
by
StevenPuttemans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add a cascade classifier model visualisation tool for master branch
parent
af64ecdf
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
1 deletion
+38
-1
CMakeLists.txt
apps/CMakeLists.txt
+1
-1
CMakeLists.txt
apps/visualisation/CMakeLists.txt
+37
-0
opencv_visualisation.cpp
apps/visualisation/opencv_visualisation.cpp
+0
-0
No files found.
apps/CMakeLists.txt
View file @
02fe93a3
...
...
@@ -4,4 +4,4 @@ link_libraries(${OPENCV_LINKER_LIBS})
add_subdirectory
(
traincascade
)
add_subdirectory
(
createsamples
)
add_subdirectory
(
annotation
)
add_subdirectory
(
interactive-calibr
ation
)
add_subdirectory
(
visualis
ation
)
apps/visualisation/CMakeLists.txt
0 → 100644
View file @
02fe93a3
SET
(
OPENCV_VISUALISATION_DEPS opencv_core opencv_highgui opencv_imgproc opencv_videoio opencv_imgcodecs
)
ocv_check_dependencies
(
${
OPENCV_VISUALISATION_DEPS
}
)
if
(
NOT OCV_DEPENDENCIES_FOUND
)
return
()
endif
()
project
(
visualisation
)
set
(
the_target opencv_visualisation
)
ocv_target_include_directories
(
${
the_target
}
PRIVATE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
"
${
OpenCV_SOURCE_DIR
}
/include/opencv"
)
ocv_target_include_modules_recurse
(
${
the_target
}
${
OPENCV_VISUALISATION_DEPS
}
)
file
(
GLOB SRCS *.cpp
)
set
(
visualisation_files
${
SRCS
}
)
ocv_add_executable
(
${
the_target
}
${
visualisation_files
}
)
ocv_target_link_libraries
(
${
the_target
}
${
OPENCV_VISUALISATION_DEPS
}
)
set_target_properties
(
${
the_target
}
PROPERTIES
DEBUG_POSTFIX
"
${
OPENCV_DEBUG_POSTFIX
}
"
ARCHIVE_OUTPUT_DIRECTORY
${
LIBRARY_OUTPUT_PATH
}
RUNTIME_OUTPUT_DIRECTORY
${
EXECUTABLE_OUTPUT_PATH
}
INSTALL_NAME_DIR lib
OUTPUT_NAME
"opencv_visualisation"
)
if
(
ENABLE_SOLUTION_FOLDERS
)
set_target_properties
(
${
the_target
}
PROPERTIES FOLDER
"applications"
)
endif
()
if
(
INSTALL_CREATE_DISTRIB
)
if
(
BUILD_SHARED_LIBS
)
install
(
TARGETS
${
the_target
}
RUNTIME DESTINATION
${
OPENCV_BIN_INSTALL_PATH
}
CONFIGURATIONS Release COMPONENT dev
)
endif
()
else
()
install
(
TARGETS
${
the_target
}
RUNTIME DESTINATION
${
OPENCV_BIN_INSTALL_PATH
}
COMPONENT dev
)
endif
()
apps/visualisation/opencv_visualisation.cpp
0 → 100644
View file @
02fe93a3
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