├── .github └── workflows │ ├── nodejs.yml │ └── windows.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── __tests__ ├── backend-test.js ├── index.js ├── lena.jpg ├── qtf-blazeface.js ├── qtf-body-pix.js ├── qtf-deeplab.js ├── qtf-mobilenet.js └── qtf-posenet.js ├── jest.before.js ├── jest.config.js ├── jest.setup.js ├── models └── .gitkeep ├── package.json ├── rollup.config.js ├── src ├── index.js ├── qtf-blazeface.js ├── qtf-body-pix.js ├── qtf-deeplab.js ├── qtf-mobilenet.js ├── qtf-posenet.js ├── qtf-tfjs-loader.js └── utils.js └── test.sh /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/backend-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/__tests__/backend-test.js -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /__tests__/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/__tests__/lena.jpg -------------------------------------------------------------------------------- /__tests__/qtf-blazeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/__tests__/qtf-blazeface.js -------------------------------------------------------------------------------- /__tests__/qtf-body-pix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/__tests__/qtf-body-pix.js -------------------------------------------------------------------------------- /__tests__/qtf-deeplab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/__tests__/qtf-deeplab.js -------------------------------------------------------------------------------- /__tests__/qtf-mobilenet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/__tests__/qtf-mobilenet.js -------------------------------------------------------------------------------- /__tests__/qtf-posenet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/__tests__/qtf-posenet.js -------------------------------------------------------------------------------- /jest.before.js: -------------------------------------------------------------------------------- 1 | process.env['TF_CPP_MIN_LOG_LEVEL'] = '2' 2 | console.warn = jest.fn() 3 | 4 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- 1 | jest.setTimeout(60 * 1000); 2 | -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/src/index.js -------------------------------------------------------------------------------- /src/qtf-blazeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/src/qtf-blazeface.js -------------------------------------------------------------------------------- /src/qtf-body-pix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/src/qtf-body-pix.js -------------------------------------------------------------------------------- /src/qtf-deeplab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/src/qtf-deeplab.js -------------------------------------------------------------------------------- /src/qtf-mobilenet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/src/qtf-mobilenet.js -------------------------------------------------------------------------------- /src/qtf-posenet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/src/qtf-posenet.js -------------------------------------------------------------------------------- /src/qtf-tfjs-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/src/qtf-tfjs-loader.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/src/utils.js -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amanoese/qtf/HEAD/test.sh --------------------------------------------------------------------------------