Size: px
Start display at page:

Download ""

Transcription

1 2015 3

2

3 i

4 HSV RGB ii

5 HSV HSV iii

6 iv

7

8

9 [1] Google Google Glass Google Watch JINS! 1 1 Jins meme, 3

10 2.3 Google Google Drive 2 Apple icloud 3 Dropbox 4 IDC Japan [2] % 2 Google Drive, jp/drive/ 3 icloud, 4 Dropbox, 4

11 Google Picasa Wikipedia -, #.E8.AA.8D.E8.AD.98.E7.8E.87 5

12 (a) (b) (c) : (a) (b) (c)

13

14 第 4 章 ユーザと写真を紐付けてライフログを 蓄積するシステム 本章では開発したシステムの概要及び使用方法 使用する場面について述べる 4.1 概要 本システムは写真撮影時に 被撮影者 以後 ユーザと呼ぶ がカメラに向かって腕時計型 端末をかざすことによって撮影された写真とユーザを結びつけて記録することができるシス テムである 具体的には ユーザが腕時計型端末に表示されているマーカをカメラにかざす ことで 予めカメラ端末に保持されているマーカとユーザ ID の対応表と照合する カメラ端 末は照合してユーザを一意に定めた後 撮影された写真をユーザのパーソナルクラウドへ送 信 記録する ユーザは 1 10 人を想定している 腕時計型端末に表示されたマーカとユー ザ ID の照合が完了した際には該当ユーザの腕時計型端末を振動させることによってフィード バックを行う さらに 照合完了後はユーザの顔を自動追跡するため 腕時計型端末をかざ したままである必要はなくなる そのため ユーザは好きなポーズの写真を撮影することが できる 図 4.1 では腕時計型端末を用いていないが腕時計型端末を用いていると仮定し カ ラーマーカを表示した場合の利用の様子を示している 図 4.1: システム利用の様子 8

15 : ID ID ( 4.3) 4.3 9

16 4.3:

17 : :

18 A 3. A 4. A IPX / / 1, 12

19 : 2 SmartWatch SW2 - MN2 -, 3 Mecan Imaging - PC AR, 4 SmartWatch3, 13

20 4.4.3 A B C D 14

21 Android ios Java Objective-C, C++ Ruby Ruby on Rails SmartWatch2 Xperia ipad mini 5.1: SmartWatch2 1.6, pixel Xperia Android 4.3 Android Studio ver ipad mini ios 7.01 Xcode ver 5.1 Ubuntu Ubuntu Apache Apache/ ID ID 1 SmartWatch2, 2 Ruby on Rails, 15

22 図 5.1: 開発に用いた端末 ラを用いた場合と公共のカメラを用いた場合に分けて図 5.3 と図 5.4 にそれぞれ示す 両者の 違いは公共カメラを用いた場合の流れ図を緑で示した 5.3 カメラ - ユーザ識別部 ユーザを識別するために 腕時計型端末のディスプレイに色を表示させ OpenCV3 を用い て色を検出する そしてカメラの顔検出機能を用いて顔を検出 その顔の下にある色と顔を マッチングすることでユーザを識別する その様子を図 5.5 に示す 図 5.5 では腕時計型端末 ではなくスマートフォンを用いている カメラ付端末搭載の顔検出 API を用いて検出した顔 と OpenCV での色相検出によってリアルタイムで画像を解析する 腕時計型端末のディス プレイに表示するカラーマーカはサーバから取得したものを用いることによってマッチング を可能としている カラーマーカ部分については後述する 3 OpenCV, 16

23 5.2: openframeworks 4 1/ openframeworks opencv HSV 6 HSV 4 ofxcvhaarfinder, 17

24 5.3: 18

25 5.4: 19

26 図 5.5: ユーザ識別のためのマッチング の変換前と変換後の様子を図 5.6, 5.7 にそれぞれ示す それぞれの図では各ユーザの腕時計 型端末のカラーマーカを抽出し 検出した顔と照合を行い 予めサーバから知らされている ユーザ ID と紐付けた際の HSV 変換前と HSV 変換後を示す図になっている 左端のユーザは カラーマーカをかざした位置が低かったために検出されなかった 上述の通り 顔の下にカ ラーマーカを持ってくる必要がある 1. RGB から HSV に変換 2. HSV 画像を各チャンネルに分解 3. 各チャンネルごとに二値化 4. 各チャンネルの二値化画像の And をとり マスク画像を作成 5. HSV 画像を各チャンネルの画像を And をとる 6. 各チャンネルの画像を RGB 画像へ戻す openframeworks では RGB から HSV への変換はメソッドが用意されているためそれを用 いた 各チャネル毎に抽出したい色とピクセルを比較し 二値化画像を作成する HSV から RGB へと戻す際には標準のメソッドが見当たらなかったのでウェブサイト 5 を参考に以下の ように変換するためのメソッドを作成した HSV から RGB を算出 最大値と最小値を求める 本システムでは S V の範囲が であるため 以下の式で最大値と最小値を求めるこ とができる 5 HSV から RGB への変換計算式, 20

27 図 5.6: HSV への変換前 最大値 MAX = V 最小値 MIN = MAX - ((S / 255) * MAX) RGB 値を求める 本システムでは H の範囲が であるため以下の式で RGB 値を求めることができる H が 0 30 の場合 R = MAX G = (H / 30) * (MAX - MIN) + MIN B = MIN H が の場合 R = ((60 - H) / 30) * (MAX - MIN) + MIN G = MAX B = MIN H が の場合 R = MIN G = MAX B = ((H - 60) / 30) * (MAX - MIN) + MIN H が の場合 R = MIN G = ((120 - H) / 30) * (MAX - MIN) + MIN 21

28 図 5.7: HSV への変換後 B = MAX H が の場合 R = ((H - 120) /30) * (MAX - MIN) + MIN G = MIN B = MAX H が の場合 R = MAX G = MIN B = ((180 - H) / 30) * (MAX - MIN) + MIN 通信部 カメラ端末の通信ライブラリには ios 用の通信ライブラリである AFNetworking というオー プンソースのライブラリを使用している 各通信は HTTP 通信を使用し JSON 型で情報の伝 達を行っている 22

29 (a) 5.8(b) 5.8(a) 5.8(b) ( 5.8(c)) ( 5.8(d)) ( 5.8(e)) 5.8: Android okhttp 6 HTTP GET ID 6 okhttp, 23

30 5.9: Android android.os Vibrator Vibrator.vibrate() Vibrator.vibrate() , 2, 4... OFF 1,3,5... ON 1 5.8(c) 5.8(e) 2 24

31 5.5 Ruby on Rails Ruby on Rails CakePHP Ruby on Rails SQLite Android GPS 2 Network LAN GPS GPS LocationManager LocationManager 10m 10m 10 2 null m 2 A B m 7 - Android:, 25

32 5.10: paperclip 8 Ruby on Rails 8 paperclip, 26

33 6 6.1 ios viewer 1 [3] Bluetooth Contextual photo browser Contextual photo browser Bluetooth [4] PhotoLoop 1 viewer, 27

34 bit 255 ID ID Cam[5] ID Cam ID ID LED [6] CASIO, Inc ID Chu [7] 2 Selfie Stick, 28

35 6.4 FlashAir 3 SDHC SDHC SDHC SDHC SDHC 6.5 Apple iphoto 4 Google Picasa 5 Google Picasa API API [8] 6.6 RFID 6 7 [9] 3 FlashAir, 4 iphoto, 5 Picasa, RFID, 7 Wikipedia -, 29

36 [10] [11] [12] 8 SONY 9 30 Party-shot Party-shot Cyber-shot [13] Album Weaver 8 NARRATIVE CLIP 2, 9 Party-shot, 10 SONY -, 1.html 30

