All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] Video Analytics Demo
@ 2016-01-29 15:10 Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 1/7] qt-opencv-opencl-opengl-multithreaded: Add version 1.3.3 Jacob Stiffler
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Jacob Stiffler @ 2016-01-29 15:10 UTC (permalink / raw
  To: meta-arago

Fully integrate the qt-opencv-opencl-opengl video analytics demo into
the SDK.

Jacob Stiffler (7):
  qt-opencv-opencl-opengl-multithreaded: Add version 1.3.3
  arago-source-ipk: Enable qt-opencv-opencl-opengl-multithreaded-src
  matrix-gui-apps-git: Bump SRCREV for multiple fixes
  matrix-gui-video-analytics-demos: Add demo and submenu
  packagegroup-arago-tisdk-multimedia*: Add
    qt-opencv-opencl-opengl-multithreaded
  packagegroup-arago-tisdk-matrix: Add video analytics demo
  ti-tisdk-makefile: Add video analytics target

 .../conf/distro/arago-source-ipk.conf              |  3 ++
 .../packagegroup-arago-tisdk-matrix.bb             |  3 +-
 ...packagegroup-arago-tisdk-multimedia-sdk-host.bb |  6 +++-
 ...ckagegroup-arago-tisdk-multimedia-sdk-target.bb |  3 +-
 .../packagegroup-arago-tisdk-multimedia.bb         |  3 +-
 .../Makefile_qt-opencv-opencl-opengl-multithreaded | 24 +++++++++++++
 .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |  4 ++-
 .../recipes-core/matrix/matrix-gui-apps-git.inc    |  4 +--
 .../recipes-core/matrix/matrix-gui-submenus_2.0.bb |  5 ++-
 .../matrix/matrix-gui-video-analytics-demos_2.0.bb | 29 ++++++++++++++++
 .../qt-opencv-opencl-opengl-multithreaded_git.bb   | 39 ++++++++++++++++++++++
 11 files changed, 115 insertions(+), 8 deletions(-)
 create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qt-opencv-opencl-opengl-multithreaded
 create mode 100644 meta-arago-extras/recipes-core/matrix/matrix-gui-video-analytics-demos_2.0.bb
 create mode 100644 meta-arago-extras/recipes-demo-applications/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb

-- 
1.9.1



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 1/7] qt-opencv-opencl-opengl-multithreaded: Add version 1.3.3
  2016-01-29 15:10 [PATCH 0/7] Video Analytics Demo Jacob Stiffler
