Skip to content

Commit

Permalink
add image annotation tool project
Browse files Browse the repository at this point in the history
  • Loading branch information
Picorims committed Mar 12, 2024
1 parent 0edd437 commit 8f58a3e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/lib/TechList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
python,
pandas,
numpy,
android
android,
vbnet
}
</script>

Expand Down Expand Up @@ -224,6 +225,12 @@
name: "Android"
}
techDictionary[Tech.vbnet] = {
icon: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>.NET</title><path d="M24 8.77h-2.468v7.565h-1.425V8.77h-2.462V7.53H24zm-6.852 7.565h-4.821V7.53h4.63v1.24h-3.205v2.494h2.953v1.234h-2.953v2.604h3.396zm-6.708 0H8.882L4.78 9.863a2.896 2.896 0 0 1-.258-.51h-.036c.032.189.048.592.048 1.21v5.772H3.157V7.53h1.659l3.965 6.32c.167.261.275.442.323.54h.024c-.04-.233-.06-.629-.06-1.185V7.529h1.372zm-8.703-.693a.868.829 0 0 1-.869.829.868.829 0 0 1-.868-.83.868.829 0 0 1 .868-.828.868.829 0 0 1 .869.829Z"/></svg>',
color: "#512BD4",
name: "VB.NET"
}
export let list: Array<Tech> = [];
Expand Down
6 changes: 6 additions & 0 deletions src/lib/project_info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ export const ProjectInfo: {[index: string]: ProjectData} = {
year: "2024",
tags: [Tag.personal, Tag.public]
},
imageAnnotationTool: {
name: "Image annotation software",
tech: [Tech.vbnet],
year: "2021",
tags: [Tag.university, Tag.team]
},
plant: {
name: "Plant",
tech: [Tech.js, Tech.css, Tech.html, Tech.electron, Tech.p5],
Expand Down
8 changes: 8 additions & 0 deletions src/routes/development/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,14 @@
Transform a bitmap image into a non directed weighted network graph, and display it
using a web viewer to perform Dijkstra's algorithm on selected nodes.
</Project>

<Project
projectInfo={ProjectInfo.imageAnnotationTool}
>
This software allows to place points for the different features of a face, to then compare
a face with other faces and display the closest one. The focus was on creating a great user
interface and experience.
</Project>

<Project
href="https://github.com/Picorims/plant-game"
Expand Down

0 comments on commit 8f58a3e

Please sign in to comment.