mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
Added more about Fukushima internship
This commit is contained in:
BIN
src/assets/img/projects/video_editor.png
Normal file
BIN
src/assets/img/projects/video_editor.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
@@ -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."
|
"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": {
|
"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."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
import disblockSvg from "@/assets/svg/projects/disblock.svg";
|
import disblockSvg from "@/assets/svg/projects/disblock.svg";
|
||||||
import portfolioImg from "@/assets/img/portfolio.png";
|
import portfolioImg from "@/assets/img/portfolio.png";
|
||||||
import semanticSegmentationImg from '@/assets/img/semantic_segmentation.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 tradingAiImg from '@/assets/img/trading_ai.png';
|
||||||
|
|
||||||
import {useI18n} from 'vue-i18n';
|
import {useI18n} from 'vue-i18n';
|
||||||
|
|||||||
@@ -20,6 +20,18 @@
|
|||||||
<p>{{ $t("projects.video_editor.perception.text2") }}</p>
|
<p>{{ $t("projects.video_editor.perception.text2") }}</p>
|
||||||
|
|
||||||
<h2>{{ $t("projects.video_editor.software.title") }}</h2>
|
<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>
|
</article>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -27,7 +39,8 @@
|
|||||||
import Header from '@/components/header.vue';
|
import Header from '@/components/header.vue';
|
||||||
import doubleRowHolder from '@/components/doubleRowHolder.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 fukushimaKosenImg from '@/assets/img/projects/fukushima_kosen.jpg';
|
||||||
import fukushimaKosenExp1Img from '@/assets/img/projects/fukushima_exp1.jpg';
|
import fukushimaKosenExp1Img from '@/assets/img/projects/fukushima_exp1.jpg';
|
||||||
import fukushimaKosenExp2Img from '@/assets/img/projects/fukushima_exp2.jpg';
|
import fukushimaKosenExp2Img from '@/assets/img/projects/fukushima_exp2.jpg';
|
||||||
|
|||||||
Reference in New Issue
Block a user