@ 2016-01-29 15:10 ` Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 2/7] arago-source-ipk: Enable qt-opencv-opencl-opengl-multithreaded-src Jacob Stiffler
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Jacob Stiffler @ 2016-01-29 15:10 UTC (permalink / raw
  To: meta-arago

    This example demonstrates the capablity of AM57x for video analytics.
    It builds on Qt and utilizes various IP blocks on AM57x:

    * Capture Driver: v4l2 camera capture
    * Open CV on A15: gesture recognition
    * Open CL for C66x: wave simulation algorithm
    * Open GL for SGX: hardware accelerated graphics rendering
    * Display Driver: DSS for display <br>

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../qt-opencv-opencl-opengl-multithreaded_git.bb   | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 meta-arago-extras/recipes-demo-applications/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb

diff --git a/meta-arago-extras/recipes-demo-applications/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb b/meta-arago-extras/recipes-demo-applications/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb
new file mode 100644
index 0000000..6785bdc
--- /dev/null
+++ b/meta-arago-extras/recipes-demo-applications/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb
@@ -0,0 +1,39 @@
+DESCRIPTION = "A simple multithreaded OpenCV example application using the Qt framework"
+HOMEPAGE = "https://github.com/devernay/qt-opencv-multithreaded"
+SECTION = "multimedia"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=e28b998056a1a513e87be11c5045e85b"
+
+DEPENDS += "opencv opencl virtual/egl ti-cgt6x-native clocl-native dsplib-c66x"
+
+COMPATIBLE_MACHINE = "dra7xx"
+
+PV = "1.3.3"
+PR = "r1"
+
+BRANCH = "master"
+SRC_URI = "git://git.ti.com/apps/qt-opencv-opencl-opengl-multithreaded.git;protocol=git;branch=${BRANCH}"
+
+SRCREV = "f679a74230dbf7ace66ef06f79e02ac9abfc7d58"
+
+S = "${WORKDIR}/git"
+
+inherit qt-provider
+
+export TARGET_ROOTDIR = "${STAGING_DIR_HOST}"
+export TI_OCL_CGT_INSTALL = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x"
+export TI_DSPLIB_DIR = "${STAGING_DIR_TARGET}/usr/share/ti/ti-dsplib-c66x-tree"
+
+do_compile() {
+    cd ${S}
+    oe_runmake -f oclMakefile
+    cd -
+    oe_runmake
+}
+
+do_install() {
+    install -d ${D}/usr/bin
+    install -m 755 qt-opencv-opencl-opengl-multithreaded ${D}/usr/bin/qt-opencv-opencl-opengl-multithreaded
+}
+
+RDEPENDS_${PN} += "opencv opencl-runtime"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/7] arago-source-ipk: Enable qt-opencv-opencl-opengl-multithreaded-src
  2016-01-29 15:10 [PATCH 0/7] Video Analytics Demo Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 1/7] qt-opencv-opencl-opengl-multithreaded: Add version 1.3.3 Jacob Stiffler
@ 2016-01-29 15:10 ` Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 3/7] matrix-gui-apps-git: Bump SRCREV for multiple fixes Jacob Stiffler
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Jacob Stiffler @ 2016-01-29 15:10 UTC (permalink / raw
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 meta-arago-distro/conf/distro/arago-source-ipk.conf | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf
index 122ea2d..4447463 100644
--- a/meta-arago-distro/conf/distro/arago-source-ipk.conf
+++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf
@@ -336,6 +336,9 @@ SRCIPK_INSTALL_DIR_pn-oe-layersetup = "bin/oe-layersetup"
 CREATE_SRCIPK_pn-opencl-examples = "1"
 SRCIPK_INSTALL_DIR_pn-opencl-examples = "example-applications/${PN}-${PV}"
 
+CREATE_SRCIPK_pn-qt-opencv-opencl-opengl-multithreaded = "1"
+SRCIPK_INSTALL_DIR_pn-qt-opencv-opencl-opengl-multithreaded = "example-applications/${PN}-${PV}"
+
 CREATE_SRCIPK_pn-boot-monitor = "1"
 SRCIPK_INSTALL_DIR_pn-boot-monitor = "board-support/${PN}-${PV}"
 
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 3/7] matrix-gui-apps-git: Bump SRCREV for multiple fixes
  2016-01-29 15:10 [PATCH 0/7] Video Analytics Demo Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 1/7] qt-opencv-opencl-opengl-multithreaded: Add version 1.3.3 Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 2/7] arago-source-ipk: Enable qt-opencv-opencl-opengl-multithreaded-src Jacob Stiffler