37 Album Weaver Easy-Album[14] [15] 3 Kirk[16] 1 [17] [18] PhotoLab[19] 3 31

38 7 7.1 SNS

39 33

40 [1].., [2]. Storage in the Cloud IDC Japan, [3],,. Contextual photo browser:.. HCI,, Vol No. 1, pp. 1-7, [4],,. PhotoLoop. 11(1), pp , [5],,,,. ID Cam: ID. 2002, 8 pages, [6] CASIO, Inc.. ( ) [7] S. Chu and J. Tanaka. Interacting with a Self-portrait Camera Using Motion-based Hand Gestures. Proceedings of the 11th Asia-Pacific Conference on Computer-Human Interaction, pp , [8] A. Gomi, T. Itoh. A Personal Photograph Browser for Life Log Analysis based on Location, Time, and Person. ACM Symposium on Applied Computing, Multimedia Visualization Track, pp , [9],,,,.., 2004-UBI-5(1), pp. 1-8, [10],,.., 2010-UBI-27(10), pp. 1-8, [11],,,.., 2006-DPS-129(14), pp , [12] G. Bell, J. Gemmell. Total Recall: How the E-Memory Revolution will Change Everything Dutton Adult, 304 pages,

41 [13]. Album Weaver:. (WISS2007) 6 pages, [14] J. Cui, F. Wen, R. Xiao, Y. Tian, and X. Tang. EasyAlbum: an interactive photo annotation system based on face clustering and re-ranking. CHI 2007 Proceedings, pp , [15],,,.. DEIM Forum 2012, 8 pages, [16] D. Kirk, A. Sellen, C. Rother, and K. Wood. Under-standing Photowork. CHI 2006 Proceedings, pp , [17] , pp , [18],,,,, G.Liu, S.Subramanian Information Processing Society of Japan, pp , [19],. PhotoLab:., 2008-CG-131(6), pp ,

2. Apple iphoto 1 Google Picasa 2 Calendar for Everything [1] PLUM [2] LifelogViewer 3 1 Apple iphoto, 2 Goo

2. Apple iphoto 1 Google Picasa 2 Calendar for Everything [1]  PLUM [2] LifelogViewer 3 1 Apple iphoto,   2 Goo DEIM Forum 2012 D9-4 606 8501 E-mail: {sasage,tsukuda,nakamura,tanaka}@dl.kuis.kyoto-u.ac.jp,,,, 1. 2000 1 20 10 GPS A A A A A A A 2. Apple iphoto 1 Google Picasa 2 Calendar for Everything [1] Email PLUM

More information

IPSJ SIG Technical Report Vol.2013-CE-122 No.16 Vol.2013-CLE-11 No /12/14 Android 1,a) 1 1 GPS LAN 2 LAN Android,,, Android, HTML5 LAN 1. ICT(I

IPSJ SIG Technical Report Vol.2013-CE-122 No.16 Vol.2013-CLE-11 No /12/14 Android 1,a) 1 1 GPS LAN 2 LAN Android,,, Android, HTML5 LAN 1. ICT(I Android 1,a) 1 1 GPS LAN 2 LAN Android,,, Android, HTML5 LAN 1. ICT(Information and Communication Technology) (Google [2] [5] ) 2. Google 2.1 Google Google [2]( 1) Google Web, Google Web Google Chrome

More information

「産業上利用することができる発明」の審査の運用指針(案)

「産業上利用することができる発明」の審査の運用指針(案) 1 1.... 2 1.1... 2 2.... 4 2.1... 4 3.... 6 4.... 6 1 1 29 1 29 1 1 1. 2 1 1.1 (1) (2) (3) 1 (4) 2 4 1 2 2 3 4 31 12 5 7 2.2 (5) ( a ) ( b ) 1 3 2 ( c ) (6) 2. 2.1 2.1 (1) 4 ( i ) ( ii ) ( iii ) ( iv)

More information

IPSJ SIG Technical Report Vol.2013-HCI-152 No /3/13 1,a) 1,b) 2,c) / GPS Bluetooth(BT) WiFi BT WiFi 1. Bluetooth WiFi 1 / 1 2 a)

IPSJ SIG Technical Report Vol.2013-HCI-152 No /3/13 1,a) 1,b) 2,c) / GPS Bluetooth(BT) WiFi BT WiFi 1. Bluetooth WiFi 1 / 1 2 a) 1,a) 1,b) 2,c) / GPS Bluetooth(BT) WiFi BT WiFi 1. Bluetooth WiFi 1 / 1 2 a) rtokuami@kwansei.ac.jp b) kono@kwansei.ac.jp c) nakamura@dl.kuis.kyoto-u.ac.jp / 2. Apple iphoto Google Picasa GPS GPS GPS [1][2]

More information

25

25 25 Android 1 1 1.1............................ 1 1.2.................... 1 1.3................... 2 1.4................................... 3 1.5............................... 3 1.6...................................

More information

1 6 1.1........................................... 6 1.1.1 Wiki.............................. 6 1.1.2............................. 7 1.2..............

1 6 1.1........................................... 6 1.1.1 Wiki.............................. 6 1.1.2............................. 7 1.2.............. Wiki 1 6 1.1........................................... 6 1.1.1 Wiki.............................. 6 1.1.2............................. 7 1.2.......................................... 7 1.2.1................

More information

2. 2.1 Lytro [11] The Franken Camera [12] 2.2 Creative Coding Community Creative Coding Community [13]-[19] Sketch Fork 2.3 [20]-[23] 3. ourcam 3.1 ou

2. 2.1 Lytro [11] The Franken Camera [12] 2.2 Creative Coding Community Creative Coding Community [13]-[19] Sketch Fork 2.3 [20]-[23] 3. ourcam 3.1 ou 情 報 処 理 学 会 インタラクション 2013 IPSJ Interaction 2013 2013-Interaction (3EXB-06) 2013/3/2 ourcam: 1 2 ourcam ourcam: On-Site Programming Environment for Digital Photography RYO OSHIMA 1 YASUAKI KAKEHI 2 In these

More information

IPSJ SIG Technical Report Vol.2014-CE-127 No /12/7 1,a) 2,3 2,3 3 Development of the ethological recording application for the understanding of

IPSJ SIG Technical Report Vol.2014-CE-127 No /12/7 1,a) 2,3 2,3 3 Development of the ethological recording application for the understanding of 1,a) 2,3 2,3 3 Development of the ethological recording application for the understanding of the zoo animals behavior Yoshida Nobuaki 1,a) Tanaka Masayuki 2,3 Wada Seitaro 2,3 Abstract: The authors are

More information

Lyra 2 2 2 X Y X Y ivis Designer Lyra ivisdesigner Lyra ivisdesigner 2 ( 1 ) ( 2 ) ( 3 ) ( 4 ) ( 5 ) (1) (2) (3) (4) (5) Iv Studio [8] 3 (5) (4) (1) (

Lyra 2 2 2 X Y X Y ivis Designer Lyra ivisdesigner Lyra ivisdesigner 2 ( 1 ) ( 2 ) ( 3 ) ( 4 ) ( 5 ) (1) (2) (3) (4) (5) Iv Studio [8] 3 (5) (4) (1) ( 1,a) 2,b) 2,c) 1. Web [1][2][3][4] [5] 1 2 a) ito@iplab.cs.tsukuba.ac.jp b) misue@cs.tsukuba.ac.jp c) jiro@cs.tsukuba.ac.jp [6] Lyra[5] ivisdesigner[6] [7] 2 Lyra ivisdesigner c 2012 Information Processing

More information

IPSJ SIG Technical Report Vol.2009-DPS-141 No.20 Vol.2009-GN-73 No.20 Vol.2009-EIP-46 No /11/27 1. MIERUKEN 1 2 MIERUKEN MIERUKEN MIERUKEN: Spe

