顔認識の為のリアルタイム特徴抽出

Size: px
Start display at page:

Download "顔認識の為のリアルタイム特徴抽出"

Transcription

1

2

3

4 DNA 1990 DNA 100 DNA NEC NTT [1][2] 100 WDM CCD 3

5 OS CPU : Pentium4 1.5GHz Memory : 512MB Camera : CMOS USB1.1 : CCD PCI : FinePix50i USB1.1 : BT878 PCI : IEEE1394 PCI Microsoft Visual Studio 6.0 Enterprise DirectX SDK 8.1 OS Microsoft Windows XP Professional OS Windows OS 4

6 DNA VoiceGATE FacePass DNA NTT DNA IC NEC SecureFinger 5

7 6 2.2 DNA 2.2 DNA...

8 ( 2.1) 2.1 7

9 .. RGB 3 RGB HSV USB CCD USB PC WDM CCD. 100% 8

10 . Windows Driver Model (WDM) [3].. WDM 1992 Video for Windows [4] WDM 32 DirectShow(3.13 ) DVD/MPEG ( ) (VBI) (VPE) Windows WDM WDM WDM DirectShow WDM DirectShow WDM DirectShow Windows (DDK) KsTune.ax KsXbar.ax KsCap.ax USB 1394 DV TV WDM DirectShow 3.2 9

11 3.2 WDM Video Capture Architecture 3.2 KsTune.ax KsXbar.ax KsCap.ax DirectShow KsTune.ax KsXbar.ax KsCap.ax ( 3 ).. DirectX Microsoft [5] SDK(Software Development Kit) DirectX DirectX COM(Component Object Model) COM DirectX Visual C++ Visual Basic DirectX DirectX

12 3.1 DirectX [5] DirectXGraphics API DirectX7 DirectDraw Direct3D DirectXAudio DirectInput DirectPlay DirectShow DirectSetup API DirectX7 DirectSound DirectMusic API DirectX API DirectShow.. DirectShow [5] DirectShow DirectShow 3 DirectShow DirectShow DirectShow DirectShow 3.3 DirectShow 11

13 3.3 DirectShow 3.3 TV SMPTE.. USB [6] 3.4 Pin Pin Pin

14 DirectShow 5 ( IGraphBuilder ) ( IBaseFilter ) ( IBaseFilter ) ( ISampleGrabber ) ( IMediaControl ) USB BYTE OnTimer USB DirectShow 3.2 DirectShow #include <dshow.h> #include <streams.h> #include <qedit.h> 5 DirectShow ( IGraphBuilder ) m_pgraph ( IBaseFilter ) psrc ( IBaseFilter ) pgrabber ( ISampleGrabber ) m_pgrabberinterface ( IMediaControl ) pmediacontrol 13

15 CoCreateInstance( CLSID_FilterGraph ) 2. ICreateDevNum, IEnumMoniker, IMoniker, IBaseFilter 3. ICaptureGraphBuilder CoCreateInstance( CLSID_CaptureGraphBuilder2 ) 3-2. ICaptureGraphBuilder2::SetFilterGraph((IFilterGraph)pGraph) 4. IFileSinkFilter 4-1. ICaptureGraphBuilder2::SetOutputFileName(...) 4-2. ICaptureGraphBuilder2::RenderStream(...) 5. IMediaControl::Run() ICreateDevEnum CoCreateInstance 2-2. IEnumMoniker ICreateDevEnum::CreateClassEnumerator (,...) 2-3. IMoniker IEnumMoniker::Next 2-4. IBaseFilter IMoniker::BindToObject(..., (void **)psrc) IEnumFilters IFilterGraph::EnumFilters 2. IBaseFilter IEnumFilters::Next(1, (IBaseFilter **), (ULONG *)) 3. FILTER_INFO IBaseFilter::QueryFilterInfo(FILTER_INFO *) DirectShow SampleGrabber ISampleGrabber ISampleGrabberCB ISampleGrabber::SetCallBack() 3.3 BufferCB BufferCB 14

