mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2026-05-06 08:46:40 +00:00
15 lines
443 B
Vue
15 lines
443 B
Vue
<template>
|
|
<ProjectCard
|
|
:title="$t('instance_detection.title')" :image="image" image_classes=""
|
|
:links="[
|
|
{ label: 'Repository', url: 'https://github.com/NotXia/opencv-instance-detection' }
|
|
]">
|
|
|
|
<p>{{ $t('instance_detection.description') }}</p>
|
|
</ProjectCard>
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
import image from "@/assets/images/projects/instance_detection.png";
|
|
</script> |