IPSJ SIG Technical Report Vol.2009-DPS-141 No.20 Vol.2009-GN-73 No.20 Vol.2009-EIP-46 No /11/27 1. MIERUKEN 1 2 MIERUKEN MIERUKEN MIERUKEN: Spe 1. MIERUKEN 1 2 MIERUKEN MIERUKEN MIERUKEN: Speech Visualization System Based on Augmented Reality Yuichiro Nagano 1 and Takashi Yoshino 2 As the spread of the Augmented Reality(AR) technology and service,

More information

WISS 2008 [2] PowerPoint[7] KeyNote[8] ZUI(Zooming User Interface) ZUI 1. : Pad[9] CounterPoint[10] KidPad[11] ( ); ( ). [12] 3 4 [12] 5 3 TabletPC 2

WISS 2008 [2] PowerPoint[7] KeyNote[8] ZUI(Zooming User Interface) ZUI 1. : Pad[9] CounterPoint[10] KidPad[11] ( ); ( ). [12] 3 4 [12] 5 3 TabletPC 2 WISS2008 An Augmented Dining System for Cooking Optical Decorations and Storytelling Summary. 1 [1] 1 [2] 1 1 Flash Copyright is held by the author(s). Maki Mori,, Kazutaka Kurihara, /, Tsukada Koji,,

More information

1 2 3 ( ) ( ) SNS SNS Facebook %[g]( %[ ]) [ ] IT LNS (Life Networking Service) LNS LNS LNS SNS SNS 3. LNS (Life Networking S

1 2 3 ( ) ( ) SNS SNS Facebook %[g]( %[ ]) [ ] IT LNS (Life Networking Service) LNS LNS LNS SNS SNS 3. LNS (Life Networking S 情報処理学会インタラクション 2012 IPSJ Interaction 2012 2012-Interacti 2012/3/15 Life Networking Service LNS LNS twitter LNS Life Log Sharing with Life Networking Service YUSUKE NAKANO HIROSHI KAWAKAMI HIROYUKI TARUMI

More information

3.1 Thalmic Lab Myo * Bluetooth PC Myo 8 RMS RMS t RMS(t) i (i = 1, 2,, 8) 8 SVM libsvm *2 ν-svm 1 Myo 2 8 RMS 3.2 Myo (Root

3.1 Thalmic Lab Myo * Bluetooth PC Myo 8 RMS RMS t RMS(t) i (i = 1, 2,, 8) 8 SVM libsvm *2 ν-svm 1 Myo 2 8 RMS 3.2 Myo (Root 1,a) 2 2 1. 1 College of Information Science, School of Informatics, University of Tsukuba 2 Faculty of Engineering, Information and Systems, University of Tsukuba a) oharada@iplab.cs.tsukuba.ac.jp 2.

More information

i

i 23 20 20115093 i 1 1 2 3 2.1.......................... 3 2.1.1.................. 3 2.1.2.................................. 4 2.1.3........................... 5 2.1.4.............................. 5 2.2.......

More information

IPSJ SIG Technical Report Vol.2014-HCI-160 No.8 Vol.2014-UBI-44 No /10/14 1,a) 1,b) 1,c) 1,d) 1. [1] HMD 1 Kyoto Institute of Technology a) kyok

IPSJ SIG Technical Report Vol.2014-HCI-160 No.8 Vol.2014-UBI-44 No /10/14 1,a) 1,b) 1,c) 1,d) 1. [1] HMD 1 Kyoto Institute of Technology a) kyok 1,a) 1,b) 1,c) 1,d) 1. [1] HMD 1 Kyoto Institute of Technology a) kyoko@hit.is.kit.ac.jp b) kei@kit.ac.jp c) kuramoto@hit.is.kit.ac.jp d) tsujino@kit.ac.jp [2] [2][3][4][5][6][7][8] [3][4][5][6][7][8]

More information

ActionScript Flash Player 8 ActionScript3.0 ActionScript Flash Video ActionScript.swf swf FlashPlayer AVM(Actionscript Virtual Machine) Windows

ActionScript Flash Player 8 ActionScript3.0 ActionScript Flash Video ActionScript.swf swf FlashPlayer AVM(Actionscript Virtual Machine) Windows ActionScript3.0 1 1 YouTube Flash ActionScript3.0 Face detection and hiding using ActionScript3.0 for streaming video on the Internet Ryouta Tanaka 1 and Masanao Koeda 1 Recently, video streaming and video

More information

[1] Excel Excel... [3]. CSV RDF. [4] LinkedData. [5] LinkedData 1 RDF. OLAP. OLAP. [6] RDBMS. Excel CSV. CSV JSON RDF. Excel RDF. RDF RDF..

[1] Excel Excel... [3]. CSV RDF. [4] LinkedData. [5] LinkedData 1 RDF. OLAP. OLAP. [6] RDBMS. Excel CSV. CSV JSON RDF. Excel RDF. RDF RDF.. DEIM Forum 2017 B4-4 Recognition and semantics interpretation of header hierarchies in statistical tables with complicated structures 603 8047 603 8047 E-mail: g1344739@cse.kyoto-su.ac.jp, miya@cc.kyoto-su.ac.jp..

More information

44 4 I (1) ( ) (10 15 ) ( 17 ) ( 3 1 ) (2)

44 4 I (1) ( ) (10 15 ) ( 17 ) ( 3 1 ) (2) (1) I 44 II 45 III 47 IV 52 44 4 I (1) ( ) 1945 8 9 (10 15 ) ( 17 ) ( 3 1 ) (2) 45 II 1 (3) 511 ( 451 1 ) ( ) 365 1 2 512 1 2 365 1 2 363 2 ( ) 3 ( ) ( 451 2 ( 314 1 ) ( 339 1 4 ) 337 2 3 ) 363 (4) 46

More information

i ii i iii iv 1 3 3 10 14 17 17 18 22 23 28 29 31 36 37 39 40 43 48 59 70 75 75 77 90 95 102 107 109 110 118 125 128 130 132 134 48 43 43 51 52 61 61 64 62 124 70 58 3 10 17 29 78 82 85 102 95 109 iii

More information

148 ICT 1 2 3 1.タブレット 端 末 概 論 (1)タブレット 端 末 略 史 2010 OS Apple ios Google OS Android Microsoft Windows OS Apple ipad ipad 2010 5 4 2006 6 iphone 2008 8

148 ICT 1 2 3 1.タブレット 端 末 概 論 (1)タブレット 端 末 略 史 2010 OS Apple ios Google OS Android Microsoft Windows OS Apple ipad ipad 2010 5 4 2006 6 iphone 2008 8 64 147 160 2016 3 147 タブレット 端 末 の 教 育 利 用 の 現 状 と 課 題 に 関 する 一 研 究 川 原 健 太 郎 はじめに PC ipad PDA Personal Digital Assistant 2002 Microsoft Windows XP Tablet PC Edition PC 2010 ipad ipad ICT ipad 5 ICT 2010

More information

20mm 63.92% ConstantZoom U 5

20mm 63.92% ConstantZoom U 5 29 30 2 13 16350926 20mm 63.92% ConstantZoom U 5 1 3 1.1...................................... 3 1.2................................. 4 2 8 2.1............... 8 2.2............................ 8 2.3..

More information

3 2 2 (1) (2) (3) (4) 4 4 AdaBoost 2. [11] Onishi&Yoda [8] Iwashita&Stoica [5] 4 [3] 3. 3 (1) (2) (3)