16 3. 0. ISampleGrabberCB CoCreateInstance(CLSID_SampleGrabber,..., IID_IBaseFilter,...) IBaseFilter::QueryInterfase(IID_ISampleGrabber,...) 4-2. ISampleGrabber::SetMediaType(AM_MEDIA_TYPE *) 4-3. IFilterGraph::AddFilter(IBaseFilter *) SetBufferSample(FALSE), SetOneShot(FALSE) SetCallback() : 1 ISampleGrabberCB 2 0 SampleCB, 1 BufferCB 5. ISampleGrabber::GetCurrentBuffer(...) IEnumPins IBaseFilter::EnumPins 2. IPin IEnumPins::Next(1, (IPin **), 0) 3. (IN,,OUT) FILTER_INFO IPin::QueryDirection(PIN_DIRECTION *) IPin *GetPin(IBaseFilter *pfilter, PIN_DIRECTION PinDir) { } BOOL bfound = FALSE; IEnumPins *penum; IPin *ppin; pfilter->enumpins(&penum); while(penum->next(1, &ppin, 0) == S_OK) { PIN_DIRECTION PinDirThis; ppin->querydirection(&pindirthis); if (bfound = (PinDir == PinDirThis)) // break break; ppin->release(); } penum->release(); return (bfound? ppin : 0); 15

17 ISampleGrabberCB COM CUnknown IUnknown AddRef Release QueryInterface NonDelegatingQueryInterface

18 DirectShow CaptureGraphBuilder FilterGraph CaptureGraphBuilder CaptureGraphBuilder FilterGraph DIB [7]

19

20 (color specification system)[8] RGB nm (Blue) 546.1nm (Green) 700.0nm (Red) 3 3 RGB RGB 1. RGB R G B 2. RGB HSV HSV (Hue) (Saturation) (Intensity Value) 3.6 RGB HSV 19

21 RGB HSV RGB 3.8 HSV ( ) 20

22 RGB HSV RGB 3.10 RGB HSV HSV 21

23 RGB HSV [8] 3.11 RGB HSV max = max (r, g, b); min = min (r, g, b); if (g == max) { hue= (b - r) / ( max - min ) * ; } else if (b == max) { hue= (r - g) / ( max - min ) * ; } else if (g < b) { hue= (g - b) / ( max - min ) * ; } else { hue= (g - b) / ( max - min ) * 60; } max = max (r, g, b); min = min (r, g, b); Saturation = ( max - min ) / max * 100; Value = max (r, g, b) / 2.55 H = S = V =

24 .. (FinePix50i) RGB 3.12 RGB HSV R G B H S V RGB 3.12 RGB HSV HSV H V H H S [9] 23

25 3.12 H S H[0 359] 3 0 S[0 100] V[0 100] V H [9] H 6 38 H HSV RGB (#FFCC99) 3.13 RGB 2 (#FFFFFF) 3.13 RGB

26 .. RGB 3.11 H 0 30 (#FFFFFF) (#000000) HSV RGB 3.16 RGB 25

27 HSV.. X 3.18 X

28 3.20 No YES YES No No YES

29 3.21 ➁ ➀ 3.21 HSV Y X X Y

30 K.Ohba and K.Ikeuchi [10] L.Itti [11] 29

31 [8] fx = s(i+1,j) - s(i,j) fy = s(i,j+1) - s(i,j) y(i,j) = fx fx + fy fy y(i,j) = fx + fy θ = tan-1 (fy/fx)

32 .. (Laplacian) L(i,j) = x(i,j) 4 - { x(i-1,j)+x(i+1,j)+x(i,j-1)+x(i,j+1) } [12]

33 4.3 (i,j) f(i,j) i j (0,0) (i,j) 3 3 (i,j) g(i,j) 3 3 (i-1,j-1) f(i,j-1) f(i+1,j-1) f(i-1,j) f(i,j) f(i+1,j) f(i-1,j+1) f(i,j+1) f(i+1,j+1).. 2 [8] 32

34

35 f x f 2 y ) f = ( f x + f y f x f y 2 y ) f = ( f x + f

36 f x f y 2 y ) f = ( f x + f f x f y 2 y ) f = ( f x + f

37 .. (1 ) 4.11 X

38 ... ( 4.12) ( 4.13) ( 4.14) ( 4.15)

39 No YES No YES No YES 4.16 X X 7 38

40 No YES No YES YES YES No 4.17 Y 4 X Y 20 39

41 .. (a) (b) 2 95 (c) (d) (e) 4.18 (4.4.2 ) (a) (b) (e) 40

42 .. (a) (b) (c)4 (d) (e) 4.19 (4.4.3 ) 4.19(a) (b) (e) 41

43 .. (a) (b) (c)4 (d) (e) 4.20 (4.4.4 ) (4.4.3 ) 4.20(a) (b) (e) 42

44 .. (a) (b) (c) (d) (e) 4.21 (4.4.5 ) 4.21(a) (b) (e) 43

45 .. (a) (b) (c)2 (d) (e) 4.22 (4.4.6 ) (a) (d) 44

46 fps fps fps (a) ( (b) ( ) (c) ( )

47 . WDM HSV WDM 46

48 47

49 48

50 [1], 175, Vol.64, No.3, pp [2] Vol.56 No.7 pp [3] ChrisCant WDM 2000 [4] Microsoft Corporation, MSDN Library [5] Microsoft Corporation, DirectX 8.1 SDK Document [6] DirectX [7] Intel Corporation, Open Source Computer Vision Library Reference Manual [8] CG 1999 [9] Jamie Sherrah and Shaogang Gong, Skin Colour Analysis, University of Edinburgh, May, [10] K.Ohba and K.Ikeuchi, Detectability, uniqueness and veliability of eigen-windows for stable verification of partially occluded objects, IEEE Trans. Pattern Analysis and Machine Intelligence, Vol.19, No.9, pp , Sep., [11] L.Itti, C.Koch, and ENiebur, A Model of saliency-based visual attention for rapid scene analysis, IEEE Trans. Pattern Analysis and Machine Intelligence,Vol.20, No.11, pp , Nov., [12] " " A, Vol. J84-A, No. 6, pp , Jun.,

ORiN CAO USB (3) CAO CAO USB ORiN CAO USB 1 2 (4) CAO 3 CAO USB 4 PC OS 1 CPU:Pentium IV 2. 8GHz :512MByte Windows XP SP2 Professional ORiN2 SDK USB D

ORiN CAO USB (3) CAO CAO USB ORiN CAO USB 1 2 (4) CAO 3 CAO USB 4 PC OS 1 CPU:Pentium IV 2. 8GHz :512MByte Windows XP SP2 Professional ORiN2 SDK USB D ORiN FA ORiN USB ORiN 1 1 ORiN CAO 1 1 USB USB ORiN 2 3 2 ( ) 3 1 Web ORiN USB ( ) ( ) ( ) ORiN CAO USB (3) CAO CAO USB ORiN CAO USB 1 2 (4) CAO 3 CAO USB 4 PC OS 1 CPU:Pentium IV 2. 8GHz :512MByte Windows

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

untitled

untitled LAUNCH SYSTEM V 2.3 VFit VTeach VRange 1 2011 3 AccuVectorX Launch System...4 (Windows XP)...5 (Windows Vista/Windows 7)...6...6...7...7 AccuSport AccuVectorX...8 Windows XP...9 Windows Vista 7. 10 (Windows

More information

橡Webcamユーザーガイド03.PDF

橡Webcamユーザーガイド03.PDF Desktop On-Call Version 4 Webcam extension Pak for Windows Webcam extension Pak Desktop On-Call Version 4 Web PC i Desktop On-Call Version 4 PC PC Desktop On-Call Version 4 PC Windows 98 Windows 98SE Windows

More information

Windows XP Windows Me Windows 98 Second Edition Windows /... 25

Windows XP Windows Me Windows 98 Second Edition Windows /... 25 LVC-MPEG2/P_V01 PCI TV TUNER & VIDEO CAPTURE BOARD TV LVC-MPEG2/P ... 1... 3... 3... 4... 5... 5... 7... 8... 8... 10... 15 Windows XP... 15 Windows Me... 18 Windows 98 Second Edition... 19 Windows 2000...

More information

DVDfunSTUDIO 2.6

DVDfunSTUDIO 2.6 DVDfunSTUDIO 2.6 Windows DVDfunSTUDIO DVDfunSTUDIO /...3...4...5...6 DVDfunSTUDIO...7...8 DVD-MovieAlbumSE 4...9 DVDfunSTUDIO DVDfunSTUDIO...10 DVDfunSTUDIO...11...12 DVDfunSTUDIO DVD...13...14...15...

More information

IC 2002 6 12 NEC CK1505-01A IC 1 4 2 5 3 IC 10 3.1 IC...10 3.2...10 4 IC 11 5 USB 13 5.1 USB...13 5.2 USB...15 6 IC 22 7 23 7.1...23 7.2...24 7.3...27 CK1505-01A IC 1 IC USB IC OS USB Windows Windows98(98SE)/Me/2000/XP

More information

SmartLMSユーザーズガイド<講師編>

SmartLMSユーザーズガイド<講師編> SmartLearning Management System SmartLMS (1) (2) (3) (4) (3) (5) Microsoft MS PowerPoint DirectX Windows Windows NT Windows Media Microsoft Corporation Intel Pentium Intel Corporation NEC 2003-2004 NEC

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

HP xw9400 Workstation

HP xw9400 Workstation HP xw9400 Workstation HP xw9400 Workstation AMD Opteron TM PCI Express x16 64 PCI Express x16 2 USB2.0 8 IEEE1394 2 8DIMM HP HP xw9400 Workstation HP CPU HP CPU 240W CPU HP xw9400 HP CPU CPU CPU CPU Sound

More information

DPCK-US10

DPCK-US10 3-064-500-02(1) DPCK-US10 2000 Sony Corporation DPCK-US10 USB MGI PhotoSuite MGI PhotoSuite PhotoSuite V8.1 Windows ) VideoWave SE+ Windows PhotoSuite SE V1.1(Macintosh ) DPCK-US10 USB USB MGI PhotoSuite

More information

ICS-01B-xxxx

ICS-01B-xxxx CS-01B-762 Learning Environment with Speech and mage Understanding 255 ... 5 1... 6 1.1... 6 1.2... 6 1.3... 8 1.4... 9 2... 10 2.1... 10 2.2...11 2.2.1...11 2.2.2... 12 2.2.3... 13 2.2.4... 14 2.2.5...

More information

Printer Driverセットアップ編

Printer Driverセットアップ編 Microsoft MS-DOS Windows Windows Server Windows Vista Internet Explorer PowerPoint Outlook Microsoft Corporation Microsoft Corporation Intel Intel Inside Itanium Pentium Intel Corporation USB-IF Universal

More information

Gaze Head Eye (a) deg (b) 45 deg (c) 9 deg 1: - 1(b) - [5], [6] [7] Stahl [8], [9] Fang [1], [11] Itti [12] Itti [13] [7] Fang [1],

Gaze Head Eye (a) deg (b) 45 deg (c) 9 deg 1: - 1(b) - [5], [6] [7] Stahl [8], [9] Fang [1], [11] Itti [12] Itti [13] [7] Fang [1], 1 1 1 Structure from Motion - 1 Ville [1] NAC EMR-9 [2] 1 Osaka University [3], [4] 1 1(a) 1(c) 9 9 9 c 216 Information Processing Society of Japan 1 Gaze Head Eye (a) deg (b) 45 deg (c) 9 deg 1: - 1(b)

More information

MCap 説明書

MCap 説明書 Version 0.992 MCap MCap tetsu@myjibika.com MCAP 1 MCAP 1 MCAP 2 2 DV(IEEE1394) PC 2 DV 2 2 3 PC 3 3 4 LAN 4 PC 4 5 5 5 6 6 MCAP 6 MCap 6 MCap 6 6 6 6 8 8 PC 8 DirectX 9 10 11 RS_Base MCap ID 11 MCap 12

More information

顔画像を用いた個人認証システムの性能検討に関する研究

顔画像を用いた個人認証システムの性能検討に関する研究 12 Research on performance examination of individual attestation system using face image 1010429 2001 2 5 1997 FaceIt The age using various biometrics for the attestation with the computer to attest the

More information

iphone GPGPU GPU OpenCL Mac OS X Snow LeopardOpenCL iphone OpenCL OpenCL NVIDIA GPU CUDA GPU GPU GPU 15 GPU GPU CPU GPU iii OpenMP MPI CPU OpenCL CUDA OpenCL CPU OpenCL GPU NVIDIA Fermi GPU Fermi GPU GPU

More information

_CS6.indd

_CS6.indd ULTIMATE PREMIUM STANDARD BIM Autodesk Building Design Suite BIM 3 Autodesk Building Design Suite Autodesk Building Design Suite Standard: DWG DWG AutoCAD Autodesk Building Design Suite Ultimate: BIM Premium

More information

1(a) (b),(c) - [5], [6] Itti [12] [13] gaze eyeball head 2: [time] [7] Stahl [8], [9] Fang [1], [11] 3 -

1(a) (b),(c) - [5], [6] Itti [12] [13] gaze eyeball head 2: [time] [7] Stahl [8], [9] Fang [1], [11] 3 - Vol216-CVIM-22 No18 216/5/12 1 1 1 Structure from Motion - 1 8% Tobii Pro TX3 NAC EMR ACTUS Eye Tribe Tobii Pro Glass NAC EMR-9 Pupil Headset Ville [1] EMR-9 [2] 1 Osaka University Gaze Head Eye (a) deg

More information

07-二村幸孝・出口大輔.indd

07-二村幸孝・出口大輔.indd GPU Graphics Processing Units HPC High Performance Computing GPU GPGPU General-Purpose computation on GPU CPU GPU GPU *1 Intel Quad-Core Xeon E5472 3.0 GHz 2 6 MB L2 cache 1600 MHz FSB 80 GFlops 1 nvidia

More information

DCR-SR100

DCR-SR100 x ImageMixer for HDD Camcorder 2-672-704-01(1) x http://www.pixela.co.jp/oem/sony/j/ x ImageMixer for HDD Camcorder 06-6633-3900 95 DCR-SR100 6 DVD 9 / 13 DVD 20 25 28 / 100 VOC Printed in Japan 2006 Sony

More information

InterSafe Personal_v2.3 ユーザーズガイド_初版

InterSafe Personal_v2.3 ユーザーズガイド_初版 InterSafe Personal v2.3 1. 3 1-1. 4 1-2. 5 InterSafe Personal 5 1-3. InterSafe Personal 6 6 7 8 2. 9 2-1. 10 2-2. 14 2-3. 17 17 17 2 18 19 21 3. 22 3-1. 23 23 3-2. [ ] 24 [ ] 24 [ ] 24 3-3. [ ] 25 [ ]

More information

VQS Collabo Homepage

VQS Collabo Homepage VQS Collabo Homepage http://www.vqscollabo.jp FAQ VQS...1...2...2 VQS...2...3...3...4 ( )...7...7...8 FAQ...8 VQS...9 FAQ... 10 VQS Internet Explorer... 11... 15 PROXY... 15 FinePrint5... 16... 17 FAQ...

More information

XGA DV11J

XGA DV11J XGA Digital Presenter DV11G/DV11J User s Manual English Deutsch Français Italiano Español Svenska XGA DV11J NEC XGA DV11JDV11J VCCI B Microsoft WindowsMicrosoft Corporation 1 2 3 43 5 J-2 J-3 J-4 100 NEC

More information

EPSON Easy Interactive Tools Ver.2 Operation Guide

EPSON Easy Interactive Tools Ver.2 Operation Guide Easy Interactive Tools Ver.2 Easy Interactive Tools Ver.2 Easy Interactive Tools Easy Interactive Tools s p.10 Mac OS XEasy Interactive Driver Ver.2.XX s Easy Interactive Pen s p.7 2 2Easy Interactive

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

2004 TV Indexing Index Auto-Making Soccer Video Digests :2005 2 2 3603U043-0 Katsunori Kawaguchi 1 7 1.1.................................... 7 1.2.................................. 7 1.3..................................

More information

A Graduation Thesis of College of Engineering, Chubu University Pose Estimation by Regression Analysis with Depth Information Yoshiki Agata

A Graduation Thesis of College of Engineering, Chubu University Pose Estimation by Regression Analysis with Depth Information Yoshiki Agata 2011 3 A Graduation Thesis of College of Engineering, Chubu University Pose Estimation by Regression Analysis with Depth Information Yoshiki Agata CG [2] [3][4] 3 3 [1] HOG HOG TOF(Time Of Flight) iii

More information

MSAC-EX1

MSAC-EX1 3-218-418-02 (1) ExpressCard MSAC-EX1 b 2 MSAC-EX1 3 Program 2007 Sony Corporation Documentation 2007 Sony Corporation Memory Stick MagicGate Memory Stick Memory Stick Duo MagicGate Memory Stick Duo Memory

More information

1 Table 1: Identification by color of voxel Voxel Mode of expression Nothing Other 1 Orange 2 Blue 3 Yellow 4 SSL Humanoid SSL-Vision 3 3 [, 21] 8 325

1 Table 1: Identification by color of voxel Voxel Mode of expression Nothing Other 1 Orange 2 Blue 3 Yellow 4 SSL Humanoid SSL-Vision 3 3 [, 21] 8 325 社団法人人工知能学会 Japanese Society for Artificial Intelligence 人工知能学会研究会資料 JSAI Technical Report SIG-Challenge-B3 (5/5) RoboCup SSL Humanoid A Proposal and its Application of Color Voxel Server for RoboCup SSL

More information

untitled

untitled EPX-64S Rev 1.2 1.. 3 1.1.......... 3 1.2....... 3 1.3....... 4 1.4... 4 1.5... 4 2........ 5 2.1.... 5 EPX64S_GetNumberOfDevices........ 5 EPX64S_GetSerialNumber........ 6 EPX64S_Open....... 7 EPX64S_OpenBySerialNumber

More information

JIIAセミナー

JIIAセミナー Digital Interface IIDC URL teli.co.jp/ E-Mail http://www.toshiba-teli.co.jp teli.co.jp/ s-itokawa@toshiba-teli.co.jpteli.co.jp EIA,NTSC EIA,NTSC 4-5 JIIA JIIA - / Digital Interface Digital Interface IEEE1394

More information

LMC-CA64U2K

LMC-CA64U2K LMC-CA64U2K V04 INTERNAL USB 2.0 Memory Card READER ... 1... 4... 5... 5... 6... 8... 8... 12 USB 2.0... 14... 15... 15 USB... 16 USB... 19... 24 Windows XP... 24 Windows Me... 25 Windows 98... 28 WIndows

More information

EPSON EB-S12H/S02H User’s Guide

EPSON EB-S12H/S02H User’s Guide a s g [ ] s p.101 - ... 2... 7... 7... 7 USBUSB...7...7 EB-S12H... 8...8... 8...8... 8... 9 /...9...10...11...12... 13... 15...16... 18...18... 19...19... 20...21...22 USB...24... 26...26...27...28 USB...29...

More information

EPSON EH-TW400 User’s Guide

EPSON EH-TW400 User’s Guide a s g [ ] s p.100 - ... 2... 7 /...7...8...9...10... 11... 13...13... 15...15... 16...16... 17...17...20 USB...21... 24...24...25 USB...25... 25... 26...28... 29... 29...30...30...33... 33... 34...34...34...35...35...36...

More information

EPSON EasyMP Slide Converter Ver.1.16 Operation Guide

EPSON EasyMP Slide Converter Ver.1.16 Operation Guide EasyMP Slide Converter EasyMP Slide Converter EasyMP Slide Converter... 4 EasyMP Slide Converter... 4... 5...5...5 EasyMP Slide Converter...20 PowerPointFSE 20...20...20... 21... 21... 21... 22 PowerPoint

More information

2nd-1.dvi

2nd-1.dvi 7 ZEAL : OptiPlex GX 7 ZEAL ZEAL-Z ZEAL-C ZEAL-C CPU Memory OS Intel Pentium (3GHz) GB Windows Vista Business (-bit) ZEAL Microsoft Windows Mobile 5. ZEAL Bluetooth 3 ZEAL 5 Microsoft Visual C# 5 66 OS

More information

IPSJ SIG Technical Report Vol.2012-IS-119 No /3/ Web A Multi-story e-picture Book with the Degree-of-interest Extraction Function

IPSJ SIG Technical Report Vol.2012-IS-119 No /3/ Web A Multi-story e-picture Book with the Degree-of-interest Extraction Function 1 2 2 3 4 2 Web A Multi-story e-picture Book with the Degree-of-interest Extraction Function Kunimichi Shibata, 1 Masakuni Moriyama, 2 Kazuhide Yukawa, 2 Koji Ueno, 3 Kazuo Takahashi 4 and Shigeo Kaneda

More information

2008 : 80725872 1 2 2 3 2.1.......................................... 3 2.2....................................... 3 2.3......................................... 4 2.4 ()..................................

More information

l3.pdf

l3.pdf 3 (R) (G) (B) 3 RGB PCCS 3 CIE XYZ xy CIE LUV CIE LAB srgbhsvyiqycbcr 3.1 3.1.1 3.1 24 3 3.1 3.2 380 nm 780 nm 650 nm 400 nm 3.2 3.1.2 3.3 3.2 25 3.3 3.4 2 LMS 3 3.4 L M L 3.2 PCCS CIE XYZCIE LUVCIE 26

More information

HP Compaq Business Desktop dx7300シリーズ

HP Compaq Business Desktop dx7300シリーズ 本カタログは 旧製品もしくはすでに販売終了した製品のカタログです 最新版のカタログ 現在販売している製品のカタログは下記サイトにございます www.hp.com/jp/catalog その他ご不明な点は下記お問い合わせ窓口までご連絡ください HP Directplus 9 00 19 00 5/1 10 00 17 00 03-6416-6222 HP 9 00 19 00 10 00 17 00

More information

20 200302878 1 5 2 7 2.1........................... 7 2.1.1 TBIR............................... 7 2.1.2 CBIR............................... 9 2.2............................... 10 2.2.1 2...............................

More information

EPSON EasyMP Slide Converter Ver.1.01 Operation Guide

EPSON EasyMP Slide Converter Ver.1.01 Operation Guide EasyMP Slide Converter EasyMP Slide Converter EasyMP Slide Converter... 4 EasyMP Slide Converter... 4... 5...5...5 PowerPoint EasyMP Slide Converter...18 PowerPointFSE...18...19...19... 20... 20... 20...

More information

コミュニケーションユーティリティー編

コミュニケーションユーティリティー編 はじめに動付録デジタル複合機用 取扱説明書ソフトウェア ( コミュニケーションユーティリティー編 ) スキャナー設定作環境 Microsoft MS-DOS Windows Windows Server Windows Vista Internet Explorer Excel PowerPoint Outlook Windows Microsoft Corporation Microsoft Corporation

More information

インテル® VTune™ パフォーマンス・アナライザー 9.1 Windows* 版

インテル® VTune™ パフォーマンス・アナライザー 9.1 Windows* 版 VTune 9.1 Windows* ................................. 3...................... 3.................................................. 3............................................ 4 :.........................4................................................

More information

NW-E062 / E063 / E062K/ E063K

NW-E062 / E063 / E062K/ E063K / FM / 112 NW-E062 / E063 / E062K/ E063K 59 70 1 USB USB / MD CD MD CD 111 x- x- 112 NW-E062 / E063 / E062K/ E063K / FM / 112 NW-E062 / E063 / E062K/ E063K / FM / 112 MD CD MD CD x- CD 29 31 47 52 111

More information

LVC-TV_V03 USB TV TUNER + CAPTURE UNIT LVC-TV LVC-TV

LVC-TV_V03 USB TV TUNER + CAPTURE UNIT LVC-TV LVC-TV LVC-TV_V03 USB TV TUNER + CAPTURE UNIT LVC-TV LVC-TV ... 1... 2... 4... 5... 5... 6... 6... 8... 9... 9... 10... 11 Windows Me... 11 Windows 98... 13 Windows 2000... 16... 20... 20... 23 PowerVCR II...

More information

Sobel Canny i

Sobel Canny i 21 Edge Feature for Monochrome Image Retrieval 1100311 2010 3 1 3 3 2 2 7 200 Sobel Canny i Abstract Edge Feature for Monochrome Image Retrieval Naoto Suzue Content based image retrieval (CBIR) has been

More information

DCR-SR62/SR300

DCR-SR62/SR300 3-098-548-02(1) DCR-SR62/SR300 PDF CD-ROM 2007 Sony Corporation t33 35 v 11 2 b 1 2 3 1 2 3 4 28 8 * AC / / / VCCI B DVD-R * DVD/HDD * * 26 3,000 / * * WindowsXPOS DCR-SR300 * PDF 3 ... 2... 3 1... 5 2...

More information

PrimeTV (FlyVideo) Manual

PrimeTV (FlyVideo) Manual 音声多重放送 ( ステレオ / 二重音声 ) 対応 PCI バス用テレビチューナー / ビデオキャプチャカード PrimeTV /Si ( プライムティーヴィー エス アイ ) : NV-PT2000SH 増補版ユーザーズマニュアル ( ユーザーズマニュアル Rev 2.0 第 2 章および第 8 章 8.1~8.2 改訂版 ) Rev. 2.11-HTXP/2001 11 ....... 1) 2).1

More information

Source: Intel.Config: Pentium III Processor-Intel Seattle SE440BX-2, 128MB PC100 CL2 SDRAM Intel 440BX-2 Chipset Platform- Diamond Viper 550 /

Source: Intel.Config: Pentium III Processor-Intel Seattle SE440BX-2, 128MB PC100 CL2 SDRAM Intel 440BX-2 Chipset Platform- Diamond Viper 550 / 2002.1 4 1 2 3 Source: Intel.Config: Pentium III Processor-Intel Seattle SE440BX-2, 128MB PC100 CL2 SDRAM Intel 440BX-2 Chipset Platform- Diamond Viper 550 / nvidia TNT 2x AGP with 16MB memory, nvidia

More information

17 Proposal of an Algorithm of Image Extraction and Research on Improvement of a Man-machine Interface of Food Intake Measuring System

17 Proposal of an Algorithm of Image Extraction and Research on Improvement of a Man-machine Interface of Food Intake Measuring System 1. (1) ( MMI ) 2. 3. MMI Personal Computer(PC) MMI PC 1 1 2 (%) (%) 100.0 95.2 100.0 80.1 2 % 31.3% 2 PC (3 ) (2) MMI 2 ( ),,,, 49,,p531-532,2005 ( ),,,,,2005,p66-p67,2005 17 Proposal of an Algorithm of

More information

P3PC

P3PC P3PC-4252-03 fi-7160/ fi-7260/ fi-7180/ fi-7280 *P3PC-4252-03* PDF Setup DVD-ROM Microsoft Corporation Microsoft Windows Windows Server Windows Vista Excel SharePoint Microsoft Corporation Word Microsoft

More information

Vol. 44 No. SIG 12(TOD 19) Sep MF MF MF Content Protection Mechanism Based on Media Framework and an Implementation for Autonomous Information C

Vol. 44 No. SIG 12(TOD 19) Sep MF MF MF Content Protection Mechanism Based on Media Framework and an Implementation for Autonomous Information C Vol. 44 No. SIG 12(TOD 19) Sep. 2003 MF MF MF Content Protection Mechanism Based on Media Framework and an Implementation for Autonomous Information Container Takehito Abe, Noburou Taniguchi, Kunihiro

More information

untitled

untitled 1 2 ...1 ...1...3...4...4...4...5...7...10 3-1...10 3-2...10 3-3...11 3-4 Windows2000 / XP...11 3-5 PC...13...14 4-1 SYSTEM...14 4-2 DISPLAY...15...17...20...22...23...24...25...25...25...25...26...28

More information

Installer_J

Installer_J (1) (2) (3) (4) (5) (3) Microsoft Windows Windows Vista Visual Basic Visual C++ EPSON ESC/POS Copyright 2008 SEIKO EPSON CORPORATION 1...1 1.1...1 1.2...1 1.3...2 2...3 2.1...3 2.2...3 2.2.1...4 2.2.2...10

More information

TM-P20 ソフトウェアユーザーズマニュアル

TM-P20 ソフトウェアユーザーズマニュアル M00083002 JA EPSON EXCEED YOUR VISION ESC/POS Microsoft Windows Windows Vista Microsoft Corporation Wi-Fi Wi-Fi Alliance Bluetooth Bluetooth SIG, Inc. IOS Cisco ESC/POS EPSON POS ESC/POS ESC/ POS POS ESC/POS

More information

EPSON EB-W9/X9/S9 User's Guide

EPSON EB-W9/X9/S9 User's Guide C77617000 q s g s p.89 [ ( ) ] [] ( ) ( ) - - ... 2... 7...7... 7 USB (USB)...7...7...7...7 /...7... 7... 8...8...8... 9 /...9...10...11 (EB-W9/X9)...11 (EB-S9)...12... 13 USB (USB)... 16... 16... 16...

More information

24 21 21115025 i 1 1 2 5 2.1.................................. 6 2.1.1........................... 6 2.1.2........................... 7 2.2...................................... 8 2.3............................

More information

EPSON Easy Interactive Tools Ver.4.0 Operation Guide

EPSON Easy Interactive Tools Ver.4.0 Operation Guide Easy Interactive Tools Ver.4.0 Easy Interactive Tools Ver.4.0 Easy Interactive Tools Easy Interactive Tools Easy Interactive Pen s p.11 s p.10 s p.9 s p.15 s p.17 s p.25 Easy Interactive Tools PowerPoint

More information

quattro.PDF

quattro.PDF Quattro USB Audio Interface 2 M-AUDIO 3 Windows Windows 98 SE/ Windows ME/ Windows 2000/ Windows XP Platinum III 500MHz/ 96kHz Platinum II 400MKz/ 48kHz 128MB RAM / 96kHz 64MB RAM/ 48kHz Macintosh USB

More information

NW-A865 / A866 / A867

NW-A865 / A866 / A867 / / / FM Bluetooth / / 156 NW-A865 / A866 / A867 87 99 1 2 USB USB 3 / MD CD MD CD 155 x- x- 156 MD CD x- Bluetooth CD 30 32 51 52 56 61 Bluetooth Bluetooth Bluetooth 66 6 155 x- mora mora x- ...4... 4...

More information

EP-706A

EP-706A NPD4917-00 ...4... 4... 4... 4...6...8... 9...9...10...11...13 Epson iprint...14...14...14...15 LAN...16...17...17...19...20...21...24...25...29...29...30...32...32...33...33...35...35...36...37 2 ...37...38

More information

PX-436A/PX-046A

PX-436A/PX-046A NPD4900-01 ...4... 4... 4... 4... 5 PX-436A...6... 6... 8... 9 PX-046A...13...13...15...17 PX-436A...17 PX-046A...19...20...21...21...24 PX-436A...25...25...26...27 PX-436A...27 PX-046A...28 20 PX-046A...28...29

More information

Lenovo Lenovo H5S Ug V1.0 Jp Online ユーザーガイド - V1.0 Lenovo H5s シリーズ H520s Desktop (Lenovo) lenovo_h5s_ug_v1.0_jp_online

Lenovo Lenovo H5S Ug V1.0 Jp Online ユーザーガイド - V1.0 Lenovo H5s シリーズ H520s Desktop (Lenovo) lenovo_h5s_ug_v1.0_jp_online Machine type: 10093/2561/4746 H5s Series Version 1.0 2012.02 31501733 Copyright Lenovo 2012. All rights reserved. GSA GS-35F-05925 2012. Lenovo 1... 1 1.1...2 1.2...3 1.3...4 1.4...6 1.5...7 1.6...7 1.7...8

More information

EPSON PX-500 プリンタ操作ガイド

EPSON PX-500 プリンタ操作ガイド A4 L... 6... 6... 7... 7... 8 EPSON PhotoQuicker... 8... 8... 12 1... 12 2... 13... 14... 14... 15... 15... 17... 17 A4 L... 19... 19... 20... 20... 21... 21... 23... 23... 23... 25... 25... 27... 27...

More information

2003/3 Vol. J86 D II No.3 2.3. 4. 5. 6. 2. 1 1 Fig. 1 An exterior view of eye scanner. CCD [7] 640 480 1 CCD PC USB PC 2 334 PC USB RS-232C PC 3 2.1 2

2003/3 Vol. J86 D II No.3 2.3. 4. 5. 6. 2. 1 1 Fig. 1 An exterior view of eye scanner. CCD [7] 640 480 1 CCD PC USB PC 2 334 PC USB RS-232C PC 3 2.1 2 Curved Document Imaging with Eye Scanner Toshiyuki AMANO, Tsutomu ABE, Osamu NISHIKAWA, Tetsuo IYODA, and Yukio SATO 1. Shape From Shading SFS [1] [2] 3 2 Department of Electrical and Computer Engineering,

More information

EPSON EasyMP Multi PC Projection Ver.1.10 Operation Guide

EPSON EasyMP Multi PC Projection Ver.1.10 Operation Guide EasyMP Multi PC Projection EasyMP Multi PC Projection EasyMP Multi PC Projection... 5...5...5... 6...6...6... 9... 14... 14... 14... 15 EasyMP Multi PC Projection...15...16...17... 17... 18...18...19...20...

More information

DCR-IP55

DCR-IP55 2002 Sony Corporation 3-075-459-02 (1) DCR-IP55 2 8 12 22 34 41 60 69 89 133 157 159 167 178 190 3-074-603-011 2002 Sony Corporation 2 MICROMV MICROMV MICROMV MICROMV DV60 MICROMV BSDVD MPEG2 12Mbps MICROMV

More information

今から間にあう仮想化入門とXenについて

今から間にあう仮想化入門とXenについて Xen Linux 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Agenda IA Xen. Xen 4. Xen 2 19 10 1 IA IA Server Linux Windows Linux Linux

More information

Windows Embedded 製品 高性能.NET Micro Framework Windows Embedded CE Windows XP Embedded Windows XP 高機能 携帯デバイスに求められる機能.NET Micro Framework Windows Embedded

Windows Embedded 製品 高性能.NET Micro Framework Windows Embedded CE Windows XP Embedded Windows XP 高機能 携帯デバイスに求められる機能.NET Micro Framework Windows Embedded SH-MobileR と CE で作る携帯端末 ~ DirectShow でのフィルター実装手法 ~ 株式会社アキタ電子システムズソフトウェア開発部第一ソフトウェア開発 Gr 主任技師伊藤優 (ito-yu@akita-elec.co.jp) Agenda Windows Embedded 製品 DirectShow とは? Filter Graph Manager DMO:DirectX Media

More information

xx/xx Vol. Jxx A No. xx 1 Fig. 1 PAL(Panoramic Annular Lens) PAL(Panoramic Annular Lens) PAL (2) PAL PAL 2 PAL 3 2 PAL 1 PAL 3 PAL PAL 2. 1 PAL

xx/xx Vol. Jxx A No. xx 1 Fig. 1 PAL(Panoramic Annular Lens) PAL(Panoramic Annular Lens) PAL (2) PAL PAL 2 PAL 3 2 PAL 1 PAL 3 PAL PAL 2. 1 PAL PAL On the Precision of 3D Measurement by Stereo PAL Images Hiroyuki HASE,HirofumiKAWAI,FrankEKPAR, Masaaki YONEDA,andJien KATO PAL 3 PAL Panoramic Annular Lens 1985 Greguss PAL 1 PAL PAL 2 3 2 PAL DP

More information

CD Microsoft, MS-DOS, Windows 95, Windows 98,Windows Me, Windows NT, Windows 2000, Visual Basic, Visual Basic.NET, Visual C#, Excel, ActiveX Microsoft

CD Microsoft, MS-DOS, Windows 95, Windows 98,Windows Me, Windows NT, Windows 2000, Visual Basic, Visual Basic.NET, Visual C#, Excel, ActiveX Microsoft CD Microsoft, MS-DOS, Windows 95, Windows 98,Windows Me, Windows NT, Windows 2000, Visual Basic, Visual Basic.NET, Visual C#, Excel, ActiveX Microsoft Corporation ... iv... v... vi... 1-1 1.1... 1-2 1.2...

More information

EP-306

EP-306 NPD4918-00 ...5... 5... 5... 5...7...9...11...11...14...15...15...18...20...24...26 USB...26 LAN...27...29...29...30...30...31...31...35...35...37...37...38 2 ...39...39...43...44...46...47...49...49...50

More information

ハイディフィニション(高精細)ビデオの理解と使用方法

ハイディフィニション(高精細)ビデオの理解と使用方法 HD Adobe Adobe After Effects Adobe Premiere Pro 2 1 HD(High-definition ) 1 HD HD DVD HD DVD Criterion HD HD HD SD( ) HD 10,000 110 HD HD SD 625 PAL 576 576 HD HD 1920 1080 1280 720 16:9 120 240 483 720

More information

untitled

untitled 39 40 41 45 47 54 57 39 () 40 () () S22 12,262 7,108 5,154 S23 12,753 7,331 5,422 S24 14,201 8,391 5,810 S25 16,311 9,820 6,491 S26 15,415 9,035 6,380 S27 15,776 9,171 6,605 S28 17,731 10,450 7,281 S29

More information

[1] [2] [3] (RTT) 2. Android OS Android OS Google OS 69.7% [4] 1 Android Linux [5] Linux OS Android Runtime Dalvik Dalvik UI Application(Home,T

[1] [2] [3] (RTT) 2. Android OS Android OS Google OS 69.7% [4] 1 Android Linux [5] Linux OS Android Runtime Dalvik Dalvik UI Application(Home,T LAN Android Transmission-Control Middleware on multiple Android Terminals in a WLAN Environment with consideration of Round Trip Time Ai HAYAKAWA, Saneyasu YAMAGUCHI, and Masato OGUCHI Ochanomizu University

More information

VG-145 / VG-140 / VG-130 / VG-120 取扱説明書

VG-145 / VG-140 / VG-130 / VG-120 取扱説明書 VG-145/VG-140/D-715 VG-130/D-710 VG-120/D-705 VG-145/VG-140/D-715 VG-130/D-710 VG-120/D-705 VG-145/VG-140/D-715 CD-ROM VG-145 CD-ROM VG-140 1 LI-70B USB-AC F-2AC USB AV OLYMPUS Setup CD-ROM : 2 p. 16 3

More information

2011 Future University Hakodate 2011 System Information Science Practice Group Report Project Name Applied Embedded System Group Name Radio-controlled model helicopter Group /Project No. 15-B /Project

More information

DOMINOTM DOMINO Melody TM DOMINO Harmony TM DOMINO Symphony TM PCI PCIe DOMINO TM DOMINO Iota TM - DOMINO Melody TM - DOMINO Alpha 2 TM DOMINO Harmony

DOMINOTM DOMINO Melody TM DOMINO Harmony TM DOMINO Symphony TM PCI PCIe DOMINO TM DOMINO Iota TM - DOMINO Melody TM - DOMINO Alpha 2 TM DOMINO Harmony TM Melody TM Harmony TM Symphony TM e TM Iota TM Melody TM Alpha 2 TM Harmony TM Symphony TM Symphony e TM www.euresys.com info@euresys.com Copyright 200 Euresys s.a. Belgium Euresys Euresys s.a. Belgium

More information

DVD±R/RWユニットユーザーズマニュアル

DVD±R/RWユニットユーザーズマニュアル LDR-E4242FU2_V02 IEEE1394&USB2.0 DVD R/RW UNIT IEEE 1394 & USB 2.0 DVD R/RW LDR-E4242FU2 DVD R/RW DVD R/RW DVD R/RW CD-ROM/DVD-ROM Windows Microsoft Corporation Pentium Celeron IntelB's Recorder GOLD B's

More information

20 FeliCa 200502689 2 1 5 2 6 2.1 IC........................ 6 2.1.1 RFID.......................... 6 2.1.2.................. 7 2.2 FeliCa............................. 8 2.2.1 FeliCa........................

More information

H H H H H H H H Windows IC USB WindowsXP+FZ1360 WindowsXP+FZ1350 J2SE Runtime Environment 5.0 Window

H H H H H H H H Windows IC USB WindowsXP+FZ1360 WindowsXP+FZ1350 J2SE Runtime Environment 5.0 Window H14.8.1 H15.9.15 H16.4.1 H19.7.1 H20.7.1 H20.12.1 H21.5.1 H22.4.1 Windows IC USB WindowsXP+FZ1360 WindowsXP+FZ1350 J2SE Runtime Environment 5.0 Windows98,Me Windows Vista FZ-1360 IC Windows 7 WindowsNT4.0

More information

Vol. 44 No. SIG 9(CVIM 7) ) 2) 1) 1 2) 3 7) 1) 2) 3 3) 4) 5) (a) (d) (g) (b) (e) (h) No Convergence? End (f) (c) Yes * ** * ** 1

