nnstreamer / nnstreamer-example

Example applications of nnstreamer. Note that we have to enable the 'apptest" CI module in the near future.
GNU Lesser General Public License v2.1
77 stars 72 forks source link

[contributhon][team-2] example with multiple camera/sensor inputs on Raspberry Pi #163

Closed tony-jinwoo-ahn closed 3 years ago

tony-jinwoo-ahn commented 4 years ago

Team-2 is planning to:

Make examples with multiple camera/sensor inputs on Raspberry Pi.

Expected Result

Team members

@cloudhs7 @JeonChangMin @suehdn @tony-jinwoo-ahn

question

taos-ci commented 4 years ago

:octocat: cibot: Thank you for posting issue #163. The person in charge will reply soon.

gichan-jang commented 4 years ago

if you have any experience with Raspberry Pi, please guide us for environment setup.

In order to use nnstreamer in the arm arch, it is officially supported through the Tizen. How about uploading the Tizen platform on the RPI? There is an example tested in RPI4. https://github.com/nnstreamer/nnstreamer-example/tree/master/Tizen.platform/Tizen_IoT_ImageClassification

3.0 Porting Guide/Setup RPI3 for Tizen Instruction : https://wiki.tizen.org/3.0_Porting_Guide/Setup_RPI3_for_Tizen_Instruction If you have any problems or difficulties, feel free to ask questions.

tony-jinwoo-ahn commented 4 years ago

@gichan-jang Thank you for guide. I've checked Tizen_IoT_ImageClassification document, and I have some questions.

  1. Could you explain "client" usage example for more detail? There's only "server" usage example. I hope to see what parameters/arguments you used for client.
  2. Should I run "server" on desktop PC, and run "client" on Raspberry Pi meanwhile? Shall I connect both through AP(e.g. ipTIME) using ethernet cable?
  3. if question 2 is false, shall I run both "server" and "client" on two Raspberry Pis?

Thank you.

gichan-jang commented 4 years ago

@tony-jinwoo-ahn

  1. Could you explain "client" usage example for more detail? There's only "server" usage example. I hope to see what parameters/arguments you used for client.

A. You just specify the client. $ nnstreamer_tizen_iot_image_classification server orange 192.168.1.1 5001 $ nnstreamer_tizen_iot_image_classification client orange 192.168.1.1 5001

2.1. Should I run "server" on desktop PC, and run "client" on Raspberry Pi meanwhile?

A. Yes. I also tested the server on ubuntu PC and the client on RPI.

2.2 Shall I connect both through AP(e.g. ipTIME) using ethernet cable?

A. I think it's possible.

tony-jinwoo-ahn commented 4 years ago

Thank you!