All of lore.kernel.org
 help / color / mirror / Atom feed
* [matrix-gui-v2-apps][PATCH 1/2] tidl_submenu: rename TI Deep Learning to Machine Learning for including Arm NN demo in the group.
@ 2018-12-06 21:58 Qin Su
  2018-12-06 21:58 ` [matrix-gui-v2-apps][PATCH 2/2] tidl_apps: added Arm NN Matrix GUI demo examples Qin Su
  0 siblings, 1 reply; 2+ messages in thread
From: Qin Su @ 2018-12-06 21:58 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Qin Su <qsu@ti.com>
---
 tidl_submenu/tidl.desktop | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tidl_submenu/tidl.desktop b/tidl_submenu/tidl.desktop
index 467f865..b6198e9 100644
--- a/tidl_submenu/tidl.desktop
+++ b/tidl_submenu/tidl.desktop
@@ -1,7 +1,7 @@
 #!/usr/bin/env xdg-open
 [Desktop Entry]
-Name=TI Deep Learning
-GenericName=Deep Learning Examples
+Name=Machine Learning
+GenericName=Machine Learning Examples
 Icon=/usr/share/matrix-gui-2.0/apps/images/tidl-icon.png
 Type=Directory
 X-MATRIX-CategoryTarget=tidl
-- 
1.9.1



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

* [matrix-gui-v2-apps][PATCH 2/2] tidl_apps: added Arm NN Matrix GUI demo examples
  2018-12-06 21:58 [matrix-gui-v2-apps][PATCH 1/2] tidl_submenu: rename TI Deep Learning to Machine Learning for including Arm NN demo in the group Qin Su
@ 2018-12-06 21:58 ` Qin Su
  0 siblings, 0 replies; 2+ messages in thread
From: Qin Su @ 2018-12-06 21:58 UTC (permalink / raw)
  To: meta-arago

Added two Arm NN demo examples with MobileNet network topology.
One example with live camera input and the other with video clip input.

Signed-off-by: Qin Su <qsu@ti.com>
---
 tidl_apps/armnn_demo_livecam/armnn_demo_livecam.desktop       | 9 +++++++++
 tidl_apps/armnn_demo_livecam/desc_armnn_demo_livecam.html     | 5 +++++
 tidl_apps/armnn_demo_livecam/runArmnnLiveCam.sh               | 3 +++
 tidl_apps/armnn_demo_staticimg/armnn_demo_staticimg.desktop   | 9 +++++++++
 tidl_apps/armnn_demo_staticimg/desc_armnn_demo_staticimg.html | 5 +++++
 tidl_apps/armnn_demo_staticimg/runArmnnStaticImg.sh           | 3 +++
 6 files changed, 34 insertions(+)
 create mode 100644 tidl_apps/armnn_demo_livecam/armnn_demo_livecam.desktop
 create mode 100644 tidl_apps/armnn_demo_livecam/desc_armnn_demo_livecam.html
 create mode 100644 tidl_apps/armnn_demo_livecam/runArmnnLiveCam.sh
 create mode 100644 tidl_apps/armnn_demo_staticimg/armnn_demo_staticimg.desktop
 create mode 100644 tidl_apps/armnn_demo_staticimg/desc_armnn_demo_staticimg.html
 create mode 100644 tidl_apps/armnn_demo_staticimg/runArmnnStaticImg.sh

