Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
5ea1694e
Commit
5ea1694e
authored
Aug 13, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OpenCV example: move to C++ and opencv2 APIs
parent
8acf84f1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
configure.ac
configure.ac
+1
-1
modules/video_filter/Modules.am
modules/video_filter/Modules.am
+1
-1
modules/video_filter/opencv_example.cpp
modules/video_filter/opencv_example.cpp
+3
-2
No files found.
configure.ac
View file @
5ea1694e
...
...
@@ -1749,7 +1749,7 @@ PKG_ENABLE_MODULES_VLC([BLURAY], [libbluray], [libbluray >= 0.2.1], (libbluray f
dnl
dnl OpenCV wrapper and example filters
dnl
PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example opencv_wrapper], [opencv], (OpenCV (computer vision) filter), [auto])
PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example opencv_wrapper], [opencv
> 2.0
], (OpenCV (computer vision) filter), [auto])
dnl
...
...
modules/video_filter/Modules.am
View file @
5ea1694e
...
...
@@ -62,7 +62,7 @@ SOURCES_gradient = gradient.c
SOURCES_ball = ball.c
SOURCES_panoramix = panoramix.c
SOURCES_opencv_wrapper = opencv_wrapper.c
SOURCES_opencv_example = opencv_example.c filter_event_info.h
SOURCES_opencv_example = opencv_example.c
pp
filter_event_info.h
SOURCES_rotate = rotate.c
SOURCES_puzzle = puzzle.c
SOURCES_colorthres = colorthres.c
...
...
modules/video_filter/opencv_example.c
→
modules/video_filter/opencv_example.c
pp
View file @
5ea1694e
...
...
@@ -39,8 +39,9 @@
#include <vlc_image.h>
#include "filter_event_info.h"
#include <cxcore.h>
#include <cv.h>
#include <opencv2/core/core_c.h>
#include <opencv2/core/core.hpp>
#include <opencv2/objdetect/objdetect.hpp>
/*****************************************************************************
* filter_sys_t : filter descriptor
...
...
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