Vol. 44 No. SIG 9(CVIM 7) ) 2) 1) 1 2) 3 7) 1) 2) 3 3) 4) 5) (a) (d) (g) (b) (e) (h) No Convergence? End (f) (c) Yes * ** * ** 1 Vol. 44 No. SIG 9(CVIM 7) July 2003, Robby T. Tan, 1 Estimating Illumination Position, Color and Surface Reflectance Properties from a Single Image Kenji Hara,, Robby T. Tan, Ko Nishino, Atsushi Nakazawa,

More information

DVD-RAM±R/RWユニット ユーザーズマニュアル

DVD-RAM±R/RWユニット ユーザーズマニュアル IEEE1394 & USB 2.0 DVD-RAM R/RW UNIT LDR-H443FU2 V01 LDR-H443FU2 IEEE1394 &USB 2.0 DVD-RAM R/RW CD-ROM/DVD-ROM Windows Microsoft Pentium Intel B's RECORDER GOLD B's CLiP B's BHA PowerDVD TM PowerDirector

More information

VNSTProductDes3.0-1_jp.pdf

VNSTProductDes3.0-1_jp.pdf Visual Nexus Secure Transport 2005/10/18 Visual Nexus http:// www.visualnexus.com/jp/support.htm Visual Nexus Secure Transport 2005/02/25 1 2005/10/18 Ver3.0-1 2005 10 18 108-0075 21119 2 Visual Nexus