@ 2016-01-29 15:10 ` Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 4/7] matrix-gui-video-analytics-demos: Add demo and submenu Jacob Stiffler
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Jacob Stiffler @ 2016-01-29 15:10 UTC (permalink / raw
  To: meta-arago

* mc_demo_ipc: update dsp_image name in scripts for k2l and k2e
* utility_flash: Generalize parsing of mtd partitions
* optimize-benchmark: Fix for platforms without scaling_governor
* multimedia_apps: add queue for arm multimedia pipelines
* runIvahdVipVpeMpeg4EncDec: update gstreamer pipeline to specify
  frame rate for v4l2src output
* videoanalytics: add the submenu and the opencv+opencl+opengl demo

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
index 94766a9..8edcb2b 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
@@ -4,9 +4,9 @@ LICENSE_CHECKSUM = "LICENSE;md5=6e0ae7214f6c74c149cb25f373057fa9"
 LIC_FILES_CHKSUM := "file://../${LICENSE_CHECKSUM}"
 
 SRC_URI = "git://git.ti.com/matrix-gui-v2/matrix-gui-v2-apps.git;protocol=git;branch=${BRANCH}"
-SRCREV = "02d7a2b8d9aaf4be19d6c20936161ce6ced63215"
+SRCREV = "497b2c6c9b748a3b3c5911bff200e027be45e0db"
 BRANCH = "master"
-INC_PR = "r39"
+INC_PR = "r40"
 
 # Pull in the base package for installing matrix applications
 require matrix-gui-apps.inc
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 4/7] matrix-gui-video-analytics-demos: Add demo and submenu
  2016-01-29 15:10 [PATCH 0/7] Video Analytics Demo Jacob Stiffler
                   ` (2 preceding siblings ...)
  2016-01-29 15:10 ` [PATCH 3/7] matrix-gui-apps-git: Bump SRCREV for multiple fixes Jacob Stiffler
@ 2016-01-29 15:10 ` Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 5/7] packagegroup-arago-tisdk-multimedia*: Add qt-opencv-opencl-opengl-multithreaded Jacob Stiffler
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Jacob Stiffler @ 2016-01-29 15:10 UTC (permalink / raw
  To: meta-arago

* This matrix demo enables access to the
  qt-opencv-opencl-opengl-multithreaded application

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../recipes-core/matrix/matrix-gui-submenus_2.0.bb |  5 +++-
 .../matrix/matrix-gui-video-analytics-demos_2.0.bb | 29 ++++++++++++++++++++++
 2 files changed, 33 insertions(+), 1 deletion(-)
 create mode 100644 meta-arago-extras/recipes-core/matrix/matrix-gui-video-analytics-demos_2.0.bb

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
index 132b81a..6fdaccd 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
@@ -7,7 +7,7 @@ require matrix-gui-apps-git.inc
 # reset the LIC_FILES_CHKSUM setting from the matrix-gui-apps-git.inc file
 LIC_FILES_CHKSUM = "file://LICENSE;md5=6e0ae7214f6c74c149cb25f373057fa9"
 
-PR = "${INC_PR}.14"
+PR = "${INC_PR}.15"
 
 # These packages make submenus in matrix and are not architecture specific
 inherit allarch
@@ -31,6 +31,7 @@ SUBMENUS = " arm_submenu \
              utilities_submenu \
              mc_demo_submenu \
              opencl_submenu \
+             videoanalytics_submenu \
 "
 
 do_install(){
@@ -60,6 +61,7 @@ PACKAGES += " ${PN}-arm \
               ${PN}-utility \
               ${PN}-mc-demo \
               ${PN}-opencl \
+              ${PN}-videoanalytics \
 "
 
 # Make sure app images has been installed
@@ -84,3 +86,4 @@ FILES_${PN}-camera = "${MATRIX_APP_DIR}/camera_submenu/*"
 FILES_${PN}-utility = "${MATRIX_APP_DIR}/utilities_submenu/*"
 FILES_${PN}-mc-demo = "${MATRIX_APP_DIR}/mc_demo_submenu/*"
 FILES_${PN}-opencl = "${MATRIX_APP_DIR}/opencl_submenu/*"
+FILES_${PN}-videoanalytics = "${MATRIX_APP_DIR}/videoanalytics_submenu/*"
diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-video-analytics-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-video-analytics-demos_2.0.bb
new file mode 100644
index 0000000..54b70dd
--- /dev/null
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-video-analytics-demos_2.0.bb
@@ -0,0 +1,29 @@
+DESCRIPTION = "Video Analytics demo descriptions for Matrix v2"
+HOMEPAGE = "https://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps"
+
+require recipes-core/matrix/matrix-gui-apps-git.inc
+
+PR = "${INC_PR}.0"
+
+inherit allarch
+
+S = "${WORKDIR}/git/videoanalytics_apps"
+
+# Make sure video analytics submenu and app images has been installed
+VIDEO_ANALYTICS_DEMO_RDEPENDS += " \
+    matrix-gui-apps-images \
+    matrix-gui-submenus-videoanalytics \
+"
+
+PACKAGES = "matrix-video-analytics-opencv-opencl-opengl-demo \
+"
+
+RDEPENDS_matrix-video-analytics-opencv-opencl-opengl-demo = " \
+    ${VIDEO_ANALYTICS_DEMO_RDEPENDS} \
+    qt-opencv-opencl-opengl-multithreaded \
+"
+
+# Split the matrix files by demos
+FILES_matrix-video-analytics-opencv-opencl-opengl-demo = " \
+    ${MATRIX_APP_DIR}/videoanalytics_opencv_opencl_opengl_demo/* \
+"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 5/7] packagegroup-arago-tisdk-multimedia*: Add qt-opencv-opencl-opengl-multithreaded
  2016-01-29 15:10 [PATCH 0/7] Video Analytics Demo Jacob Stiffler
                   ` (3 preceding siblings ...)
  2016-01-29 15:10 ` [PATCH 4/7] matrix-gui-video-analytics-demos: Add demo and submenu Jacob Stiffler
@ 2016-01-29 15:10 ` Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 6/7] packagegroup-arago-tisdk-matrix: Add video analytics demo Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 7/7] ti-tisdk-makefile: Add video analytics target Jacob Stiffler
  6 siblings, 0 replies; 8+ messages in thread
From: Jacob Stiffler @ 2016-01-29 15:10 UTC (permalink / raw
  To: meta-arago

* Add dev package to filesystem and devkit
* Add sources to the host

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb   | 6 +++++-
 .../packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb | 3 ++-
 .../packagegroups/packagegroup-arago-tisdk-multimedia.bb            | 3 ++-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb
index 8a728f5..e83a01c 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to add multimedia related sources into the SDK"
 LICENSE = "MIT"
-PR = "r8"
+PR = "r9"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -21,6 +21,10 @@ MULTIMEDIA_append_ti43x = " \
     image-gallery-src \
 "
 
+MULTIMEDIA_append_dra7xx = " \
+    qt-opencv-opencl-opengl-multithreaded-src \
+"
+
 #Demo doesn't work on 3.14
 # ${@base_conditional('QT_PROVIDER', 'qt5', '', 'dual-camera-demo-src image-gallery-src', d)}
 
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb
index e803acd..93b6664 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-target.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to build and install header and libs into sdk"
 LICENSE = "MIT"
-PR = "r5"
+PR = "r6"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -11,6 +11,7 @@ MULTIMEDIA = ""
 MULTIMEDIA_append_dra7xx = " \
     hevc-arm-decoder-dev \
     hevc-arm-decoder-staticdev \
+    qt-opencv-opencl-opengl-multithreaded-dev \
 "
 
 RDEPENDS_${PN} = "\
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
index b7decfc..f5f2a25 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to add multimedia related packages"
 LICENSE = "MIT"
-PR = "r15"
+PR = "r16"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -28,6 +28,7 @@ MULTIMEDIA_append_omap-a15 = " \
 
 MULTIMEDIA_append_dra7xx = " \
     hevc-arm-decoder \
+    qt-opencv-opencl-opengl-multithreaded-dev \
 "
 
 MULTIMEDIA_append_am37x-evm = " \
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 6/7] packagegroup-arago-tisdk-matrix: Add video analytics demo
  2016-01-29 15:10 [PATCH 0/7] Video Analytics Demo Jacob Stiffler
                   ` (4 preceding siblings ...)
  2016-01-29 15:10 ` [PATCH 5/7] packagegroup-arago-tisdk-multimedia*: Add qt-opencv-opencl-opengl-multithreaded Jacob Stiffler
@ 2016-01-29 15:10 ` Jacob Stiffler
  2016-01-29 15:10 ` [PATCH 7/7] ti-tisdk-makefile: Add video analytics target Jacob Stiffler
  6 siblings, 0 replies; 8+ messages in thread
From: Jacob Stiffler @ 2016-01-29 15:10 UTC (permalink / raw
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
index a007f6d..75866d2 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to include Matrix v2"
 LICENSE = "MIT"
-PR = "r49"
+PR = "r50"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -124,6 +124,7 @@ MATRIX_APPS_append_omap-a15 = "     \
 MATRIX_APPS_append_dra7xx = "        \
     matrix-opencl-demo-floatcompute  \
     matrix-opencl-demo-vecadd        \
+    matrix-video-analytics-opencv-opencl-opengl-demo \
 "
 
 MATRIX_APPS_append_beagleboard = "  \
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 7/7] ti-tisdk-makefile: Add video analytics target
  2016-01-29 15:10 [PATCH 0/7] Video Analytics Demo Jacob Stiffler
                   ` (5 preceding siblings ...)
  2016-01-29 15:10 ` [PATCH 6/7] packagegroup-arago-tisdk-matrix: Add video analytics demo Jacob Stiffler
@ 2016-01-29 15:10 ` Jacob Stiffler
  6 siblings, 0 replies; 8+ messages in thread
From: Jacob Stiffler @ 2016-01-29 15:10 UTC (permalink / raw
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../Makefile_qt-opencv-opencl-opengl-multithreaded | 24 ++++++++++++++++++++++
 .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |  4 +++-
 2 files changed, 27 insertions(+), 1 deletion(-)
 create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qt-opencv-opencl-opengl-multithreaded

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qt-opencv-opencl-opengl-multithreaded b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qt-opencv-opencl-opengl-multithreaded
new file mode 100644
index 0000000..12246db
--- /dev/null
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_qt-opencv-opencl-opengl-multithreaded
@@ -0,0 +1,24 @@
+# qt-opencv-opencl-opengl-multithreaded  build targets
+qt-opencv-opencl-opengl-multithreaded:
+	@echo =============================
+	@echo    Building QT OpenCV Multithreaded
+	@echo =============================
+	@cd example-applications; cd `find . -name "*qt-opencv-opencl-opengl-multithreaded*"`; make -f Makefile.build release
+
+qt-opencv-opencl-opengl-multithreaded_clean:
+	@echo =============================
+	@echo    Cleaning QT OpenCV Multithreaded
+	@echo =============================
+	@cd example-applications; cd `find . -name "*qt-opencv-opencl-opengl-multithreaded*"`; make -f Makefile.build clean
+
+qt-opencv-opencl-opengl-multithreaded_install:
+	@echo ================================================
+	@echo   Installing QT OpenCV Multithreaded - Release version
+	@echo ================================================
+	@cd example-applications; cd `find . -name "*qt-opencv-opencl-opengl-multithreaded*"`; make -f Makefile.build install
+
+qt-opencv-opencl-opengl-multithreaded_install_debug:
+	@echo ==============================================
+	@echo   Installing QT OpenCV Multithreaded - Debug Version
+	@echo ==============================================
+	@cd example-applications; cd `find . -name "*qt-opencv-opencl-opengl-multithreaded*"`; make -f Makefile.build install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
index bccb22d..14f8e8a 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
@@ -42,9 +42,10 @@ SRC_URI = "\
     file://Makefile_hplib-mod \
     file://Makefile_uio-module-drv \
     file://Makefile_pru-icss \
+    file://Makefile_qt-opencv-opencl-opengl-multithreaded \
 "
 
-PR = "r63"
+PR = "r64"
 
 MAKEFILES_MATRIX_GUI = "matrix-gui-browser \
                         refresh-screen \
@@ -99,6 +100,7 @@ MAKEFILES_append_dra7xx = " cryptodev \
                             debugss-module-drv \
                             gdbserverproxy-module-drv \
                             opencl-examples \
+                            qt-opencv-opencl-opengl-multithreaded \
 "
 
 MAKEFILES_append_omap-a15 = " u-boot-spl \
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-01-29 15:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-29 15:10 [PATCH 0/7] Video Analytics Demo Jacob Stiffler
2016-01-29 15:10 ` [PATCH 1/7] qt-opencv-opencl-opengl-multithreaded: Add version 1.3.3 Jacob Stiffler
2016-01-29 15:10 ` [PATCH 2/7] arago-source-ipk: Enable qt-opencv-opencl-opengl-multithreaded-src Jacob Stiffler
2016-01-29 15:10 ` [PATCH 3/7] matrix-gui-apps-git: Bump SRCREV for multiple fixes Jacob Stiffler
2016-01-29 15:10 ` [PATCH 4/7] matrix-gui-video-analytics-demos: Add demo and submenu Jacob Stiffler
2016-01-29 15:10 ` [PATCH 5/7] packagegroup-arago-tisdk-multimedia*: Add qt-opencv-opencl-opengl-multithreaded Jacob Stiffler
2016-01-29 15:10 ` [PATCH 6/7] packagegroup-arago-tisdk-matrix: Add video analytics demo Jacob Stiffler
2016-01-29 15:10 ` [PATCH 7/7] ti-tisdk-makefile: Add video analytics target Jacob Stiffler

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.