3 2 2 (1) (2) (3) (4) 4 4 AdaBoost 2. [11] Onishi&Yoda [8] Iwashita&Stoica [5] 4 [3] 3. 3 (1) (2) (3) (MIRU2012) 2012 8 820-8502 680-4 E-mail: {d kouno,shimada,endo}@pluto.ai.kyutech.ac.jp (1) (2) (3) (4) 4 AdaBoost 1. Kanade [6] CLAFIC [12] EigenFace [10] 1 1 2 1 [7] 3 2 2 (1) (2) (3) (4) 4 4 AdaBoost

More information

21 e-learning Development of Real-time Learner Detection System for e-learning

21 e-learning Development of Real-time Learner Detection System for e-learning 21 e-learning Development of Real-time Learner Detection System for e-learning 1100349 2010 3 1 e-learning WBT (Web Based training) e-learning LMS (Learning Management System) LMS WBT e-learning e-learning

More information

2009 2

2009 2 2009 2 350603022 ( ) Wii iii 1 1 2 7 2.1............................ 7 2.1.1...................... 7 2.1.2........... 8 2.1.3......................... 10 2.2....................... 11 2.2.1.................

More information

, IT.,.,..,.. i

, IT.,.,..,.. i 25 To construct the system that promote a interactive method as a knowledge acquisition 1140317 2014 2 28 , IT.,.,..,.. i Abstract To construct the system that promote a interactive method as a knowledge

More information

27 AR

27 AR 27 AR 28 2 19 12111002 AR AR 1 3 1.1....................... 3 1.1.1...................... 3 1.1.2.................. 4 1.2............................ 4 1.2.1 AR......................... 5 1.2.2......................

More information

DEIM Forum 2010 A3-3 Web Web Web Web Web. Web Abstract Web-page R

DEIM Forum 2010 A3-3 Web Web Web Web Web. Web Abstract Web-page R DEIM Forum 2010 A3-3 Web Web 305 8550 1 2 305 8550 1 2 E-mail: s0813167@u.tsukuba.ac.jp, satoh@slis.tsukuba.ac.jp Web Web Web. Web Abstract Web-page Recommendation System based on the Keyword transitions

More information

IPSJ SIG Technical Report Vol.2017-MUS-116 No /8/24 MachineDancing: 1,a) 1,b) 3 MachineDancing MachineDancing MachineDancing 1 MachineDan

IPSJ SIG Technical Report Vol.2017-MUS-116 No /8/24 MachineDancing: 1,a) 1,b) 3 MachineDancing MachineDancing MachineDancing 1 MachineDan MachineDancing: 1,a) 1,b) 3 MachineDancing 2 1. 3 MachineDancing MachineDancing 1 MachineDancing MachineDancing [1] 1 305 0058 1-1-1 a) s.fukayama@aist.go.jp b) m.goto@aist.go.jp 1 MachineDancing 3 CG

More information

IPSJ SIG Technical Report iphone iphone,,., OpenGl ES 2.0 GLSL(OpenGL Shading Language), iphone GPGPU(General-Purpose Computing on Graphics Proc

IPSJ SIG Technical Report iphone iphone,,., OpenGl ES 2.0 GLSL(OpenGL Shading Language), iphone GPGPU(General-Purpose Computing on Graphics Proc iphone 1 1 1 iphone,,., OpenGl ES 2.0 GLSL(OpenGL Shading Language), iphone GPGPU(General-Purpose Computing on Graphics Processing Unit)., AR Realtime Natural Feature Tracking Library for iphone Makoto

More information

Digital Photo Presenter for Studio ユーザーズガイド

Digital Photo Presenter for Studio ユーザーズガイド タブレット E-GJ-001-V5.0.0 Digital Photo Presenter for Studio Digital Photo Presenter for Studio Digital Photo Presenter for Studio Digital Photo Presenter for Studio Digital Photo Presenter for Studio 1. 2.

More information

IPSJ SIG Technical Report Vol.2014-NL-216 No.6 Vol.2014-SLP-101 No /5/ MMDAgent 1. [1] Wikipedia[2] YouTube[3] [4] [5] [6] [7] 1 Graduate

IPSJ SIG Technical Report Vol.2014-NL-216 No.6 Vol.2014-SLP-101 No /5/ MMDAgent 1. [1] Wikipedia[2] YouTube[3] [4] [5] [6] [7] 1 Graduate 1 1 MMDAgent 1. [1] Wikipedia[2] YouTube[3] [4] [5] [6] [7] 1 Graduate School of Engineering Nagoya Institute of Technology. [7] 1 2. 2.1 2 1 [8] c 214 Information Processing Society of Japan 1 1 音声対話コンテンツ

More information

2. Eades 1) Kamada-Kawai 7) Fruchterman 2) 6) ACE 8) HDE 9) Kruskal MDS 13) 11) Kruskal AGI Active Graph Interface 3) Kruskal 5) Kruskal 4) 3. Kruskal

2. Eades 1) Kamada-Kawai 7) Fruchterman 2) 6) ACE 8) HDE 9) Kruskal MDS 13) 11) Kruskal AGI Active Graph Interface 3) Kruskal 5) Kruskal 4) 3. Kruskal 1 2 3 A projection-based method for interactive 3D visualization of complex graphs Masanori Takami, 1 Hiroshi Hosobe 2 and Ken Wakita 3 Proposed is a new interaction technique to manipulate graph layouts

More information

DEIM Forum 2019 H2-2 SuperSQL SuperSQL SQL SuperSQL Web SuperSQL DBMS Pi

DEIM Forum 2019 H2-2 SuperSQL SuperSQL SQL SuperSQL Web SuperSQL DBMS Pi DEIM Forum 2019 H2-2 SuperSQL 223 8522 3 14 1 E-mail: {terui,goto}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp SuperSQL SQL SuperSQL Web SuperSQL DBMS PipelineDB SuperSQL Web Web 1 SQL SuperSQL HTML SuperSQL

More information

Jp

Jp Jp 3 PC WT-7 i ii HDMI PDF Z 7 Z 6 Z7 https://downloadcenter.nikonimglib.com/ja/products/492/z_7.html Z6 https://downloadcenter.nikonimglib.com/ja/products/493/z_6.html HTML Z 7 https://onlinemanual.nikonimglib.com/z7_z6/ja/

More information

Microsoft Word - toyoshima-deim2011.doc

Microsoft Word - toyoshima-deim2011.doc DEIM Forum 2011 E9-4 252-0882 5322 252-0882 5322 E-mail: t09651yt, sashiori, kiyoki @sfc.keio.ac.jp CBIR A Meaning Recognition System for Sign-Logo by Color-Shape-Based Similarity Computations for Images

More information

WebRTC P2P,. Web,. WebRTC. WebRTC, P2P, i

WebRTC P2P,. Web,. WebRTC. WebRTC, P2P, i 28 WebRTC Design of multi-platform file sharing system using WebRTC 1170336 2017 2 28 WebRTC P2P,. Web,. WebRTC. WebRTC, P2P, i Abstract Design of multi-platform file sharing system using WebRTC Harumi

More information

WISS 2018 [2 4] [5,6] Query-by-Dancing Query-by- Dancing Cao [1] OpenPose 2 Ghias [7] Query by humming Chen [8] Query by rhythm Jang [9] Query-by-tapp

WISS 2018 [2 4] [5,6] Query-by-Dancing Query-by- Dancing Cao [1] OpenPose 2 Ghias [7] Query by humming Chen [8] Query by rhythm Jang [9] Query-by-tapp Query-by-Dancing: WISS 2018. Query-by-Dancing Query-by-Dancing 1 OpenPose [1] Copyright is held by the author(s). DJ DJ DJ WISS 2018 [2 4] [5,6] Query-by-Dancing Query-by- Dancing Cao [1] OpenPose 2 Ghias

More information

& Vol.5 No (Oct. 2015) TV 1,2,a) , Augmented TV TV AR Augmented Reality 3DCG TV Estimation of TV Screen Position and Ro