More information

imai@eng.kagawa-u.ac.jp No1 No2 OS Wintel Intel x86 CPU No3 No4 8bit=2 8 =256(Byte) 16bit=2 16 =65,536(Byte)=64KB= 6 5 32bit=2 32 =4,294,967,296(Byte)=4GB= 43 64bit=2 64 =18,446,744,073,709,551,615(Byte)=16EB

More information

目次

目次 Knowledge Deliver ver.3.0 Knowledge Deliver ver.3.0. KNOWLEDGE DELIVER...7... 7 e...7 LMSLCMS...7...7...7... 8...8...8... 9...9...9...9...9...10... 11 Knowledge Deliver...11 Web... 11... 11... 11...12...12

More information

unitech PA500 Enterprise PDA Rev. A

unitech PA500 Enterprise PDA Rev. A unitech PA500 Enterprise PDA Rev. A PA500 Enterprise PDA Unitech Copyright 2007 unitech Electronics Co., Ltd. Web : http:\\www.unitech-japan.co.jp Bluetooth Bluetooth SIG Microsoft Windows ActiveSync

More information

21 1 2 1 2

21 1 2 1 2 21 1 2 1 2 1 2 3 ( ) 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 210 0.0 0.0 22 23 25 27 28 29 30 31 32 33 34 35 36 74 pp.4362003.10 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 141224 14 48 10

