| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Otherwise gst-i18n-plugin.h can't be found.
|
|
|
|
| |
Closed #826
|
|
|
|
|
|
|
|
|
|
|
| |
This uses the new path for OpenCV headers. OpenCV now have
master headers files per modules, which reduce the amount of
required includes. Note that HIGHGUI was included to get the
imgcodecs includes, which I fixed, though the master header is
missing the C headers, so I included that directly. All the
image stuff should be ported to C++ eventually. Finally, this
patch also update the header checks to reflect the modules that
are really being used.
|
|
|
|
| |
And removes all the ifdef code to support the 2.X APIs.
|
|
|
|
|
|
|
|
|
|
| |
The `CV_RGB` macro is now in `imgproc.hpp`.
Fixes:
../subprojects/gst-plugins-bad/ext/opencv/gsthanddetect.cpp:497:40: error: ‘CV_RGB’ was not declared in this scope
cvCircle (img, center, radius, CV_RGB (0, 0, 200), 1, 8, 0);
^~~~~~
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=763081
|
| |
|
|
|
|
|
|
| |
Update pyramidsegment to inherit from GstOpencvVideoFilter instead of from
GstElement. This means less code and more uniformity with other OpenCV
elements.
|
|
|
|
|
|
| |
The opencv element includes were full of duplicates and uneeded headers.
For example a few elements that stopped using gstcvopencvutils still
included that header file.
|
|
|
|
| |
Update references to gst-launch-0.10 to gst-launch-1.0
|
|
Switch remaining C files to C++ for consistency with other OpeCV elements,
and support of the new 2.4.11 API.
https://bugzilla.gnome.org/show_bug.cgi?id=754148
|