& Vol.5 No (Oct. 2015) TV 1,2,a) , Augmented TV TV AR Augmented Reality 3DCG TV Estimation of TV Screen Position and Ro TV 1,2,a) 1 2 2015 1 26, 2015 5 21 Augmented TV TV AR Augmented Reality 3DCG TV Estimation of TV Screen Position and Rotation Using Mobile Device Hiroyuki Kawakita 1,2,a) Toshio Nakagawa 1 Makoto Sato

More information

IPSJ SIG Technical Report Vol.2012-HCI-146 No /1/19 Twitter Web Twitter Web Twitter Web Web Activation of group communications by integrat

IPSJ SIG Technical Report Vol.2012-HCI-146 No /1/19 Twitter Web Twitter Web Twitter Web Web Activation of group communications by integrat Twitter 1 1 1 Web Twitter Web Twitter Web Web Activation of group communications by integrating information sharing services with Twitter Tatsuya Hiwatari, 1 Yu Suzuki 1 and Mitsuru Minakuchi 1 Many Web

More information

5104-toku3.indd

5104-toku3.indd 基礎 : 開発用ツール 橋本 直 ( 独 ) 科学技術振興機構 敷居が低くなった AR 開発 2007 AR AR 1 CPU GPU AR CG AR PC AR 2 Web Web Web 5,000 USB Web 10 1280 960 0fps AR PC AR AR 2007 AR AR Web PC AR Flash AR FLARToolKit Web AR IT AR ツールキットが提供する基本的な機能と開発者に求められるスキル

More information

(VKIR) VKIR VKIR DCT (R) (G) (B) Ward DCT i

(VKIR) VKIR VKIR DCT (R) (G) (B) Ward DCT i 24 Region-Based Image Retrieval using Color Histogram Feature 1130340 2013 3 1 (VKIR) VKIR VKIR DCT (R) (G) (B) 64 64 Ward 20 1 20 1 20. 5 10 2 DCT i Abstract Region-Based Image Retrieval using Color Histogram

More information

<83588389837593C195CA8D868151303888E48AC0975420976C2E706466>

<83588389837593C195CA8D868151303888E48AC0975420976C2E706466> 2013 pp. 99-119 1920 3 5 (1) (2) (1) 2001 19209 2 5 4000 3 12 130 75 25 (2) 23 1975 2 17 2 3 1917 19221989 81995 62 84 (3) (4) (5) (6) (7) (8) (narrative) (9) (10) 45 1987 61 70 (4) 2011 (5) 1985 205 235

More information

1 1 2 2 2.1...................................... 2 2.1.1..................... 2 2.2............................. 3 2.2.1........................................ 3 2.3...................................

More information

IPSJ SIG Technical Report Vol.2013-CE-119 No /3/15 C 1 1 Web C MILES(Model-based Interactive Learning Support) MILES 1. C C MILES(Model-based In

IPSJ SIG Technical Report Vol.2013-CE-119 No /3/15 C 1 1 Web C MILES(Model-based Interactive Learning Support) MILES 1. C C MILES(Model-based In C 1 1 Web C MILES(Model-based Interactive Learning Support) MILES 1. C C MILES(Model-based Interactive Learning Support) ( 1 ) C ( 2 ) 1 Meiji University, Tama, Kanagawa 214 8571, Japan MILES 2 MILES 3

More information

IPSJ SIG Technical Report Vol.2015-MUS-106 No.10 Vol.2015-EC-35 No /3/2 BGM 1,4,a) ,4 BGM. BGM. BGM BGM. BGM. BGM. BGM. 1.,. YouTube 201

IPSJ SIG Technical Report Vol.2015-MUS-106 No.10 Vol.2015-EC-35 No /3/2 BGM 1,4,a) ,4 BGM. BGM. BGM BGM. BGM. BGM. BGM. 1.,. YouTube 201 BGM 1,4,a) 1 2 2 3,4 BGM. BGM. BGM BGM. BGM. BGM. BGM. 1.,. YouTube 2015 1 100.. Web.. BGM.BGM [1]. BGM BGM 1 Waseda University, Shinjuku, Tokyo 169-8555, Japan 2 3 4 JST CREST a) ha-ru-ki@asagi.waseda.jp.

More information

IPSJ SIG Technical Report Vol.2018-SE-200 No /12/ Proposal of test description support environment for request acquisition in web appli

IPSJ SIG Technical Report Vol.2018-SE-200 No /12/ Proposal of test description support environment for request acquisition in web appli 1 1 1 2 Proposal of test description support environment for request acquisition in web application development Nakaji Yoshitake 1 Choi Eunjong 1 Iida Hajimu 1 Yoshida Norihiro 2 1. 1 ( ) 1 Nara Institute

More information

Vol. 23 No. 4 Oct. 2006 37 2 Kitchen of the Future 1 Kitchen of the Future 1 1 Kitchen of the Future LCD [7], [8] (Kitchen of the Future ) WWW [7], [3

Vol. 23 No. 4 Oct. 2006 37 2 Kitchen of the Future 1 Kitchen of the Future 1 1 Kitchen of the Future LCD [7], [8] (Kitchen of the Future ) WWW [7], [3 36 Kitchen of the Future: Kitchen of the Future Kitchen of the Future A kitchen is a place of food production, education, and communication. As it is more active place than other parts of a house, there

More information

Apple Samsung -5-23 USD/ CAGR4.4 Apple CAGR8.6 Samsung Apple Samsung Sharp Sony Panasonic Samsung HP Dell Lenovo Nokia Motorola 184

Apple Samsung -5-23 USD/ CAGR4.4 Apple CAGR8.6 Samsung Apple Samsung Sharp Sony Panasonic Samsung HP Dell Lenovo Nokia Motorola 184 5. 2008 1 3 5 3 7,000 2 2013-5-1 1 3 2 3 2008 2012 183 Apple Samsung -5-23 USD/ CAGR4.4 Apple CAGR8.6 Samsung Apple Samsung Sharp Sony Panasonic Samsung HP Dell Lenovo Nokia Motorola 184 2010 8.6 3-5-4

More information

DEIM Forum 2017 H2-2 Android LAN Android 1 Android LAN

DEIM Forum 2017 H2-2 Android LAN Android 1 Android LAN DEIM Forum 2017 H2-2 Android LAN 112-8610 2-1-1 163-8677 1-24-2 E-mail: {ayano,oguchi}@ogl.is.ocha.ac.jp, sane@cc.kogakuin.ac.jp Android 1 Android LAN Ayano KOYANAGI, Saneyasu YAMAGUCHI, and Masato OGUCHI

More information

Raspberry Pi BF BF BF Raspberry Pi PC USB HDMI OS SD SD OS Raspberry Pi Model B MicroUSB MicroSD OS SD GPIO HDMI USB LAN Raspberry Pi MicroUSB MicroSD

Raspberry Pi BF BF BF Raspberry Pi PC USB HDMI OS SD SD OS Raspberry Pi Model B MicroUSB MicroSD OS SD GPIO HDMI USB LAN Raspberry Pi MicroUSB MicroSD Raspberry Pi Arduino Arduino Raspberry Pi Arduino URL Raspberry Pi HDMI USB SD https://www.raspberrypi.org/ Python, Scratch Arduino PC USB https://www.arduino.cc/ Arduino SDK Processing Kinect for Windows,

More information

IPSJ SIG Technical Report Vol.2017-GN-100 No.40 Vol.2017-CDS-18 No.40 Vol.2017-DCC-15 No /1/21 1,a) 1,b) ,c) % 60% *1 1 Wakayama

