santa
https://lh3.googleusercontent.com/pw/AP1GczOXt-NIaH-nIbOOzksJU3iw452neGy72llzQcXkNsCZjuFHnz1V3Kz7Vv7HDmp8rt8lbJOi0Bgo-NVqxgcFVmGOBgmJXZqgt5-YN2tIyi33Pl92OdBGzL-rUUtCg6BfJgfGOkWT3HgbLvfQMgy6HD8KQQ=w1308-h1308-s-no-gm?authuser=0#.jpg
成瀬 陽太 / Santa Naruse
2000年大阪生まれ、長野育ち。慶應義塾大学(SFC)を卒業後に2023年に情報科学芸術大学院大学(IAMAS)に入学。
「探索的行為が伴うインタラクティブな鑑賞体験から現実空間の見え方、見る意識を変えること」をテーマに領域横断的な研究・作品制作を行っている。
Born in Osaka in 2000 and raised in Nagano. After graduating from Keio University (SFC), I entered the Institute of Advanced Media Arts and Sciences (IAMAS) in 2023. My interdisciplinary research and creative work focus on 'changing the perception and awareness of real space through interactive viewing experiences accompanied by exploratory actions.'
Contact
santanaruse(at)gmail.com
Bio
2023.4 - Current
Institute of Advanced Media Arts and Sciences (IAMAS) - Master of Media Creation 2019.4 - 2023.3
Keio University Tokyo, Japan - Bachelor of Arts in Environmental Information
2022.2 - Current
2021.2
Dentsu, School of Technology & Idea - Internship
2020.12 - 2021.9
Synflux - Reserch Assistant
2020.10 - 2022.1
Dentsu Craft Tokyo - Assistant Engineer
Research Grant / Awards
2024.5-8 COUNTER POINT 13th (Artist In Residence at FabCafe Kyoto) 2023.12 ISCA INTERNATIONAL STUDENTS CREATIVE AWARD 2023 デジタルコンテンツ部門 入選
2023.4 情報科学芸術大学院大学特別給費生報償金 採択
2022.12 NeurIPS 2022 Machine Learning for Creativity and Design」Artwork Spotlights 採択
2022.7 教育奨励基金「学習・研究奨励金」採択
2020.12 ISCA INTERNATIONAL STUDENTS CREATIVE AWARD 2022 デジタルコンテンツ部門 入選
Publication
Kye Shimizu, Santa Naruse, Jun Nishida, and Shunichi Kasahara. 2023. Morphing Identity: Exploring Self-Other Identity Continuum through Interpersonal Facial Morphing Experience. In Proceedings of the 2023 CHI Conference on Human Factors in Computing Systems (CHI '23). Association for Computing Machinery, New York, NY, USA, Article 500, 1–15. https://doi.org/10.1145/3544548.3580853 Exhibiton / Event
2024
Visual Programmer
2023
2023.8 SIGGRAPH 2023 Emerging Technologies
Speaker
2022
2022.12 MUTEK.JP 2022 Edition 7 - Hatis Noit & Yuma Kishi | MUTEK.JP 2022
Visual Programmer
Visual Artist
Engineer
2021
Programmer
2020
2020.9 Playing Tokyo Vol.11 - VJ Works
2020.6 Save The Metro Compilations curated by Ken’ichi Itoi - VJ Works
2020.4 Staying Tokyo Vol.00 - VJ Works
2020.2 Algorave Tokyo - VJ Works
Links
code:script.js
// import image from google photo(image address)
scrapbox.PopupMenu.addButton({
title: 'gphoto',
onClick: text => {
text = text.split(/\n/).map(line => line.replace(/^(.+)$/g,'$1#.jpg')).join('\n') return text;
}
});
// import image from google drive(share link)
scrapbox.PopupMenu.addButton({
title: 'gdrive_img',
onClick: text => {
}
});
// import video from google drive(share link)
scrapbox.PopupMenu.addButton({
title: 'gdrive_mov',
onClick: text => {
}
});
// counter of chars and words
scrapbox.PopupMenu.addButton({
title: function (text) {
const chars = text.replace(/\r\n/g, '').length const words = text.trim().split(/\r\n\s+/).length return ${chars}c ${words}w
},
onClick: () => null
})