Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ ______________________________________________________________________

# Landmark Editor

#### An Editor to manually adjust automatic Face Mesh Detections
#### An Editor to manually adjust automatic Landmark Detections

______________________________________________________________________

![Build](https://github.com/hcmlab/FaceMeshEditor/actions/workflows/build.yaml/badge.svg)
![Build](https://github.com/hcmlab/LandmarkEditor/actions/workflows/build.yaml/badge.svg)

[**Demo**](https://hcmlab.github.io/FaceMeshEditor/)
[**Demo**](https://hcmlab.github.io/LandmarkEditor/)

![Screenshot of the Demo as a Preview](static/images/PreviewAnimation.gif)
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/remote_api.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.3
info:
title: FaceMeshEditor remote api
title: LandmarkEditor remote api
description: Describes the API a server should supply to work with this application
version: 1.0.0
components:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "facemesheditor",
"name": "landmarkeditor",
"version": "1.0.0",
"private": true,
"type": "module",
Expand Down
6 changes: 3 additions & 3 deletions src/components/Navbar/AboutSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const showInfo = ref(false);
<a
id="button-github"
class="nav-link btn btn-light text-start"
href="https://github.com/hcmlab/FaceMeshEditor"
href="https://github.com/hcmlab/LandmarkEditor"
target="_blank"
><i class="bi bi-github me-1"></i>GitHub</a
>
Expand All @@ -20,7 +20,7 @@ const showInfo = ref(false);
<a
id="button-report-issue"
class="nav-link btn btn-light text-start"
href="https://github.com/hcmlab/FaceMeshEditor/issues/new"
href="https://github.com/hcmlab/LandmarkEditor/issues/new"
target="_blank"
><i class="bi bi-bug me-1"></i>Report Issue</a
>
Expand All @@ -29,7 +29,7 @@ const showInfo = ref(false);
<a
id="button-question"
class="nav-link btn btn-light text-start"
href="https://github.com/hcmlab/FaceMeshEditor/issues"
href="https://github.com/hcmlab/LandmarkEditor/issues"
target="_blank"
><i class="bi bi-question-circle me-1"></i>Question</a
>
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default defineConfig({
}),
vueDevTools()
],
base: '/FaceMeshEditor/',
base: '/LandmarkEditor/',
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
Expand Down