diff --git a/tidl_apps/armnn_demo_livecam/armnn_demo_livecam.desktop b/tidl_apps/armnn_demo_livecam/armnn_demo_livecam.desktop
new file mode 100644
index 0000000..9317cb8
--- /dev/null
+++ b/tidl_apps/armnn_demo_livecam/armnn_demo_livecam.desktop
@@ -0,0 +1,9 @@
+#!/usr/bin/env xdg-open
+[Desktop Entry]
+Name=Arm NN MobileNet Camera Input
+Icon=/usr/share/matrix-gui-2.0/apps/images/tidl-icon.png
+Exec=runArmnnLiveCam.sh
+Type=Application
+ProgramType=gui
+Categories=tidl
+X-Matrix-Description=/usr/share/matrix-gui-2.0/apps/armnn_demo_livecam/desc_armnn_demo_livecam.html
diff --git a/tidl_apps/armnn_demo_livecam/desc_armnn_demo_livecam.html b/tidl_apps/armnn_demo_livecam/desc_armnn_demo_livecam.html
new file mode 100644
index 0000000..db0c2bb
--- /dev/null
+++ b/tidl_apps/armnn_demo_livecam/desc_armnn_demo_livecam.html
@@ -0,0 +1,5 @@
+<h1>Arm NN Demo with Live Camera Input</h1>
+<h2>Purpose:</h2>
+<p>This application demonstrates Deep Learning Imagenet classification (1000 classes) with MobileNet network topology based on Arm NN SDK.</p>
+<p>Single Arm core is used with live camera input (at 640x480 resolution).</p>
+<p>Exit demo by doing right-click on image window.</p>
diff --git a/tidl_apps/armnn_demo_livecam/runArmnnLiveCam.sh b/tidl_apps/armnn_demo_livecam/runArmnnLiveCam.sh
new file mode 100644
index 0000000..68007f3
--- /dev/null
+++ b/tidl_apps/armnn_demo_livecam/runArmnnLiveCam.sh
@@ -0,0 +1,3 @@
+cd /usr/bin
+
+./ArmnnExamples -f tensorflow-binary -i input -s '1 224 224 3' -o MobilenetV1/Predictions/Reshape_1 -d /usr/share/arm/armnn/testvecs/camera_live_input -m /usr/share/arm/armnn/models/mobilenet_v1_1.0_224_frozen.pb -c CpuAcc --number_frame 999900
diff --git a/tidl_apps/armnn_demo_staticimg/armnn_demo_staticimg.desktop b/tidl_apps/armnn_demo_staticimg/armnn_demo_staticimg.desktop
new file mode 100644
index 0000000..7d7a1a7
--- /dev/null
+++ b/tidl_apps/armnn_demo_staticimg/armnn_demo_staticimg.desktop
@@ -0,0 +1,9 @@
+#!/usr/bin/env xdg-open
+[Desktop Entry]
+Name=Arm NN MobileNet Real Common Objects
+Icon=/usr/share/matrix-gui-2.0/apps/images/tidl-icon.png
+Exec=runArmnnStaticImg.sh
+Type=Application
+ProgramType=gui
+Categories=tidl
+X-Matrix-Description=/usr/share/matrix-gui-2.0/apps/armnn_demo_staticimg/desc_armnn_demo_staticimg.html
diff --git a/tidl_apps/armnn_demo_staticimg/desc_armnn_demo_staticimg.html b/tidl_apps/armnn_demo_staticimg/desc_armnn_demo_staticimg.html
new file mode 100644
index 0000000..ad4c466
--- /dev/null
+++ b/tidl_apps/armnn_demo_staticimg/desc_armnn_demo_staticimg.html
@@ -0,0 +1,5 @@
+<h1>Arm NN Demo with Classification of Common Objects</h1>
+<h2>Purpose:</h2>
+<p>This application demonstrates Deep Learning Imagenet classification (1000 classes) with MobileNet network topology based on Arm NN SDK.</p>
+<p>Single Arm core is used with pre-recorded clip of common objects.</p>
+<p>Exit demo by doing right-click on image window.</p>
diff --git a/tidl_apps/armnn_demo_staticimg/runArmnnStaticImg.sh b/tidl_apps/armnn_demo_staticimg/runArmnnStaticImg.sh
new file mode 100644
index 0000000..8b996ff
--- /dev/null
+++ b/tidl_apps/armnn_demo_staticimg/runArmnnStaticImg.sh
@@ -0,0 +1,3 @@
+cd /usr/bin
+
+./ArmnnExamples -f tensorflow-binary -i input -s '1 224 224 3' -o MobilenetV1/Predictions/Reshape_1 -d /usr/share/arm/armnn/testvecs/test2.mp4 -m /usr/share/arm/armnn/models/mobilenet_v1_1.0_224_frozen.pb -c CpuAcc --number_frame 999900
-- 
1.9.1



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

end of thread, other threads:[~2018-12-06 21:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-06 21:58 [matrix-gui-v2-apps][PATCH 1/2] tidl_submenu: rename TI Deep Learning to Machine Learning for including Arm NN demo in the group Qin Su
2018-12-06 21:58 ` [matrix-gui-v2-apps][PATCH 2/2] tidl_apps: added Arm NN Matrix GUI demo examples Qin Su

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.