Added more about Fukushima internship

This commit is contained in:
2025-04-29 15:15:40 +02:00
parent b2e5039cf8
commit 0debc96f0b
5 changed files with 22 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 107 KiB

View File

@@ -149,7 +149,13 @@
"text2": "Those experiments are filmed using a normal and a slow motion camera. The resulting files are then passed to a small program I made in order to work on the frames."
},
"software": {
"title": "Frames editing software"
"title": "Frames editing software",
"text": "I created a simple software that allowed researchers to edit quickly the experiments videos. The program was basically a GUI over ffmpeg, allowing users to alter the temporality by reversing or randomizing frames order, and recreating the edited file.",
"text2": "Here is an example of a frame coming from some files we worked on. Once assembled into a video file again, we were able to conduct some experiment about the perception of temporal seriality using the naked eye."
},
"data_recovery": {
"title": "Data recovery",
"text": "Unfortunately, at some point, the laptop containing a part of the research data broke, and I did by best to recover the lost files. Working tirelessly, I tried a lot of different recovery tools, until realizing the hard drive is encrypted using Microsoft's Bitlocker. This security is enabled by default on a large part of new laptops using Windows, and nobody in the team ever heard about it. Without any recovery key (not saved in Microsoft account !), the files were sadly definitively lost. This is the reason why I removed Windows from all my computers, and started using Linux daily."
}
}
}

View File

@@ -38,7 +38,7 @@
import disblockSvg from "@/assets/svg/projects/disblock.svg";
import portfolioImg from "@/assets/img/portfolio.png";
import semanticSegmentationImg from '@/assets/img/semantic_segmentation.png';
import videoEditorImg from '@/assets/img/video_editor.png';
import videoEditorImg from '@/assets/img/video_sample.png';
import tradingAiImg from '@/assets/img/trading_ai.png';
import {useI18n} from 'vue-i18n';

View File

@@ -20,6 +20,18 @@
<p>{{ $t("projects.video_editor.perception.text2") }}</p>
<h2>{{ $t("projects.video_editor.software.title") }}</h2>
<doubleRowHolder>
<p>{{ $t("projects.video_editor.software.text") }}</p>
<img :src="videoEditorImg"/>
</doubleRowHolder>
<doubleRowHolder class="space_around">
<p>{{ $t("projects.video_editor.software.text2") }}</p>
<img :src="videoSampleImg"/>
</doubleRowHolder>
<h2>{{ $t("projects.video_editor.data_recovery.title") }}</h2>
<p>{{ $t("projects.video_editor.data_recovery.text") }}</p>
</article>
</template>
@@ -27,7 +39,8 @@
import Header from '@/components/header.vue';
import doubleRowHolder from '@/components/doubleRowHolder.vue';
import videoEditorImg from '@/assets/img/video_editor.png';
import videoSampleImg from '@/assets/img/video_sample.png';
import videoEditorImg from '@/assets/img/projects/video_editor.png';
import fukushimaKosenImg from '@/assets/img/projects/fukushima_kosen.jpg';
import fukushimaKosenExp1Img from '@/assets/img/projects/fukushima_exp1.jpg';
import fukushimaKosenExp2Img from '@/assets/img/projects/fukushima_exp2.jpg';