feat: added rhizotron computer vision project to carousel

This commit is contained in:
Ceferino Patino 2025-07-21 08:40:01 -05:00
commit 0ebb717773
Signed by: c4patino
SSH key fingerprint: SHA256:9fQ9TsujGrdNNi76mnsu63v7dS5JOmHRZEqBOl49OR8

View file

@ -195,9 +195,11 @@ export default function ProjectsCarousel() {
>
<div className="flex h-full flex-col items-center justify-between">
<div className="flex h-3/4 w-full items-center justify-center px-2 md:h-4/5 md:px-6">
<div className="flex items-center justify-center rounded-md bg-gray-200 p-8 md:p-16 dark:bg-gray-800">
<span className="text-5xl md:text-6xl">🌱 🔍</span>
</div>
<img
src="/projects/subterra.ai.png"
className="hidden h-auto max-h-full w-auto max-w-full object-contain dark:block"
alt="subterra.ai ui showcase"
/>
</div>
<p className="text-muted-foreground mt-2 text-center text-xs leading-tight md:mt-3 md:text-sm md:leading-snug">
<span className="md:hidden">
@ -213,6 +215,32 @@ export default function ProjectsCarousel() {
</p>
</div>
</ProjectCard>
<ProjectCard
title="Fonio Seed Computer Vision Models"
description="Danforth Plant Science Center"
>
<div className="flex h-full flex-col items-center justify-between">
<div className="flex h-3/4 w-full items-center justify-center px-2 md:h-4/5 md:px-6">
<img
src="/projects/fonio-seed-cv.png"
className="h-auto max-h-full w-auto max-w-full object-contain"
alt="fonio seed computer vision showcase"
/>
</div>
<p className="text-muted-foreground mt-2 text-center text-xs leading-tight md:mt-3 md:text-sm md:leading-snug">
<span className="md:hidden">
Computer vision system with 99% accuracy for counting
overlapping fonio seeds.
</span>
<span className="hidden md:inline">
Compiled and labeled a dataset of over 8,000 fonio seed images
for robust model training. Implemented a neural network
achieving 99% accuracy in detecting overlapping seeds and
providing precise counts.
</span>
</p>
</div>
</ProjectCard>
</CarouselContent>
<CarouselPrevious className="hidden md:inline-flex" />
<CarouselNext className="hidden md:inline-flex" />