IPSJ SIG Technical Report Vol.2017-GN-100 No.40 Vol.2017-CDS-18 No.40 Vol.2017-DCC-15 No /1/21 1,a) 1,b) ,c) % 60% *1 1 Wakayama 1,a) 1,b) 2 2 3 4,c) 2 1. 25% 60% *1 1 Wakayama University, Wakayama 640 8510, Japan 2 Minami Wakayama Medical Center, Wakayama 646 8558, Japan 3 Home-visit Nursing Station Tokei, Wakayama 646 0011, Japan

More information

IPSJ SIG Technical Report Vol.2011-DBS-153 No /11/3 Wikipedia Wikipedia Wikipedia Extracting Difference Information from Multilingual Wiki

IPSJ SIG Technical Report Vol.2011-DBS-153 No /11/3 Wikipedia Wikipedia Wikipedia Extracting Difference Information from Multilingual Wiki Wikipedia 1 2 3 Wikipedia Wikipedia Extracting Difference Information from Multilingual Wikipedia Yuya Fujiwara, 1 Yu Suzuki 2 and Akiyo Nadamoto 3 There are multilingual articles on the Wikipedia. The

More information

An Interactive Visualization System of Human Network for Multi-User Hiroki Akehata 11N F

An Interactive Visualization System of Human Network for Multi-User Hiroki Akehata 11N F An Interactive Visualization System of Human Network for Multi-User Hiroki Akehata 11N8100002F 2013 3 ,.,.,.,,., (, )..,,,.,,.,, SPYSEE. SPYSEE,,., 2,,.,,.,,,,.,,,.,, Microsoft Microsoft PixelSense Samsung

More information

IPSJ SIG Technical Report 1,a) 1,b) 1,c) 1,d) 2,e) 2,f) 2,g) 1. [1] [2] 2 [3] Osaka Prefecture University 1 1, Gakuencho, Naka, Sakai,

IPSJ SIG Technical Report 1,a) 1,b) 1,c) 1,d) 2,e) 2,f) 2,g) 1. [1] [2] 2 [3] Osaka Prefecture University 1 1, Gakuencho, Naka, Sakai, 1,a) 1,b) 1,c) 1,d) 2,e) 2,f) 2,g) 1. [1] [2] 2 [3] 1 599 8531 1 1 Osaka Prefecture University 1 1, Gakuencho, Naka, Sakai, Osaka 599 8531, Japan 2 565 0871 Osaka University 1 1, Yamadaoka, Suita, Osaka

More information

24 Region-Based Image Retrieval using Fuzzy Clustering

24 Region-Based Image Retrieval using Fuzzy Clustering 24 Region-Based Image Retrieval using Fuzzy Clustering 1130323 2013 3 9 Visual-key Image Retrieval(VKIR) k-means Fuzzy C-means 2 200 2 2 20 VKIR 5 18% 54% 7 30 Fuzzy C-means i Abstract Region-Based Image

More information

IPSJ SIG Technical Report Vol.2013-HCI-152 No /3/14 Sonoba.org: 1,a) 2 2 SNS SNS SNS Sonoba.org URL 1. Computer Mediated Communication (CMC) CM

IPSJ SIG Technical Report Vol.2013-HCI-152 No /3/14 Sonoba.org: 1,a) 2 2 SNS SNS SNS Sonoba.org URL 1. Computer Mediated Communication (CMC) CM Sonoba.org: 1,a) 2 2 SNS SNS SNS Sonoba.org URL 1. Computer Mediated Communication (CMC) CMC CMC 1 Graduate School of Media and Governance, Keio University, Fujisawa, Kanagawa 252 8520, Japan 2 Faculty

More information

ウェアラブル機器を使った科学館学習支援システムに関する調査研究

ウェアラブル機器を使った科学館学習支援システムに関する調査研究 ......................................................... -... -... -... -... -............ Flash............ ............ 90...... IT (wearable) GPS 1 LAN RFID 2 1GPS(Global Positioning System) 2 RFID(Radio

More information

1 Kinect for Windows M = [X Y Z] T M = [X Y Z ] T f (u,v) w 3.2 [11] [7] u = f X +u Z 0 δ u (X,Y,Z ) (5) v = f Y Z +v 0 δ v (X,Y,Z ) (6) w = Z +

1 Kinect for Windows M = [X Y Z] T M = [X Y Z ] T f (u,v) w 3.2 [11] [7] u = f X +u Z 0 δ u (X,Y,Z ) (5) v = f Y Z +v 0 δ v (X,Y,Z ) (6) w = Z + 3 3D 1,a) 1 1 Kinect (X, Y) 3D 3D 1. 2010 Microsoft Kinect for Windows SDK( (Kinect) SDK ) 3D [1], [2] [3] [4] [5] [10] 30fps [10] 3 Kinect 3 Kinect Kinect for Windows SDK 3 Microsoft 3 Kinect for Windows

More information

( 1) 3. Hilliges 1 Fig. 1 Overview image of the system 3) PhotoTOC 5) 1993 DigitalDesk 7) DigitalDesk Koike 2) Microsoft J.Kim 4). 2 c 2010

( 1) 3. Hilliges 1 Fig. 1 Overview image of the system 3) PhotoTOC 5) 1993 DigitalDesk 7) DigitalDesk Koike 2) Microsoft J.Kim 4). 2 c 2010 1 2 2 Automatic Tagging System through Discussing Photos Kazuma Mishimagi, 1 Masashi Toda 2 and Toshio Kawashima 2 Many media forms can be stored easily at present. Photographs, for example, can be easily

More information

Microsoft Word - deim2011_new-ichinose-20110325.doc

Microsoft Word - deim2011_new-ichinose-20110325.doc DEIM Forum 2011 B7-4 252-0882 5322 E-mail: {t08099ai, kurabaya, kiyoki}@sfc.keio.ac.jp A Music Search Database System with a Selector for Impressive-Sections of Continuous Data Aya ICHINOSE Shuichi KURABAYASHI

More information

愛知工業大学表1-4.indd

愛知工業大学表1-4.indd 23 3 11 25 10 10 15883 2652 150 30 32 3000 Web Web 24 2012 1 8 3 13 FM84.5 8 4CG 91 vol. 10 25 25 2013 1 13 CG 1 8 3 CG 1 Web 2 16 30 50 B3 2 2011 12 ver. 1 ver. 1 Ver. 2 3 Web DY 1 3 50.6 PC 72.8 PC Web

More information

(a) (b) 1 JavaScript Web Web Web CGI Web Web JavaScript Web mixi facebook SNS Web URL ID Web 1 JavaScript Web 1(a) 1(b) JavaScript & Web Web Web Webji

(a) (b) 1 JavaScript Web Web Web CGI Web Web JavaScript Web mixi facebook SNS Web URL ID Web 1 JavaScript Web 1(a) 1(b) JavaScript & Web Web Web Webji Webjig Web 1 1 1 1 Webjig / Web Web Web Web Web / Web Webjig Web DOM Web Webjig / Web Web Webjig: a visualization tool for analyzing user behaviors in dynamic web sites Mikio Kiura, 1 Masao Ohira, 1 Hidetake

More information

IPSJ SIG Technical Report Vol.2013-MBL-67 No.8 Vol.2013-CDS-8 No /9/13 WiFi Bluetooth SNFC:Smart Narrow Field Communication WiFi Bluet

IPSJ SIG Technical Report Vol.2013-MBL-67 No.8 Vol.2013-CDS-8 No /9/13 WiFi Bluetooth SNFC:Smart Narrow Field Communication WiFi Bluet WiFi Bluetooth SNFC:Smart Narrow Field Communication 1 1 2 3 4 WiFi Bluetooth SNFC Smart Narrow Field Communication SNFC MAC 10 20m QR NFC Android SDK iphone SDK WiFi Bluetooth 1. youtube 1 Google URL

More information

Windows7 OS Focus Follows Click, FFC FFC focus follows mouse, FFM Windows Macintosh FFC n n n n ms n n 4.2 2

