summaryrefslogtreecommitdiff
path: root/ext/opencv/gsttemplatematch.cpp
Commit message (Collapse)AuthorAgeFilesLines
* opencv: allow per feature registrationStéphane Cerveau2021-03-231-18/+7
| | | | | | | | | | | | | Split plugin into features including dynamic types which can be indiviually registered during a static build. More details here: https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2038>
* doc: remove xml from commentsMathieu Duponchelle2019-05-291-3/+2
|
* opencv: port to c++Nicola Murino2019-02-021-79/+50
|
* meson: Add libsinc to the CFLAGSSebastian Dröge2018-12-171-1/+1
| | | | Otherwise gst-i18n-plugin.h can't be found.
* opencv: make compatible with opencv 4Nicola Murino2018-11-261-0/+15
| | | | Closed #826
* opencv: Fixup include to follow new standardNicolas Dufresne2018-08-021-0/+1
| | | | | | | | | | | 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.
* opencv: Bump requirement to 3.0.0+Nicolas Dufresne2018-08-021-3/+0
| | | | And removes all the ifdef code to support the 2.X APIs.
* opencv: Fix build for opencv >= 3.4.2Thibault Saunier2018-07-141-0/+3
| | | | | | | | | | 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); ^~~~~~
* bad: use new gst_element_class_add_static_pad_template()Vineeth TM2016-03-241-4/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=763081
* templatematch: remove useless functionThiago Santos2015-12-181-30/+0
|
* opencv: update templatematch to GstOpencvVideoFilterLuis de Bethencourt2015-12-181-49/+27
| | | | | | Update pyramidsegment to inherit from GstOpencvVideoFilter instead of from GstElement. This means less code and more uniformity with other OpenCV elements.
* opencv: clean includesLuis de Bethencourt2015-12-121-3/+0
| | | | | | 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.
* docs: update gst-launch-0.10 linesLuis de Bethencourt2015-11-191-1/+1
| | | | Update references to gst-launch-0.10 to gst-launch-1.0
* opencv: switch remaining to C++Luis de Bethencourt2015-10-141-0/+468
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