-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
611 lines (568 loc) · 32.6 KB
/
index.html
File metadata and controls
611 lines (568 loc) · 32.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
<!doctype html>
<html lang="ja">
<head prefix=”og: http://ogp.me/ns#”>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
<link rel="shortcut icon" type="image/x-icon" href="https://HidekiA.github.io/favicon.ico">
<meta property="og:url" content="https://HidekiA.github.io" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Hideki AOYAMA - Profile" />
<meta property="og:description" content="Hideki AOYAMA, PhD (青山 秀紀) Profile" />
<meta property="og:site_name" content="Hideki AOYAMA" />
<meta property="og:image" content="https://HidekiA.github.io/img/HidekiA.jpg" />
<title>Hideki AOYAMA - Profile</title>
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-76E3Z92W8L"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-76E3Z92W8L');
</script>
</head>
<body class="" data-bs-spy="scroll" data-bs-target="#navbar-main" data-bs-offset="80">
<nav id="navbar-main" class="navbar navbar-expand-sm navbar-light bg-white fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#top">
<img src="./img/icon.png" alt="" width="36" height="36" class="mb-2">
<span class="d-sm-none ms-2">Hideki AOYAMA</span>
</a>
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="ナビゲーションの切替">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#top">Hideki AOYAMA</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#works">Works</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#softwares">Softwares</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#lisences">Lisences</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#publications">Publications</a>
</li>
</ul>
</div>
</div>
</nav>
<section id="top" class="container">
<div class="row justify-content-center align-items-center">
<div class="col col-sm-auto col-md text-center fw-bold pt-5" id="top_name">
<div>Hideki AOYAMA, PhD</div>
<div>青山 秀紀</div>
<div>
<img src="img/mail_01.png" height="16">
<img src="img/mail_02.png" height="16">
</div>
</div>
<div class="col-10 col-sm-8 col-md col-lg-5"><img src="./img/HidekiA.jpg" alt="" class="img-fluid"></div>
</div>
</section>
<section id="biography" class="container">
<div class="section_title">Biography</div>
<div class="subtitle">Professional Affiliation</div>
<div class="container">
<div class="row justify-content-center m-sm-2">
<div class="col-sm-3 col-lg-2 py-2 bgcolor2">2022-present</div>
<div class="col-sm py-2 ps-4">Panasonic Holdings Corporation</div>
<div class="w-100"></div>
<div class="col-sm-3 col-lg-2 py-2 bgcolor2">2011-2022</div>
<div class="col-sm py-2 ps-4">Panasonic Corporation</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center m-sm-2">
<div class="col-sm-3 col-lg-2 py-2 bgcolor2">2024-present</div>
<div class="col-sm py-2 ps-4">Kyoto University<br><small>Specially Appointed Senior Lecturer (特命講師)</small></div>
</div>
</div>
<div class="subtitle">Education</div>
<div class="container">
<div class="row justify-content-center m-sm-2">
<div class="col-sm-3 col-lg-2 py-1 bgcolor2">2008-2011</div>
<div class="col-sm py-1 ps-4">PhD Engineering<br><small>Graduate School of Engineering, <span>Kyoto University,</span> Japan</small></div>
<div class="w-100"></div>
<div class="col-sm-3 col-lg-2 py-1 bgcolor2">2006-2008</div>
<div class="col-sm py-1 ps-4">Master of Engineering<br><small>Graduate School of Engineering, <span>Kyoto University,</span> Japan</small></div>
<div class="w-100"></div>
<div class="col-sm-3 col-lg-2 py-1 bgcolor2">2002-2006</div>
<div class="col-sm py-1 ps-4">Bachelor of Engineering<br><small>Faculty of Engineering, <span>Kyoto University,</span> Japan</small></div>
</div>
</div>
</section>
<section id="works" class="container">
<div class="section_title">Works</div>
<article class="work position-relative">
<div class="m-3 fs-3">
光ID (Light ID)
</div>
<div class="row d-flex mx-3">
<div class="col-9 col-sm-8 col-md-5">
<a href="https://apps.apple.com/app/id6736360144">
<img src="./img/AppStore_HikariID.png" alt="" class="img-thumbnail">
</a>
</div>
</div>
</article>
<hr>
<article class="work position-relative">
<div class="m-3 fs-3">
Delivery Robot
</div>
<div class="row justify-content-center d-flex justify-content-evenly align-items-center">
<div class="col-9 col-sm-8 col-md-5">
<a href="https://news.panasonic.com/jp/press/jn231106-1">
<img src="./img/RobotDelivery_PN20231106.jpg" alt="" class="img-thumbnail">
</a>
</div>
<div class="col-9 col-sm-8 col-md-5">
<a href="https://twitter.com/nhk_news/status/1750111201848070368">
<img src="./img/RobotDelivery_OhaBiz.jpg" alt="" class="img-thumbnail">
</a>
</div>
</div>
</article>
<hr>
<article class="work position-relative">
<div class="row justify-content-center">
<div class="col-sm">
<div><img src="img/IEEE_logo.gif" height="36px"></div>
<div class="m-3 fs-5">
IEEE 802 Standards Committee<br>
Vice chair of Task Group 15.7<br>
(2014-2018)
</div>
<div class="m-3">
<a href="https://doi.org/10.1109/IEEESTD.2019.8697198" class="stretched-link">
IEEE Standard 802.15.7-2018<br>
"Short-Range Optical Wireless Communications"
</a>
</div>
</div>
<div class="col-10 col-sm align-self-center text-center">
<img src="./img/IEEE802_15_7-2018.png" alt="IEEE Standard 802.15.7-2018" class="img-thumbnail">
</div>
</div>
</article>
<hr>
<article class="work position-relative">
<div class="row justify-content-center">
<div class="col-sm">
<div><img src="img/IEC_logo.png" height="48px"></div>
<div class="m-3 fs-5">
IEC Technical Committee 100<br>
Associate Expert<br>
(2015-2017)
</div>
<div class="m-3">
<a href="https://webstore.iec.ch/publication/29157" class="stretched-link">
IEC Standards 62943:2017<br>
"Visible light beacon system for multimedia applications"
</a>
</div>
</div>
<div class="col-10 col-sm align-self-center text-center">
<img src="./img/IEC62943_2017.jpg" alt="IEC Standards 62943:2017" class="img-thumbnail">
</div>
</div>
</article>
<hr>
<article class="work position-relative">
<div><img src="img/LinkRay_logo.png" height="80px"></div>
<div class="m-3 fs-5">
Inventor & Implementer
</div>
<div class="row justify-content-center">
<div class="col-9 col-sm-8 col-md-4">
<img src="./img/LinkRay-site.png" alt="LinkRay" class="img-thumbnail">
</div>
<div class="col-9 col-sm-8 col-md-4 text-center">
<div class="ratio ratio-16x9">
<iframe src="https://www.youtube.com/embed/mb3VAV5P6GY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="col-9 col-sm-8 col-md-4 text-center">
<div class="ratio ratio-16x9">
<iframe src="https://www.youtube.com/embed/7IvuGXr3DPE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="text-center m-3">
<a href="https://play.google.com/store/apps/details?id=com.panasonic.jp.lightid">
<img height="32px" src="./img/GooglePlay.png"></a>
<a href="https://www.google.com/url?q=https%3A%2F%2Fapps.apple.com%2Fjp%2Fapp%2Fid1080502893&sa=D&sntz=1&usg=AFQjCNH-siS-agmjLAEUZeOpR-a9fAD8Pg">
<img height="40px" src="./img/AppStore.png"></a>
</div>
</article>
</section>
<section id="softwares" class="container">
<div class="section_title">Free softwares</div>
<article class="work position-relative">
<div class="row justify-content-center">
<div class="col-sm-11 col-md">
<div class="fs-5">
Google Home Talker MQTT
</div>
<div class="fw-normal m-2">
Python code enables Google Home to talk with IFTTT and MQTT triggers.
<a href="https://github.com/HidekiA/google-home-talker-mqtt" class="stretched-link">[Github]</a>
</div>
</div>
<div class="col-11 col-sm-10 col-md align-self-center text-center">
<img src="https://github.com/HidekiA/google-home-talker-mqtt/blob/main/img/overview.png?raw=true" alt="" class="img-thumbnail">
</div>
</div>
</article>
<hr>
<article class="work position-relative">
<div class="row justify-content-center">
<div class="col-sm-11 col-md">
<div class="fs-5">
BrowserSwitch
</div>
<div class="fw-normal m-2 position-relative">
BrowserSwitch enables you to open the clicked URL in different browsers depending on the domain of the URL.<br>
<a href="./software/browser_switch/" class="stretched-link">[English version]</a>
</div>
<div class="fw-normal m-2 position-relative">
メールやエクセルファイル等に記載されたURLをクリックした際に、そのURLに応じて異なるブラウザで開くためのソフトウェアです。<br>
<a href="./software/browser_switch/index_ja.html" class="stretched-link">[日本語版]</a>
</div>
</div>
<div class="col-5 col-sm-4 col-md-3 col-lg-2 align-self-center text-center">
<img src="./software/browser_switch/BrowserSwitch.png" alt="" class="img-thumbnail">
</div>
</div>
</article>
</section>
<section id="lisences" class="container">
<div class="section_title">Licenses & Certificates</div>
<div class="subtitle">Licenses</div>
<div class="mx-2">
Electronics:
<div class="mx-2 mb-2">
第二種電気工事士 (2024)
</div>
Chemistry:
<div class="mx-2 mb-2">
危険物取扱者 乙種 第4類 (1999) / 消防設備士 乙種 第6類 (2001) / 防火管理者 (2000) /
一般毒物劇物取扱者 (2002)
</div>
Hygiene:
<div class="mx-2 mb-2">
食品衛生責任者 (1999)
</div>
Miscellaneous:
<div class="mx-2 mb-2">
行政書士 (2001) / 第一種中型車 運転免許 (2005)
</div>
</div>
<div class="subtitle">Certificates</div>
<div class="mx-2">
IT (AWS):
<div class="mx-2 mb-2">
<a href="https://www.credly.com/badges/ca03f1a2-56c1-47d0-baa1-c3f73caa6519/public_url">Solutions Architect - Professional (2022)</a> /
<a href="https://www.credly.com/badges/06d55aaf-7464-47ea-80d8-70ad0c52af8d/public_url">DevOps Engineer - Professional (2022)</a> /
<a href="https://www.credly.com/badges/eb4a48b1-ec93-46f5-aa69-d4eb9eaf67cf/public_url">Security - Specialty (2022)</a> /
<a href="https://www.credly.com/badges/6e9b4883-c74d-46fa-b7aa-c27dd49be853/public_url">Machine Learning – Specialty (2022)</a>
<div class="ms-4 mb-4">
<a href="https://www.credly.com/badges/ca03f1a2-56c1-47d0-baa1-c3f73caa6519/public_url"><img width="120px" height="120px" src="./img/aws-certified-solutions-architect-professional.png"/></a>
<a href="https://www.credly.com/badges/06d55aaf-7464-47ea-80d8-70ad0c52af8d/public_url"><img width="120px" height="120px" src="./img/aws-certified-devops-engineer-professional.png"/></a>
<a href="https://www.credly.com/badges/eb4a48b1-ec93-46f5-aa69-d4eb9eaf67cf/public_url"><img width="120px" height="120px" src="./img/aws-certified-security-specialty.png"/></a>
<a href="https://www.credly.com/badges/6e9b4883-c74d-46fa-b7aa-c27dd49be853/public_url"><img width="120px" height="120px" src="./img/aws-certified-machine-learning-specialty.png"/></a>
</div>
</div>
IT (IPA):
<div class="mx-2 mb-3">
ネットワークスペシャリスト (2012) / ソフトウェア開発技術者 (2005) / 第二種情報処理技術者 (2000)
</div>
Foreign Language:
<div class="mx-2 mb-3">
TOEIC 860 / 実用英語技能検定 準1級 (2005) / 日本漢字能力検定 準1級 (2004) / Diplom Deutsch in Japan 4. Klasse (2003) / Diplôme d'Aptitude Pratique au Français Niveau 5 (2007) / 日本中国語検定 準4級
</div>
Miscellaneous:
<div class="mx-2 mb-2">
日本商工会議所 簿記検定 2級 (2000) 3級 (1999) / カラーコーディネーター 2級 (2001) / 京都観光文化検定 3級 (2006) / 知的財産管理技能検定 3級 (2014)
</div>
</div>
</section>
<section id="publications" class="container">
<div class="section_title">Publications</div>
<div class="subtitle">Recent Papers</div>
<ol class="mt-3 me-2">
<!--
<li>, ,
“,”
.
[<a href="">DOI</a>]
<span class="badge bg-primary">accepted</span>
</li>
-->
<li>Shiyao Ding, Hideki Aoyama, Donghui Lin, and Fumito Uwano
“2nd Drone Routing Problems Challenge,”
The 24rd International Conference on Autonomous Agents and Multi-Agent Systems (AAMAS2025), Detroit, USA, 20 May 2025.
[<a href="https://drp-challenge.com/#/">HP</a>]
</li>
<li>Atsuyoshi Kita, Hideki Aoyama and Tadahiro Taniguchi ,
“SPPP : Stochastic penalty path planning for MAPF under conditions of uncertain travel time,”
The 25th International Conference on Principles and Practice of Multi-Agent Systems (PRIMA2024), pp. 87-93, Kyoto, 20 Nov. 2024.
[<a href="https://link.springer.com/chapter/10.1007/978-3-031-77367-9_8">DOI</a>]
</li>
<li>Shiyao Ding, Hideki Aoyama, Donghui Lin, and Fumito Uwano
“Drone Routing Problems Challenge,”
The 23rd International Conference on Autonomous Agents and Multi-Agent Systems (AAMAS2024), Auckland, New Zealand, 9 May 2024.
[<a href="https://drp-challenge.com/#/">HP</a>]
</li>
<li>Shiyao Ding, Hideki Aoyama, and Donghui Lin,
“MARL4DRP: Benchmarking Cooperative Multi-Agent Reinforcement Learning Algorithms for Drone Routing Problems,”
20th Pacific Rim International Conference on Artificial Intelligence (PRICAI2023), pp. 459-465, Jakarta, Indonesia, 18 Nov. 2023.
[<a href="https://link.springer.com/chapter/10.1007/978-981-99-7025-4_40">DOI</a>]
</li>
<li>Hideki Aoyama, Atuyoshi Kita, Shiyao Ding, and Donghui Lin,
“Drone Routing Problem: Multi-agent Path Finding Problem for Safe and Efficient Last-mile Delivery,”
Last-Mile Robotics Workshop on International Conference on Intelligent Robots and Systems (IROS2023), Detroit, Michigan, USA, 1 Oct. 2023.
</li>
<li>北 篤佳, 青山 秀紀, 谷口 忠大,
“確率的に変動する所要時間下のマルチエージェント経路探索におけるパラメータ推定について,”
第37回 人工知能学会 全国大会 (JSAI2023), 2F4-GS-5-04, 熊本, 7 Jun. 2023.
[<a href="https://doi.org/10.11517/pjsai.JSAI2023.0_2F4GS504">DOI</a>]
</li>
<li>Shiyao Ding, Hideki Aoyama, and Donghui Lin,
“Combining Multiagent Reinforcement Learning and Search Method for Drone Delivery on a Non-Grid Graph,”
20th International Conference on Practical Applications of Agents and Multi-Agent Systems (PAAMS), pp. 112-126, L'Aquila, Italy, 13 Jul. 2022.
[<a href="https://link.springer.com/chapter/10.1007/978-3-031-18192-4_10">DOI</a>]
</li>
<li>青山 秀紀, 丁 世堯, 林 冬惠,
“ドローン配送計画最適化問題のための最短経路情報を利用したマルチエージェント強化学習,”
第36回 人工知能学会 全国大会 (JSAI2022), 3O3-GS-5, 京都, 16 Jun. 2022.
[<a href="https://doi.org/10.11517/pjsai.JSAI2022.0_3O3GS505">DOI</a>]
</li>
<li>Shiyao Ding, Hideki Aoyama, and Donghui Lin,
“Non-Grid Multiagent Pathfinding via Combining Learning-based Method and Search-based Method,”
The 36th Annual Conference of the Japanese Society for Artificial Intelligence (JSAI2022), 1S1-IS-3-02, Kyoto, Japan, 14 Jun. 2022.
[<a href="https://doi.org/10.11517/pjsai.JSAI2022.0_1S1IS302">DOI</a>]
</li>
<li>Shiyao Ding, Hideki Aoyama, and Donghui Lin,
“Combining Multiagent Reinforcement Learning and Discrete Event Modeling for Pathfinding on a Non-Grid Graph,”
IEICE Technical Report, vol. 121, no. 157, SC2021-13, pp.13-17, Online, 27 Aug. 2021.
[<a href="https://www.ieice.org/ken/paper/20210827ZCFn/">IEICE</a>]
</li>
<li>Hideki Aoyama, and Mitsuaki Oshima,
“Mirror Pulse Modulation for Image Sensor-based Optical Wireless Communication,”
2021 IEEE International Conference on Communications (ICC), Online (Montreal, Canada), 17 Jun. 2021.
[<a href="https://doi.org/10.1109/ICC42927.2021.9500299">DOI</a>]
</li>
<li>青山 秀紀, 大嶋 光昭,
““LinkRay” スマートフォンのカメラを用いた可視光通信,”
光技術コンタクト, vol. 57, no. 5, pp. 32-39, May 2019.
[<a href="https://ci.nii.ac.jp/naid/40021895405/">CiNii</a>]
</li>
<li>青山 秀紀, 大嶋 光昭,
“カメラ受信型可視光通信を利用した不可視マーカによる拡張現実,”
第21回 画像の認識・理解シンポジウム (MIRU), PS2-72, 北海道, 7 Aug. 2018.
</li>
<li>青山 秀紀, 大嶋 光昭,
“LED 照明と通信するためのカメラ受信型高速可視光通信技術,”
第65回光設計研究グループ研究会, pp. 19-24, 13 Jul. 2018.
</li>
<li>大嶋 光昭, 青山 秀紀, 中西 幸司, 前田 敏行,
“IoT応用技術としてのカメラ受信型可視光通信技術の開発,”
Optronics : 光技術コーディネートジャーナル, vol. 36, no. 8, pp. 64-71, Aug. 2017.
[<a href="https://ci.nii.ac.jp/naid/40021310293/">CiNii</a>]
</li>
<li>大嶋 光昭, 青山 秀紀, 中西 幸司, 前田 敏行,
“イメージセンサ受信型可視光通信技術の開発,”
Panasonic Technical Journal, vol. 61, no. 2, pp. 118-123, 16 Nov. 2015.
[<a href="https://ci.nii.ac.jp/naid/40020649569/">CiNii</a>]
[<a href="https://www.panasonic.com/jp/corporate/technology-design/ptj/pdf/v6102/p0110.pdf">PDF</a>]
</li>
<li>Hideki Aoyama, and Mitsuaki Oshima,
“Line scan sampling for visible light communication: Theory and practice,”
2015 IEEE International Conference on Communications (ICC),
pp. 5060-5065, London, UK, 9 Jun. 2015.
[<a href="https://doi.org/10.1109/ICC.2015.7249126">DOI</a>]
</li>
<li>Hideki Aoyama, and Mitsuaki Oshima,
“Visible light communication using a conventional image sensor,”
12th Annual IEEE Consumer Communications and Networking Conference (CCNC),
pp. 103-108, <span>Las Vegas</span>, USA, 10 Jan. 2015.
[<a href="https://doi.org/10.1109/CCNC.2015.7157954">DOI</a>]
</li>
<li>青山 秀紀, 山岡 勝, 坂田 毅, 大嶋光昭,
“スマートフォン・クラウド連携スマート家電による新しいユーザ価値提供,”
信学技報, vol. 113, no. 248, CNR2013-20, pp. 49-52, 大阪, 18 Oct. 2013.
[<a href="https://ci.nii.ac.jp/naid/110009784573">CiNii</a>]
[<a href="https://www.ieice.org/ken/paper/20131018DB6t/">IEICE</a>]
</li>
<li>青山 秀紀, 近藤 一晃, 中村 裕一, 秋田 純一, 戸田 真志, 櫻沢 繁,
“筋電位計測と画像計測を利用した把持行動の予測,”
電子情報通信学会論文誌, vol. J95-D, no. 3, pp. 527-538, 1 Mar. 2012.
[<a href="https://ci.nii.ac.jp/naid/110009418761">CiNii</a>]
[<a href="https://search.ieice.org/bin/summary.php?id=j95-d_3_527">IEICE</a>]
</li>
<li>青山 秀紀, 近藤 一晃, 中村 裕一,
“協調フィルタリングを利用した作業支援システムの行動選択,”
信学技報, vol. 111, no. 210, SIS2011-25, pp. 21-26, 秋田, Sept. 2011.
[<a href="https://ci.nii.ac.jp/naid/110008899636">CiNii</a>]
[<a href="https://www.ieice.org/ken/paper/20110921v08X/">IEICE</a>]
</li>
<li>谷口 充展, 青山 秀紀, 近藤 一晃, 中村 裕一, 櫻沢 繁, 戸田 真志, 秋田 純一,
“筋電インタフェース:EMGUIの設計支援手法,”
信学会 MVE研究会 (席上配布), 長崎, Mar. 2011.
[<a href="https://www.ieice.org/ken/paper/20110308j0FY/">IEICE</a>]
</li>
<li>長光 左千夫, 青山 秀紀, 中村 裕一, 美濃 導彦,
“頭部・視線の動きに基づくアドバイスへのユーザの依存度推定手法,”
電子情報通信学会論文誌, vol. J94-D, no. 1, pp. 251-259, Jan. 2011.
[<a href="https://ci.nii.ac.jp/naid/110008006566">CiNii</a>]
[<a href="https://search.ieice.org/bin/summary.php?id=j94-d_1_251">IEICE</a>]
</li>
<li>Hideki Aoyama, Kazuaki Kondo, and Yuichi Nakamura ,
“Interaction Carving: Dynamic Interaction Configuration for User Oriented Support,”
11th Association of Pacific Rim Universities Doctoral Students Conference (APRU DSC), Depok, Indonesia, Jul. 2010.
</li>
<li>青山 秀紀, 谷口 充展, 近藤 一晃, 中村 裕一, 秋田 純一, 戸田 真志, 櫻沢 繁,
“画像センシングと筋電インタフェースによるウェアラブル情報提供システム,”
信学技報, vol. 110, no. 27, PRMU2010-23, pp. 121-126, 愛知, May 2010.
[<a href="https://ci.nii.ac.jp/naid/110008002927">CiNii</a>]
[<a href="https://www.ieice.org/ken/paper/20100514IaxJ/">IEICE</a>]
</li>
<li>Zhiwen Yu, Zhiyong Yu, Hideki Aoyama, Motoyuki Ozeki, and Yuich Nakamura,
“Capture, Recognition, and Visualization of Human Semantic Interactions in Meetings,”
Proceedings of the 8th IEEE International Conference on Pervasive Computing and Communications (PerCom), pp. 107-115, Mannheim, Germany, 31 Mar. 2010.
[<a href="https://doi.org/10.1109/PERCOM.2010.5466987">DOI</a>]
</li>
<li>長光 左千夫, 青山 秀紀, 中村 裕一, 美濃 導彦,
“頭部・視線の動きに基づくアドバイスへのユーザの依存度推定手法,”
信学技報, vol. 109, no. 471, PRMU2009-243, pp. 61-66, 鹿児島, Mar. 2010.
[<a href="https://ci.nii.ac.jp/naid/110008002822">CiNii</a>]
[<a href="https://www.ieice.org/ken/paper/20100315aaWg/">IEICE</a>]
</li>
<li>谷口 充展, 青山 秀紀, 近藤 一晃, 中村 裕一, 櫻沢 繁, 戸田 真志, 秋田 純一,
“筋電インタフェースEMGUIのための動作選択手法,”
信学技報, vol. 109, no. 281, MVE2009-61, pp. 19-20, Nov. 2009.
[<a href="https://ci.nii.ac.jp/naid/110007521573">CiNii</a>]
[<a href="https://www.ieice.org/ken/paper/20091112zaS0/">IEICE</a>]
</li>
<li>Hideki Aoyama, Motoyuki Ozeki, and Yuichi Nakamura ,
“Smart Cooking Support System based on Interaction Reproducing Model,”
Proceedings of ACM Multimedia 2009 Workshop on Multimedia for Cooking and Eating Activities (CEA2009), pp. 39-45, Beijing, China, 23 Oct. 2009.
[<a href="http://dx.doi.org/10.1145/1630995.1631003">DOI</a>]
</li>
<li>青山 秀紀, 尾関 基行, 中村 裕一,
“ユーザの状態に適応した支援を行うためのインタラクションモデル,”
電子情報通信学会論文誌, vol. J92-D, no. 8, pp. 1317-1328, Aug. 2009.
[<a href="https://ci.nii.ac.jp/naid/110007361089">CiNii</a>]
[<a href="https://search.ieice.org/bin/summary.php?id=j92-d_8_1317">IEICE</a>]
</li>
<li>青山 秀紀, 伊藤 大司, 中村 裕一, 櫻沢 繁, 戸田 真志, 秋田 純一,
“視覚情報を援用した筋電ユーザインタフェース,”
第12回 画像の認識・理解シンポジウム (MIRU), pp. 1797-1802, 島根, 22 Jul. 2009.
[<a href="https://ci.nii.ac.jp/naid/10027147318">CiNii</a>]
</li>
<li>Hideki Aoyama, Motoyuki Ozeki, and Yuichi Nakamura ,
“Interaction Reproducing Model for Adapating Intelligent Tutoring Systems to Internal State,”
International Conference on Multimedia and Information and Communication Technologies in Education, pp. 766-770, Lisbon, Portugal, 23 Apr. 2009.
[<a href="">DOI</a>]
</li>
<li>井手 一郎, 北村 圭吾, 山崎 俊彦, 相澤 清晴, 青山 秀紀, 尾関 基行, 中村 裕一, 佐野 睦夫, 宮脇 健三郎 ,
“料理メディア ?台所におけるディジタルコンテンツの処理と利用?,”
映像情報メディア学会誌, vol. 63, no. 2, pp. 156-160, 1 Feb. 2009.
[<a href="https://doi.org/10.3169/itej.63.156">DOI</a>]
</li>
<li>Hideki Aoyama, Motoyuki Ozeki, and Yuichi Nakamura ,
“Interaction Reproducing Model: A Model for Giving Appropriate Supports to User State,”
Advances in Multimedia Information Processing: 9th Pacific Rim Conference on Multimedia (PCM), pp. 426-435, Tainan, Taiwan, 11 Dec. 2008.
[<a href="http://dx.doi.org/10.1007/978-3-540-89796-5_44">DOI</a>]
</li>
<li>青山 秀紀, 尾関 基行, 中村 裕一,
“インタラクション再生モデルによるさりげない学習支援,”
信学技報, PRMU2008-111, vol. 108, no. 327, pp. 1-8, 大阪, 27 Nov. 2008.
[<a href="https://ci.nii.ac.jp/naid/110007098161">CiNii</a>]
[<a href="https://www.ieice.org/ken/paper/200811278agz/">IEICE</a>]
</li>
<li>Zhiwen Yu, Zhiyong Yu, Hideki Aoyama, Motoyuki Ozeki, and Yuichi Nakamura ,
“Social Interaction Detection and Browsing in Meetings,”
Proceedings of the 10th Ubicomp 2008 Adjunct Programs, pp. 40-41, Seoul, South Korea, 21-24 Sept. 2008.
[<a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.211.7816&rep=rep1&type=pdf#page=48">PDF</a>]
</li>
<li>青山 秀紀, 尾関 基行, 中村 裕一,
“ユーザの状態に適応した支援を行うためのインタラクションモデル,”
第11回 画像の認識・理解シンポジウム (MIRU), pp. 121-128, 長野, 30 Jul. 2008.
[<a href="https://ci.nii.ac.jp/naid/10024878318">CiNii</a>]
</li>
<li>青山 秀紀, 尾関 基行, 中村 裕一,
“ユーザの内部状態に応じた教示コンテンツ提示 --調理支援のためのユーザ教示モデル--,”
第4回デジタルコンテンツシンポジウム (DCS), 8-3, 千葉, 13 Jun. 2008.
</li>
<li>Zhiwen Yu, Hideki Aoyama, Motoyuki Ozeki, and Yuichi Nakamura ,
“Collaborative Capturing and Detection of Human Interactions in Meetings,”
Adjunct Proceedings of the 6th International Conference on Pervasive Computing (PerCom), pp. 65-69, Sydney, Australia, 19-22 May 2008.
[<a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.214.2390">DOI</a>]
</li>
<li>Motoyuki Ozeki, Yasushi Miyata, Hideki Aoyama, and Yuichi Nakamura ,
“Human Support Improvements by Natural Man-Machine Collaboration -- Object recognition through interactions with an artificial agent --,”
Proceedings of 2nd International Workshop on Human-Centered Multimedia (HCM), pp. 95-101, Bavaria, Germany, 28 Sept. 2007.
[<a href="https://doi.org/10.1145/1290128.1290143">DOI</a>]
</li>
<li>尾関 基行, 宮田 康志, 青山 秀紀, 中村 裕一,
“作業支援システムのための人工エージェントとのインタラクションを援用した物体認識,”
第10回 画像の認識・理解シンポジウム (MIRU), pp. 81-86, 広島, 30 Jul. 2007.
</li>
<li>青山 秀紀, 尾関 基行, 中村 裕一,
“さりげない作業支援のためのユーザ状態のアクティブな認識 --エージェントを介した作業支援のためのインタラクションモデル--,”
信学技報, PRMU2007-31, pp. 25-30, 札幌, 28 Jun. 2007.
[<a href="https://ci.nii.ac.jp/naid/110006343874">CiNii</a>]
[<a href="https://www.ieice.org/ken/paper/20070628mAVf/">IEICE</a>]
</li>
<li>宮田 康志, 尾関 基行, 青山 秀紀, 中村 裕一,
“人工エージェントとのインタラクションを援用した作業支援のための物体認識システム,”
電子情報通信学会2007年総合大会 講演論文集, p. 286, 愛知, 22 Mar. 2007.
</li>
<li>青山 秀紀, 宮田 康志, 尾関 基行, 中村 裕一,
“作業支援システムにおけるインタラクションのための人工エージェントの動作設計,”
電子情報通信学会2007年総合大会 講演論文集, p. 285, 愛知, 22 Mar. 2007.
</li>
<li>宮田 康志, 青山 秀紀, 尾関 基行, 中村 裕一,
“人工エージェントとのインタラクションを援用した物体認識システム,”
信学技報, MVE2006-74, pp. 19-24, 福岡, 25 Jan. 2007.
[<a href="https://ci.nii.ac.jp/naid/110006205193">CiNii</a>]
[<a href="https://www.ieice.org/ken/paper/20070125hARR/">IEICE</a>]
</li>
<li>尾関 基行, 青山 秀紀, 中村 裕一,
“人工エージェントのノンバーバル表現とメタ表示の関係,”
第2回デジタルコンテンツシンポジウム (DCS) 講演予稿集, 5-7, 東京, 7 Jun. 2006.
</li>
</ol>
<a href="https://scholar.google.com/citations?user=pgHBLQcAAAAJ"></a>
<div class="subtitle">Google Scholar</div>
<div class="row justify-content-center mt-3">
<div class="col-11 col-sm-8">
<div class="card">
<h5 class="card-header bgcolor2">
<img src="./img/Google_Scholar_logo.png" alt="" height="30px">
<span class="ms-2"><a href="https://scholar.google.com/citations?user=pgHBLQcAAAAJ" class="stretched-link">Google Scholar</a></span>
</h5>
<div class="card-body">
<h5 class="card-title">Hideki AOYAMA (青山 秀紀)</h5>
<p class="card-text">Panasonic / Real-AI Team<br>Cited by: 4,441<br>
<small>Machine Learning / Pattern Recognition / Visible Light Communication / Computer Vision / Ensemble Learning / Reinforcement Learning</small></p>
</div>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
</body>
</html>