More information

Real AdaBoost HOG 2009 3 A Graduation Thesis of College of Engineering, Chubu University Efficient Reducing Method of HOG Features for Human Detection based on Real AdaBoost Chika Matsushima ITS Graphics

More information

EPSON EasyMP Multi PC Projection Ver.1.11 Operation Guide

EPSON EasyMP Multi PC Projection Ver.1.11 Operation Guide EasyMP Multi PC Projection EasyMP Multi PC Projection EasyMP Multi PC Projection... 5...5...5... 6...6...6... 9... 14... 14... 14... 15 EasyMP Multi PC Projection...15...16...17... 17... 18...18...19...20...

More information

Computer Security Symposium October ,a) 1,b) Microsoft Kinect Kinect, Takafumi Mori 1,a) Hiroaki Kikuchi 1,b) [1] 1 Meiji U

Computer Security Symposium October ,a) 1,b) Microsoft Kinect Kinect, Takafumi Mori 1,a) Hiroaki Kikuchi 1,b) [1] 1 Meiji U Computer Security Symposium 017 3-5 October 017 1,a) 1,b) Microsoft Kinect Kinect, Takafumi Mori 1,a) Hiroaki Kikuchi 1,b) 1. 017 5 [1] 1 Meiji University Graduate School of Advanced Mathematical Science

More information

23 Fig. 2: hwmodulev2 3. Reconfigurable HPC 3.1 hw/sw hw/sw hw/sw FPGA PC FPGA PC FPGA HPC FPGA FPGA hw/sw hw/sw hw- Module FPGA hwmodule hw/sw FPGA h

23 Fig. 2: hwmodulev2 3. Reconfigurable HPC 3.1 hw/sw hw/sw hw/sw FPGA PC FPGA PC FPGA HPC FPGA FPGA hw/sw hw/sw hw- Module FPGA hwmodule hw/sw FPGA h 23 FPGA CUDA Performance Comparison of FPGA Array with CUDA on Poisson Equation (lijiang@sekine-lab.ei.tuat.ac.jp), (kazuki@sekine-lab.ei.tuat.ac.jp), (takahashi@sekine-lab.ei.tuat.ac.jp), (tamukoh@cc.tuat.ac.jp),

More information