Windows7 OS Focus Follows Click, FFC FFC focus follows mouse, FFM Windows Macintosh FFC n n n n ms n n 4.2 2 1 1, 2 A Mouse Cursor Operation for Overlapped Windowing 1 Shota Yamanaka 1 and Homei Miyashita 1, 2 In this paper we propose an operation method for overlapped windowing; a method that the user slides

More information

バイノーラルマイクを用いたライフログ映像のショット識別 Life-log Video Shot Discrimination using Binaural Microphone 山野貴一郎 伊藤克亘 法政大学大学院情報科学研究科 法政大学情報科学部 Kiichiro YAMANO Katunobu

バイノーラルマイクを用いたライフログ映像のショット識別 Life-log Video Shot Discrimination using Binaural Microphone 山野貴一郎 伊藤克亘 法政大学大学院情報科学研究科 法政大学情報科学部 Kiichiro YAMANO Katunobu バイノーラルマイクを用いたライフログ映像のショット識別 Life-log Video Shot Discrimination using Binaural Microphone 山野貴一郎 伊藤克亘 法政大学大学院情報科学研究科 法政大学情報科学部 Kiichiro YAMANO Katunobu ITOU Graduate School of Computer and Information Sciences,

More information

(a) 1 (b) 3. Gilbert Pernicka[2] Treibitz Schechner[3] Narasimhan [4] Kim [5] Nayar [6] [7][8][9] 2. X X X [10] [11] L L t L s L = L t + L s

(a) 1 (b) 3. Gilbert Pernicka[2] Treibitz Schechner[3] Narasimhan [4] Kim [5] Nayar [6] [7][8][9] 2. X X X [10] [11] L L t L s L = L t + L s 1 1 1, Extraction of Transmitted Light using Parallel High-frequency Illumination Kenichiro Tanaka 1 Yasuhiro Mukaigawa 1 Yasushi Yagi 1 Abstract: We propose a new sharpening method of transmitted scene

More information

ア 接続 管理 ーバ ー GPS インター ッ S C バス位置情報 バス ー ータ ー バス運行情報 & ニ ース 1 S バス停 ー C コンセン ータ CATV/FTTH GPS Web 2.2 Linux GPS Linux GPS c 2015 Infor

ア 接続 管理 ーバ ー GPS インター ッ S C バス位置情報 バス ー ータ ー バス運行情報 & ニ ース 1 S バス停 ー C コンセン ータ CATV/FTTH GPS Web 2.2 Linux GPS Linux GPS c 2015 Infor IoT 1 1 1 IoT M2M IoT Wi-SUN 920MHz 6LoWPAN MQTT IoT MQTT 1. [1] [2 5] IoTInternet of Things M2MMachine-to-Machine 1 Graduate School of Science and Technology, Meijo University [6] HEMSHome Energy Management

More information

4_26.dvi

4_26.dvi Vol. 52 No. 4 1537 1551 (Apr. 2011) 1 2, 3 1 3 Smart Skincare System: Remote Skincare Advice System Using Lifelogs Maki Nakagawa, 1 Koji Tsukada 2, 3 and Itiro Siio 1 Many women find it difficult to maintain

More information

TA3-4 31st Fuzzy System Symposium (Chofu, September 2-4, 2015) Interactive Recommendation System LeonardoKen Orihara, 1 Tomonori Hashiyama, 1

TA3-4 31st Fuzzy System Symposium (Chofu, September 2-4, 2015) Interactive Recommendation System LeonardoKen Orihara, 1 Tomonori Hashiyama, 1 Interactive Recommendation System 1 1 1 1 LeonardoKen Orihara, 1 Tomonori Hashiyama, 1 Shun ichi Tano 1 1 Graduate School of Information Systems, The University of Electro-Communications Abstract: The

More information

Computer Security Symposium October 2013 Android OS kub

Computer Security Symposium October 2013 Android OS kub Computer Security Symposium 2013 21-23 October 2013 Android OS 243-0292 1030 y.kita@ccy.kanagawa-it.ac.jp mirang@nw.kanagawa-it.ac.jp 889-2192 1-1 kubota@cs.miyazaki-u.ac.jp oka@cs.miyazaki-u.ac.jp Android

More information

Jp

Jp Jp WT-7 WT-7 FTP WT-7 WT-7 01 WT-7 011 FTP062 019 FTP069 Model Name WT-7 N1504 Model Name WT-7B N1535 ii Model Name WT-7A N1534 Model Name WT-7C N1536 PC 033 FTP FTP 084 Camera Control Pro 2 039 HTTP 043

More information

楽2ライブラリ Smart

楽2ライブラリ Smart P2WW-2993-01 はじめにお読みください Smart Smart Smart 2 4 6 PFU LIMITED 2014 10 12-14 16 楽 2 ライブラリ Smart とは Smart Smart モバイル機器でもデータを閲覧できます Smart for ios Smart for Android App Store Google Play 1 2 e ScanSnap 2 3

More information

Vol.11-HCI-15 No. 11//1 Xangle 5 Xangle 7. 5 Ubi-WA Finger-Mount 9 Digitrack 11 1 Fig. 1 Pointing operations with our method Xangle Xa

Vol.11-HCI-15 No. 11//1 Xangle 5 Xangle 7. 5 Ubi-WA Finger-Mount 9 Digitrack 11 1 Fig. 1 Pointing operations with our method Xangle Xa Vol.11-HCI-15 No. 11//1 GUI 1 1 1, 1 GUI Graphical User Interface Xangle Xangle A Pointing Method Using Accelerometers for Graphical User Interfaces Tatsuya Horie, 1 Takuya Katayama, 1 Tsutomu Terada 1,

More information

VB-C50i/VB-C50iR 使用説明書

VB-C50i/VB-C50iR 使用説明書 a ii iii iv a v vi vii viii d a a d ix a a d b a a a b x a a g a g a e a a xi a a a xii a a xiii xiv 1-2 1-3 d 1-4 1-5 1-6 1-7 1-8 1-9 1-10 1-11 1-12 2-2 2-3 a 2-4 a 2-5 a 2-6 2-7 2-8 2-9 2-10 2-11 2-12

More information

2 3, 4, 5 6 2. [1] [2] [3]., [4], () [3], [5]. Mel Frequency Cepstral Coefficients (MFCC) [9] Logan [4] MFCC MFCC Flexer [10] Bogdanov2010 [3] [14],,,

2 3, 4, 5 6 2. [1] [2] [3]., [4], () [3], [5]. Mel Frequency Cepstral Coefficients (MFCC) [9] Logan [4] MFCC MFCC Flexer [10] Bogdanov2010 [3] [14],,, DEIM Forum 2016 E1-4 525-8577 1 1-1 E-mail: is0111rs@ed.ritsumei.ac.jp, oku@fc.ritsumei.ac.jp, kawagoe@is.ritsumei.ac.jp 373 1.,, itunes Store 1, Web,., 4,300., [1], [2] [3],,, [4], ( ) [3], [5].,,.,,,,

More information

SNS Flickr Flickr Flickr SNS 2. SNS Twitter [2] Flickr [3] [4] Twitter Twitter Flickr Flickr Flickr Flickr Flickr Twitter 1 document 3. Flickr API Fli

SNS Flickr Flickr Flickr SNS 2. SNS Twitter [2] Flickr [3] [4] Twitter Twitter Flickr Flickr Flickr Flickr Flickr Twitter 1 document 3. Flickr API Fli SNS 1 2 2 2 2 2 2 SNS Detection of posted convergences with a photo post type SNS as a target and application to the tourism potential map Shusaku Yano 1 Masahiro Migita 2 Masashi Toda 2 Takayuki Nagai

More information

