HVC-C Data Throw Application icon

HVC-C Data Throw 1.3

341.8 KB / 1+ Downloads / Rating 5.0 - 1 reviews


See previous versions

HVC-C Data Throw, developed and published by たろサ, has released its latest version, 1.3, on 2014-12-29. This app falls under the Communication category on the Google Play Store and has achieved over 100 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

HVC-C Data Throw APK available on this page is compatible with all Android devices that meet the required specifications (Android 4.3+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.luaridaworks.hvcdatathrow

Updated: 10 years ago

Developer Name: たろサ

Category: Communication

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing HVC-C Data Throw on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

Previous Versions

HVC-C Data Throw 1.3
2014-12-29 / 341.8 KB / Android 4.3+

About this app

 オムロンのヒューマンビジョンコンポ(HVC-C)カメラが検出したデータをhttpサーバに丸ごと投げるアプリです。Webサーバ側で受信したデータを処理するAPIを用意すれば、ネットワーク経由でいろいろと遊ぶことができます。Web経由でなくても、LAN経由でローカルに繋がっているPCに送信することもできます。
 また、同時にブロードキャストインテントも発行するので、AndroidアプリでBLEのプログラムを作成しなくても、このインテントを受信するだけで、認識データの処理アプリを作成できます。

説明
1.Androidの設定からBluetoothをオンにして、HVC-Cとペアリングを行います。
2.HVC-C Data Throwを起動し、Findボタンを押してHVC-Cを選択します。ビーコンが見つからない場合は、この操作を繰り返してください。
3.データを送信するURLを入力してください。例えば、
http://192.168.1.10:60001/param
のようにデータを送信したいURLを入力してください。
4.URLを入力し終わったらURL Saveボタンを押してください。
5.Startボタンを押して認識をスタートさせてください。

URLを空欄にすると、インテントのみ発行します。httpサーバへの送信は行いません。

送信データ
下記に送信されるデータの一例を示します。
?BodyDetect=0&HandDetect=0&FaceDetect=1&FEsize=146&FEx=408&FEy=267&FEconf=708&FIyaw=6&FIpitchx=6&FIroll=-3&FIconf=345&AEage=63&AEconf=250&EEgender=Female&EEconf=70&ZELR=12&ZEUD=0&BEL=287&BER=243&XEexpression=Neutral&XEscore=43&XEdegree=-57

ブロードキャストインテントの取得
 intent-filterに下記のような感じで、"com.luaridaworks.extras.BODY_DETECT" と "com.luaridaworks.extras.HAND_DETECT"と"com.luaridaworks.extras.FACE_DETECT" を追加してください。

<receiver android:name=".hvccReceiver">
  <intent-filter>
    <action android:name="com.luaridaworks.extras.BODY_DETECT" />
    <action android:name="com.luaridaworks.extras.HAND_DETECT" />
    <action android:name="com.luaridaworks.extras.FACE_DETECT" />
  </intent-filter>
</receiver>

 BroadcastReceiverでの受信は下記のような感じで受け取ってください。

String body = (String)intent.getSerializableExtra("BODY");
String hand = (String)intent.getSerializableExtra("HAND");
String face = (String)intent.getSerializableExtra("FACE");

 body,hand,face別に、上で示した例と同じ文字列を受け取ることができます。

各パラメータの意味
 BodyDetect:人体検出の数
 BDsize:検出サイズ
 BDx:中心のX座標
 BDy:中心のY座標
 BDconf:信頼度0~1000
 HandDetect:手検出の数
 HDsize:検出サイズ
 HDx:中心のX座標
 HDy:中心のY座標
 HDconf:信頼度0~1000
 FaceDetect:顔検出の数
 FEsize:検出サイズ
 FEx:中心のX座標
 FEy:中心のY座標
 FEconf:信頼度0~1000
 FIyaw:顔の左右角度
 FIpitchx:顔の上下角度
 FIroll:顔の傾き(回転)角度
 FIconf:信頼度0~1000
 AEage:年齢
 AEconf:信頼度0~1000
 EEgender:性別(Male, Female)
 EEconf:信頼度0~1000
 ZELR:視線の左右角度
 ZEUD:視線の上下角度
 BEL:左目のつむり具合
 BER:右目のつむり具合
 XEexpression:表情の判定結果(Neutral, Happiness, Supprise, Anger, Sadness)
 XEscore:判定のスコア0~100
 XEdegree:ポジティブ/ネガティブ度(+100~-100)
-------------------------------------------------------------------------------------------------------------------------------------
HVC-Cの詳細はこちらから
⇒http://plus-sensing.omron.co.jp/egg-project/
※HVC-Cがなければ動作しません。

New features

データが1か所間違っていたので、修正しました。

App Permissions

Allows applications to connect to paired bluetooth devices.
Allows applications to discover and pair bluetooth devices.
Allows applications to open network sockets.
Allows an application to write to external storage.
Allows an application to read from external storage.