├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── pre-commit.yml │ └── releases.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.py ├── assets ├── appicons │ ├── macos │ │ ├── icns │ │ │ ├── FRDMS1024x1024.icns │ │ │ ├── FRDMS128x128.icns │ │ │ ├── FRDMS256x256.icns │ │ │ └── FRDMS512x512.icns │ │ └── png │ │ │ ├── FRDMS1024x1024.png │ │ │ ├── FRDMS128x128.png │ │ │ ├── FRDMS256x256.png │ │ │ └── FRDMS512x512.png │ ├── original │ │ └── FRDMS100x100.png │ ├── svg │ │ └── FRDMS.svg │ └── windows │ │ ├── ico │ │ ├── FRDMS128x128.ico │ │ ├── FRDMS24x24.ico │ │ ├── FRDMS256x256.ico │ │ ├── FRDMS32x32.ico │ │ ├── FRDMS48x48.ico │ │ └── FRDMS64x64.ico │ │ └── png │ │ ├── FRDMS128x128.png │ │ ├── FRDMS24x24.png │ │ ├── FRDMS256x256.png │ │ ├── FRDMS32x32.png │ │ ├── FRDMS48x48.png │ │ └── FRDMS64x64.png └── onnxruntime_providers_shared.dll ├── docs ├── demo.gif ├── images.png ├── profiles.PNG ├── rec.png └── upload.png ├── package.json ├── public ├── FRDMS64x64.ico ├── index.html ├── manifest.json └── robots.txt ├── requirements.txt ├── server ├── __init__.py ├── commands │ ├── __init__.py │ ├── build.py │ ├── data.py │ └── dev.py ├── config.py ├── core │ ├── __init__.py │ ├── mutation.py │ └── query.py ├── database.py ├── faces │ ├── README.md │ ├── __init__.py │ └── arcface │ │ ├── __init__.py │ │ ├── app │ │ ├── __init__.py │ │ ├── common.py │ │ └── face_analysis.py │ │ ├── model_zoo │ │ ├── __init__.py │ │ ├── arcface_onnx.py │ │ ├── attribute.py │ │ ├── landmark.py │ │ ├── model_store.py │ │ ├── model_zoo.py │ │ └── scrfd.py │ │ └── utils │ │ ├── __init__.py │ │ ├── constant.py │ │ ├── cosine_similarity.py │ │ ├── download.py │ │ ├── face_align.py │ │ ├── filesystem.py │ │ └── storage.py ├── graphql │ ├── __init__.py │ ├── mutation.py │ ├── query.py │ └── types.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── 9edeb1ae275f_init_migration.py ├── models.py ├── schema.py ├── taskmanager.py ├── tasks │ ├── __init__.py │ ├── controllers │ │ ├── __init__.py │ │ ├── manager.py │ │ ├── queue.py │ │ ├── task.py │ │ └── worker.py │ ├── mutation.py │ ├── query.py │ └── tasks.py └── utils │ ├── __init__.py │ ├── dev.py │ ├── frozen.py │ ├── image.py │ └── logging.py ├── src ├── App.jsx ├── components │ ├── DataTable │ │ ├── DataTable.jsx │ │ ├── DataTable.stories.jsx │ │ └── EnhancedTableHead.jsx │ ├── SelectToolbar.jsx │ ├── context │ │ └── MenuContext.jsx │ ├── images │ │ ├── CroppedImage.jsx │ │ ├── Gallery.jsx │ │ └── Image.jsx │ ├── nav │ │ ├── NavBar.jsx │ │ └── PageCard.tsx │ └── progress │ │ ├── LinearBarsProgress.jsx │ │ └── LinearProgressWithLabel.tsx ├── constants.ts ├── graphql │ ├── graphql.js │ ├── index.js │ ├── mutation.js │ └── query.js ├── hooks │ ├── useImages.jsx │ ├── useProfiles.jsx │ └── useTasks.jsx ├── index.js ├── pages │ ├── FacialRecognition │ │ ├── components │ │ │ ├── ImageAnalytics.jsx │ │ │ ├── ImageAnnotator.jsx │ │ │ ├── UploadImage.jsx │ │ │ ├── faces │ │ │ │ ├── FaceCard.jsx │ │ │ │ └── FaceCards.jsx │ │ │ └── profiles │ │ │ │ ├── CreatePortfolio.jsx │ │ │ │ ├── DetailedProfileCard.jsx │ │ │ │ ├── ProfileCard.jsx │ │ │ │ └── ProfileCards.jsx │ │ └── index.jsx │ ├── Home.jsx │ ├── Images.jsx │ ├── ProfileDetails.jsx │ ├── profiles │ │ └── Profiles.jsx │ └── tasks │ │ ├── Create.jsx │ │ └── Tasks.jsx ├── react-app-env.d.ts ├── stories │ ├── Introduction.stories.mdx │ ├── assets │ │ ├── Anya Taylor Joy │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 19.jpg │ │ │ ├── 2.jpg │ │ │ ├── 20.jpg │ │ │ ├── 21.jpg │ │ │ ├── 22.jpg │ │ │ ├── 23.jpg │ │ │ ├── 24.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── code-brackets.svg │ │ ├── colors.svg │ │ ├── comments.svg │ │ ├── direction.svg │ │ ├── flow.svg │ │ ├── plugin.svg │ │ ├── repo.svg │ │ └── stackalt.svg │ ├── components │ │ ├── CroppedImage.stories.jsx │ │ ├── Gallery.stories.jsx │ │ └── LinearBarsProgress.stories.jsx │ ├── images.js │ └── pages │ │ └── Images.stories.jsx ├── style.js ├── types.ts └── utils │ ├── data.js │ ├── general.js │ ├── images.js │ └── index.js ├── tsconfig.json ├── wsgi.py ├── wsgi.spec ├── wsgi_mac.spec └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.github/workflows/releases.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/app.py -------------------------------------------------------------------------------- /assets/appicons/macos/icns/FRDMS1024x1024.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/macos/icns/FRDMS1024x1024.icns -------------------------------------------------------------------------------- /assets/appicons/macos/icns/FRDMS128x128.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/macos/icns/FRDMS128x128.icns -------------------------------------------------------------------------------- /assets/appicons/macos/icns/FRDMS256x256.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/macos/icns/FRDMS256x256.icns -------------------------------------------------------------------------------- /assets/appicons/macos/icns/FRDMS512x512.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/macos/icns/FRDMS512x512.icns -------------------------------------------------------------------------------- /assets/appicons/macos/png/FRDMS1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/macos/png/FRDMS1024x1024.png -------------------------------------------------------------------------------- /assets/appicons/macos/png/FRDMS128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/macos/png/FRDMS128x128.png -------------------------------------------------------------------------------- /assets/appicons/macos/png/FRDMS256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/macos/png/FRDMS256x256.png -------------------------------------------------------------------------------- /assets/appicons/macos/png/FRDMS512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/macos/png/FRDMS512x512.png -------------------------------------------------------------------------------- /assets/appicons/original/FRDMS100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/original/FRDMS100x100.png -------------------------------------------------------------------------------- /assets/appicons/svg/FRDMS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/svg/FRDMS.svg -------------------------------------------------------------------------------- /assets/appicons/windows/ico/FRDMS128x128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/ico/FRDMS128x128.ico -------------------------------------------------------------------------------- /assets/appicons/windows/ico/FRDMS24x24.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/ico/FRDMS24x24.ico -------------------------------------------------------------------------------- /assets/appicons/windows/ico/FRDMS256x256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/ico/FRDMS256x256.ico -------------------------------------------------------------------------------- /assets/appicons/windows/ico/FRDMS32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/ico/FRDMS32x32.ico -------------------------------------------------------------------------------- /assets/appicons/windows/ico/FRDMS48x48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/ico/FRDMS48x48.ico -------------------------------------------------------------------------------- /assets/appicons/windows/ico/FRDMS64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/ico/FRDMS64x64.ico -------------------------------------------------------------------------------- /assets/appicons/windows/png/FRDMS128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/png/FRDMS128x128.png -------------------------------------------------------------------------------- /assets/appicons/windows/png/FRDMS24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/png/FRDMS24x24.png -------------------------------------------------------------------------------- /assets/appicons/windows/png/FRDMS256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/png/FRDMS256x256.png -------------------------------------------------------------------------------- /assets/appicons/windows/png/FRDMS32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/png/FRDMS32x32.png -------------------------------------------------------------------------------- /assets/appicons/windows/png/FRDMS48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/png/FRDMS48x48.png -------------------------------------------------------------------------------- /assets/appicons/windows/png/FRDMS64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/appicons/windows/png/FRDMS64x64.png -------------------------------------------------------------------------------- /assets/onnxruntime_providers_shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/assets/onnxruntime_providers_shared.dll -------------------------------------------------------------------------------- /docs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/docs/demo.gif -------------------------------------------------------------------------------- /docs/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/docs/images.png -------------------------------------------------------------------------------- /docs/profiles.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/docs/profiles.PNG -------------------------------------------------------------------------------- /docs/rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/docs/rec.png -------------------------------------------------------------------------------- /docs/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/docs/upload.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/package.json -------------------------------------------------------------------------------- /public/FRDMS64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/public/FRDMS64x64.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/public/robots.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/requirements.txt -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/__init__.py -------------------------------------------------------------------------------- /server/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/commands/__init__.py -------------------------------------------------------------------------------- /server/commands/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/commands/build.py -------------------------------------------------------------------------------- /server/commands/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/commands/data.py -------------------------------------------------------------------------------- /server/commands/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/commands/dev.py -------------------------------------------------------------------------------- /server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/config.py -------------------------------------------------------------------------------- /server/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/core/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/core/mutation.py -------------------------------------------------------------------------------- /server/core/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/core/query.py -------------------------------------------------------------------------------- /server/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/database.py -------------------------------------------------------------------------------- /server/faces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/README.md -------------------------------------------------------------------------------- /server/faces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/faces/arcface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/__init__.py -------------------------------------------------------------------------------- /server/faces/arcface/app/__init__.py: -------------------------------------------------------------------------------- 1 | from .face_analysis import * 2 | -------------------------------------------------------------------------------- /server/faces/arcface/app/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/app/common.py -------------------------------------------------------------------------------- /server/faces/arcface/app/face_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/app/face_analysis.py -------------------------------------------------------------------------------- /server/faces/arcface/model_zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/model_zoo/__init__.py -------------------------------------------------------------------------------- /server/faces/arcface/model_zoo/arcface_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/model_zoo/arcface_onnx.py -------------------------------------------------------------------------------- /server/faces/arcface/model_zoo/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/model_zoo/attribute.py -------------------------------------------------------------------------------- /server/faces/arcface/model_zoo/landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/model_zoo/landmark.py -------------------------------------------------------------------------------- /server/faces/arcface/model_zoo/model_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/model_zoo/model_store.py -------------------------------------------------------------------------------- /server/faces/arcface/model_zoo/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/model_zoo/model_zoo.py -------------------------------------------------------------------------------- /server/faces/arcface/model_zoo/scrfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/model_zoo/scrfd.py -------------------------------------------------------------------------------- /server/faces/arcface/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/utils/__init__.py -------------------------------------------------------------------------------- /server/faces/arcface/utils/constant.py: -------------------------------------------------------------------------------- 1 | DEFAULT_MP_NAME = "antelopev2" 2 | -------------------------------------------------------------------------------- /server/faces/arcface/utils/cosine_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/utils/cosine_similarity.py -------------------------------------------------------------------------------- /server/faces/arcface/utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/utils/download.py -------------------------------------------------------------------------------- /server/faces/arcface/utils/face_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/utils/face_align.py -------------------------------------------------------------------------------- /server/faces/arcface/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/utils/filesystem.py -------------------------------------------------------------------------------- /server/faces/arcface/utils/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/faces/arcface/utils/storage.py -------------------------------------------------------------------------------- /server/graphql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/graphql/__init__.py -------------------------------------------------------------------------------- /server/graphql/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/graphql/mutation.py -------------------------------------------------------------------------------- /server/graphql/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/graphql/query.py -------------------------------------------------------------------------------- /server/graphql/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/graphql/types.py -------------------------------------------------------------------------------- /server/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. 2 | -------------------------------------------------------------------------------- /server/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/migrations/alembic.ini -------------------------------------------------------------------------------- /server/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/migrations/env.py -------------------------------------------------------------------------------- /server/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/migrations/script.py.mako -------------------------------------------------------------------------------- /server/migrations/versions/9edeb1ae275f_init_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/migrations/versions/9edeb1ae275f_init_migration.py -------------------------------------------------------------------------------- /server/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/models.py -------------------------------------------------------------------------------- /server/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/schema.py -------------------------------------------------------------------------------- /server/taskmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/taskmanager.py -------------------------------------------------------------------------------- /server/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/tasks/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/tasks/controllers/__init__.py -------------------------------------------------------------------------------- /server/tasks/controllers/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/tasks/controllers/manager.py -------------------------------------------------------------------------------- /server/tasks/controllers/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/tasks/controllers/queue.py -------------------------------------------------------------------------------- /server/tasks/controllers/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/tasks/controllers/task.py -------------------------------------------------------------------------------- /server/tasks/controllers/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/tasks/controllers/worker.py -------------------------------------------------------------------------------- /server/tasks/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/tasks/mutation.py -------------------------------------------------------------------------------- /server/tasks/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/tasks/query.py -------------------------------------------------------------------------------- /server/tasks/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/tasks/tasks.py -------------------------------------------------------------------------------- /server/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/utils/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/utils/dev.py -------------------------------------------------------------------------------- /server/utils/frozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/utils/frozen.py -------------------------------------------------------------------------------- /server/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/utils/image.py -------------------------------------------------------------------------------- /server/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/server/utils/logging.py -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/DataTable/DataTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/DataTable/DataTable.jsx -------------------------------------------------------------------------------- /src/components/DataTable/DataTable.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/DataTable/DataTable.stories.jsx -------------------------------------------------------------------------------- /src/components/DataTable/EnhancedTableHead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/DataTable/EnhancedTableHead.jsx -------------------------------------------------------------------------------- /src/components/SelectToolbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/SelectToolbar.jsx -------------------------------------------------------------------------------- /src/components/context/MenuContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/context/MenuContext.jsx -------------------------------------------------------------------------------- /src/components/images/CroppedImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/images/CroppedImage.jsx -------------------------------------------------------------------------------- /src/components/images/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/images/Gallery.jsx -------------------------------------------------------------------------------- /src/components/images/Image.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/images/Image.jsx -------------------------------------------------------------------------------- /src/components/nav/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/nav/NavBar.jsx -------------------------------------------------------------------------------- /src/components/nav/PageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/nav/PageCard.tsx -------------------------------------------------------------------------------- /src/components/progress/LinearBarsProgress.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/progress/LinearBarsProgress.jsx -------------------------------------------------------------------------------- /src/components/progress/LinearProgressWithLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/components/progress/LinearProgressWithLabel.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/graphql/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/graphql/graphql.js -------------------------------------------------------------------------------- /src/graphql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/graphql/index.js -------------------------------------------------------------------------------- /src/graphql/mutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/graphql/mutation.js -------------------------------------------------------------------------------- /src/graphql/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/graphql/query.js -------------------------------------------------------------------------------- /src/hooks/useImages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/hooks/useImages.jsx -------------------------------------------------------------------------------- /src/hooks/useProfiles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/hooks/useProfiles.jsx -------------------------------------------------------------------------------- /src/hooks/useTasks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/hooks/useTasks.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/FacialRecognition/components/ImageAnalytics.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/components/ImageAnalytics.jsx -------------------------------------------------------------------------------- /src/pages/FacialRecognition/components/ImageAnnotator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/components/ImageAnnotator.jsx -------------------------------------------------------------------------------- /src/pages/FacialRecognition/components/UploadImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/components/UploadImage.jsx -------------------------------------------------------------------------------- /src/pages/FacialRecognition/components/faces/FaceCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/components/faces/FaceCard.jsx -------------------------------------------------------------------------------- /src/pages/FacialRecognition/components/faces/FaceCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/components/faces/FaceCards.jsx -------------------------------------------------------------------------------- /src/pages/FacialRecognition/components/profiles/CreatePortfolio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/components/profiles/CreatePortfolio.jsx -------------------------------------------------------------------------------- /src/pages/FacialRecognition/components/profiles/DetailedProfileCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/components/profiles/DetailedProfileCard.jsx -------------------------------------------------------------------------------- /src/pages/FacialRecognition/components/profiles/ProfileCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/components/profiles/ProfileCard.jsx -------------------------------------------------------------------------------- /src/pages/FacialRecognition/components/profiles/ProfileCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/components/profiles/ProfileCards.jsx -------------------------------------------------------------------------------- /src/pages/FacialRecognition/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/FacialRecognition/index.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Images.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/Images.jsx -------------------------------------------------------------------------------- /src/pages/ProfileDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/ProfileDetails.jsx -------------------------------------------------------------------------------- /src/pages/profiles/Profiles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/profiles/Profiles.jsx -------------------------------------------------------------------------------- /src/pages/tasks/Create.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/tasks/Create.jsx -------------------------------------------------------------------------------- /src/pages/tasks/Tasks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/pages/tasks/Tasks.jsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/stories/Introduction.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/Introduction.stories.mdx -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/1.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/10.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/11.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/12.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/13.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/14.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/15.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/16.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/17.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/18.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/19.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/2.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/20.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/21.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/22.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/23.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/24.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/3.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/4.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/5.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/6.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/7.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/8.jpg -------------------------------------------------------------------------------- /src/stories/assets/Anya Taylor Joy/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/Anya Taylor Joy/9.jpg -------------------------------------------------------------------------------- /src/stories/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/code-brackets.svg -------------------------------------------------------------------------------- /src/stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/colors.svg -------------------------------------------------------------------------------- /src/stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/comments.svg -------------------------------------------------------------------------------- /src/stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/direction.svg -------------------------------------------------------------------------------- /src/stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/flow.svg -------------------------------------------------------------------------------- /src/stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/plugin.svg -------------------------------------------------------------------------------- /src/stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/repo.svg -------------------------------------------------------------------------------- /src/stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /src/stories/components/CroppedImage.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/components/CroppedImage.stories.jsx -------------------------------------------------------------------------------- /src/stories/components/Gallery.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/components/Gallery.stories.jsx -------------------------------------------------------------------------------- /src/stories/components/LinearBarsProgress.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/components/LinearBarsProgress.stories.jsx -------------------------------------------------------------------------------- /src/stories/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/images.js -------------------------------------------------------------------------------- /src/stories/pages/Images.stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/stories/pages/Images.stories.jsx -------------------------------------------------------------------------------- /src/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/style.js -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/utils/data.js -------------------------------------------------------------------------------- /src/utils/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/utils/general.js -------------------------------------------------------------------------------- /src/utils/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/utils/images.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/wsgi.py -------------------------------------------------------------------------------- /wsgi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/wsgi.spec -------------------------------------------------------------------------------- /wsgi_mac.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/wsgi_mac.spec -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivan-ngchakming/Facial-Recognition-Database-Management-System/HEAD/yarn.lock --------------------------------------------------------------------------------