CASP 5 2 3 4 5 2. WildCAT WildCAT Java CASP CASP XML Context Query API CASP 1 Fig. 1 Outline Of Framework WildCAT CASP 3. 1.,,,.,

CASP 5 2 3 4 5 2. WildCAT WildCAT Java CASP CASP XML Context Query API CASP 1 Fig. 1 Outline Of Framework WildCAT CASP 3. 1.,,,., 1 2 3 3 4 5,, Proposal of Application Framework Synchronized with Portable Sensing Devices Akinori Sakamoto, 1 Kazuki Sakamoto, 2 Takaaki Myoujou, 3 Masahiro Ichikawa, 3 Ismail Arai 4 and Nobuhiko Nishio

More information

2016 : M SF

2016 : M SF 2016 M0113407 2017 3 2016 : M0113407 SF 1 1 1.1......................................... 1 2 4 2.1............................... 4 2.2................................... 5 2.3 [scene-by-scene]..............

More information

2016 3

2016 3 2016 3 ,,. ( ),.,., ( ). IT 4., MITEMIRU,.,. MITEMIRU,,. MITEMIRU,.,,.,,.,.,,,.,,,.,.,.,. 1 1 2 2 2.1............................... 2 2.2................................. 2 2.3...................................

More information

[8] Inoue[9] Web [10] [11] [12] [1] c 2014 Information Processing Society of Japan 2

[8] Inoue[9] Web [10] [11] [12] [1] c 2014 Information Processing Society of Japan 2 1 2 2 1 Driver Driver Navigator Driver 2 Driver Pair programming system based on text chat: A preliminary study on learner-learner interaction Kosuke Sasaki 1 Yugo Hayashi 2 Tomoo Inoue 2 1. [1] 2 1 1

More information

i

i 14 i ii iii iv v vi 14 13 86 13 12 28 14 16 14 15 31 (1) 13 12 28 20 (2) (3) 2 (4) (5) 14 14 50 48 3 11 11 22 14 15 10 14 20 21 20 (1) 14 (2) 14 4 (3) (4) (5) 12 12 (6) 14 15 5 6 7 8 9 10 7

More information

25 About what prevent spoofing of misusing a session information

25 About what prevent spoofing of misusing a session information 25 About what prevent spoofing of misusing a session information 1140349 2014 2 28 Web Web [1]. [2] SAS-2(Simple And Secure password authentication protocol, ver.2)[3] SAS-2 i Abstract About what prevent

More information

25 3 26 2 14 12350917 3 Cyclesports USBhostAPI Arduino 3 LED LED LED Cyclesports Cyclesports 1 4 1.1...................................... 4 1.2................. 5 1.3.................................

More information

IPSJ SIG Technical Report Vol.2012-HCI-149 No /7/20 1 1,2 1 (HMD: Head Mounted Display) HMD HMD,,,, An Information Presentation Method for Weara

IPSJ SIG Technical Report Vol.2012-HCI-149 No /7/20 1 1,2 1 (HMD: Head Mounted Display) HMD HMD,,,, An Information Presentation Method for Weara 1 1,2 1 (: Head Mounted Display),,,, An Information Presentation Method for Wearable Displays Considering Surrounding Conditions in Wearable Computing Environments Masayuki Nakao 1 Tsutomu Terada 1,2 Masahiko

More information

1 Web DTN DTN 2. 2 DTN DTN Epidemic [5] Spray and Wait [6] DTN Android Twitter [7] 2 2 DTN 10km 50m % %Epidemic 99% 13.4% 10km DTN [8] 2

1 Web DTN DTN 2. 2 DTN DTN Epidemic [5] Spray and Wait [6] DTN Android Twitter [7] 2 2 DTN 10km 50m % %Epidemic 99% 13.4% 10km DTN [8] 2 DEIM Forum 2014 E7-1 Web DTN 112 8610 2-1-1 UCLA Computer Science Department 3803 Boelter Hall, Los Angeles, CA 90095-1596, USA E-mail: yuka@ogl.is.ocha.ac.jp, mineo@cs.ucla.edu, oguchi@computer.org Web

More information

PDA 8) ID ZigBee 10) 7) 12) 10) 11) ( 1) Bluetooth Bluetooth Bluetooth 9) WiFi WiFi NTP (X,Y,Z 3 ) ZigBee 10) Fig. 1 1 Overview of recording, analyzin

PDA 8) ID ZigBee 10) 7) 12) 10) 11) ( 1) Bluetooth Bluetooth Bluetooth 9) WiFi WiFi NTP (X,Y,Z 3 ) ZigBee 10) Fig. 1 1 Overview of recording, analyzin 1 1, 2 1 3 SyncPlay Workflow Measurement and Analysis with Wireless Sensor Network Systems Futoshi Naya, 1 Ren Ohmura, 1, 2 Haruo Noma 1 and Kiyoshi Kogure 3 We have been investigating a sensor network

More information

1 2 3 マルチメディア, 分散, 協調とモバイル (DICOMO2013) シンポジウム 平成 25 年 7 月.,.,,.,. Surrogate Diner,., Surrogate Diner,, 3,, Surrogate Diner. An Interface Agent for Ps

1 2 3 マルチメディア, 分散, 協調とモバイル (DICOMO2013) シンポジウム 平成 25 年 7 月.,.,,.,. Surrogate Diner,., Surrogate Diner,, 3,, Surrogate Diner. An Interface Agent for Ps 1 2 3 マルチメディア, 分散, 協調とモバイル (DICOMO2013) シンポジウム 平成 25 年 7 月.,.,,.. Surrogate Diner,., Surrogate Diner, 3,, Surrogate Diner. An Interface Agent for Pseudo Co-Dining with a Remote Person TAKUTO SHIOHARA 1

More information

LAN 1 FTP 050 PC 014 FTP HTTP 022 Camera Control Pro 2 ii

LAN 1 FTP 050 PC 014 FTP HTTP 022 Camera Control Pro 2 ii Jp LAN 1 FTP 050 PC 014 FTP 2 019 HTTP 022 Camera Control Pro 2 ii 3 WT-6 WT-5 055 A 05 FTP041 Nikon Manual Viewer 2 App StoreGoogle Play * iii http://www.nikon-image.com/support/ XQD CompactFlashSanDisk

More information

WebRTC P2P Web Proxy P2P Web Proxy WebRTC WebRTC Web, HTTP, WebRTC, P2P i

WebRTC P2P Web Proxy P2P Web Proxy WebRTC WebRTC Web, HTTP, WebRTC, P2P i 26 WebRTC The data distribution system using browser cache sharing and WebRTC 1150361 2015/02/27 WebRTC P2P Web Proxy P2P Web Proxy WebRTC WebRTC Web, HTTP, WebRTC, P2P i Abstract The data distribution

More information

DPA,, ShareLog 3) 4) 2.2 Strino Strino STRain-based user Interface with tacticle of elastic Natural ObjectsStrino 1 Strino ) PC Log-Log (2007 6)

DPA,, ShareLog 3) 4) 2.2 Strino Strino STRain-based user Interface with tacticle of elastic Natural ObjectsStrino 1 Strino ) PC Log-Log (2007 6) 1 2 1 3 Experimental Evaluation of Convenient Strain Measurement Using a Magnet for Digital Public Art Junghyun Kim, 1 Makoto Iida, 2 Takeshi Naemura 1 and Hiroyuki Ota 3 We present a basic technology

More information

GUI(Graphical User Interface) GUI CLI(Command Line Interface) GUI

GUI(Graphical User Interface) GUI CLI(Command Line Interface) GUI 24 GUI(Graphical User Interface) GUI CLI(Command Line Interface) GUI 1 1 1.1 GUI................................... 1 1.2 GUI.................... 1 1.2.1.......................... 1 1.2.2...........................

More information