Added video editor project

This commit is contained in:
2025-03-27 18:47:27 +01:00
parent 5c86756de8
commit d72eb71f9b
3 changed files with 22 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

View File

@@ -45,6 +45,12 @@
"desc": "During my intership at Hachinohe National Institute of Technology, Japan, I was asked to research about Semantic Segmentation using the Oxford-IIIT Pet Dataset, and models like SegNet, U-Net, and DeepLabV3, gaining valuable experience along the way.",
"button_text": "More about it",
"date": "From April 2023 to July 2023"
},
"video_editor":{
"title": "Video Editor",
"desc": "I went for a second internship to Japan, at Fukushima National Institute of Technology. I assisted the Research team with the study on the perception of temporal seriality with the naked eye. My role was to create software able to perform various essentials transformations on videos.",
"button_text": "More about it",
"date": "From April 2024 to July 2024"
}
},
"tags":{

View File

@@ -10,7 +10,7 @@
<div v-for="(e,i) in projctsInfo" :key="i" class="project">
<h2>{{ e.title }}</h2>
<div class="project_picture">
<div class="project_picture" v-if="e.picture">
<img :src="e.picture">
</div>
<div class="project_tags">
@@ -35,7 +35,8 @@
import disblockSvg from "@/assets/svg/projects/disblock.svg";
import portfolioImg from "@/assets/img/portfolio.png";
import semanticSegmentation from '@/assets/img/semantic_segmentation.png';
import semanticSegmentationImg from '@/assets/img/semantic_segmentation.png';
import videoEditorSegmentationImg from '@/assets/img/video_editor.png';
import {useI18n} from 'vue-i18n';
const i18n = useI18n();
@@ -77,7 +78,7 @@
],
date: i18n.t("home.projects.project.portfolio.date")
},{
picture: semanticSegmentation,
picture: semanticSegmentationImg,
title: i18n.t("home.projects.project.semantic_segmentation.title"),
desc:i18n.t("home.projects.project.semantic_segmentation.desc"),
buttonText:i18n.t("home.projects.project.semantic_segmentation.button_text"),
@@ -88,6 +89,18 @@
{title:i18n.t("home.projects.tags.archived"), colour:tagsColours.archived}
],
date: i18n.t("home.projects.project.semantic_segmentation.date")
},{
picture: videoEditorSegmentationImg,
title: i18n.t("home.projects.project.video_editor.title"),
desc:i18n.t("home.projects.project.video_editor.desc"),
buttonText:i18n.t("home.projects.project.video_editor.button_text"),
buttonLink:"#",
tags:[
{title:i18n.t("home.projects.tags.research"), colour:tagsColours.research},
{title:i18n.t("home.projects.tags.school"), colour:tagsColours.school},
{title:i18n.t("home.projects.tags.archived"), colour:tagsColours.archived}
],
date: i18n.t("home.projects.project.video_editor.date")
}];
</script>