Skip to content

Commit

Permalink
change package
Browse files Browse the repository at this point in the history
  • Loading branch information
yeemachine committed Oct 18, 2021
1 parent d5fef4b commit 3eb35e6
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 15 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Richard Yee
Copyright (c) 2021 yeemachine

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# KalidoKit - Face, Pose, and Hand Tracking Kinematics

Kalidokit is a blendshape and kinematics solver for Mediapipe/Tensorflow.js face, pose, and hand tracking models, compatible with [Facemesh](https://github.com/tensorflow/tfjs-models/tree/master/face-landmarks-detection), [Blazepose](https://github.com/tensorflow/tfjs-models/tree/master/pose-detection), [Handpose](https://google.github.io/mediapipe/solutions/hands.html), and [Holistic](https://google.github.io/mediapipe/solutions/holistic.html).

It takes the 3D point cloud and turns into easy-to-use rotations and values for a variety of application uses.
Kalidokit is a blendshape and kinematics solver for Mediapipe/Tensorflow.js face, pose, and hand tracking models, compatible with [Facemesh](https://github.com/tensorflow/tfjs-models/tree/master/face-landmarks-detection), [Blazepose](https://github.com/tensorflow/tfjs-models/tree/master/pose-detection), [Handpose](https://google.github.io/mediapipe/solutions/hands.html), and [Holistic](https://google.github.io/mediapipe/solutions/holistic.html). It takes predicted 3D landmarks and calculates simple euler rotations and blendshape face values.

As the core to Vtuber web apps, [Kalidoface](https://kalidoface.com) and [Kalidoface 3D](https://3d.kalidoface.com), KalidoKit is designed specifically for rigging 3D VRM models and Live2D avatars!

Expand Down
5 changes: 3 additions & 2 deletions dist/kalidokit.es.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/**
* @kalidokit v0.1.0
* Blendshape and kinematics solver for Mediapipe/Tensorflow.js Face, Pose, and Finger tracking models.
*
* Copyright (c) 2020-2021 Richard Yee
*
* @license
* Copyright (c) 2020-2021 yeemachine
* SPDX-License-Idntifier: MIT
* https://github.com/yeemachine/kalidokit#readme
*/
Expand Down
5 changes: 3 additions & 2 deletions dist/kalidokit.umd.js

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

1 change: 0 additions & 1 deletion docs/kalidokit.umd copy.js

This file was deleted.

7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{
"name": "kalidokit",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/yeemachine/kalidokit.git"
},
"repository": "github:yeemachine/kalidokit",
"main": "src/main.js",
"scripts": {
"dev": "vite docs --host",
Expand Down Expand Up @@ -33,7 +30,7 @@
"finger-tracking",
"detection"
],
"author": "Richard Yee",
"author": "yeemachine",
"license": "MIT",
"year": "2020-2021"
}
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = defineConfig({
},
plugins: [
Banner(
`/**\n * @${pkg.name} v${pkg.version}\n * ${pkg.description}\n *\n * Copyright (c) ${pkg.year} ${pkg.author}\n * SPDX-License-Idntifier: ${pkg.license} \n * ${pkg.homepage}\n */`
`/**\n * @${pkg.name} v${pkg.version}\n * ${pkg.description}\n * \n * @license\n * Copyright (c) ${pkg.year} ${pkg.author}\n * SPDX-License-Idntifier: ${pkg.license} \n * ${pkg.homepage}\n */`
),
],
});

0 comments on commit 3eb35e6

Please sign in to comment.