Added some experiment pictures

This commit is contained in:
2025-04-29 00:29:07 +02:00
parent 3e869df967
commit b2e5039cf8
4 changed files with 18 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

View File

@@ -145,7 +145,11 @@
}, },
"perception": { "perception": {
"title": "Research about the perception of temporal seriality with the naked eye", "title": "Research about the perception of temporal seriality with the naked eye",
"text": "One of my tasks was to help the research team by imaginating new ways to create sequences that can be easily used in this study. Sequences consisted mainly in videos of small balls falling or waterfalls." "text": "One of my tasks was to help the research team by imaginating new ways to create sequences that can be easily used in this study. Sequences consisted mainly in videos of small balls falling or waterfalls.",
"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"
} }
} }
} }

View File

@@ -13,6 +13,13 @@
<h2>{{ $t("projects.video_editor.perception.title") }}</h2> <h2>{{ $t("projects.video_editor.perception.title") }}</h2>
<p>{{ $t("projects.video_editor.perception.text") }}</p> <p>{{ $t("projects.video_editor.perception.text") }}</p>
<doubleRowHolder class="space_around">
<img :src="fukushimaKosenExp1Img"/>
<img :src="fukushimaKosenExp2Img"/>
</doubleRowHolder>
<p>{{ $t("projects.video_editor.perception.text2") }}</p>
<h2>{{ $t("projects.video_editor.software.title") }}</h2>
</article> </article>
</template> </template>
@@ -22,6 +29,8 @@
import videoEditorImg from '@/assets/img/video_editor.png'; import videoEditorImg from '@/assets/img/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 fukushimaKosenExp2Img from '@/assets/img/projects/fukushima_exp2.jpg';
</script> </script>
<style scoped> <style scoped>
@@ -47,5 +56,9 @@
min-width: 200px; min-width: 200px;
max-width: 400px; max-width: 400px;
} }
.space_around{
margin-top: 15px;
margin-bottom: 15px;
}
</style> </style>