├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── argentina.jpg ├── austria.jpg ├── brazil.jpg ├── bulgaria.jpg ├── cambodia.jpg ├── dubai.jpg ├── egypt.jpg ├── germany.jpg ├── india.jpg ├── korea.jpg ├── romania.jpg ├── slovakia.jpg ├── spain.jpg ├── tailand.jpg ├── taiwan.jpg └── turky.jpg ├── locales ├── en.js └── ja.js ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── public ├── favicon.ico ├── static │ └── logo.jpg └── vercel.svg ├── styles ├── Home.module.scss └── globals.scss ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/README.md -------------------------------------------------------------------------------- /assets/argentina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/argentina.jpg -------------------------------------------------------------------------------- /assets/austria.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/austria.jpg -------------------------------------------------------------------------------- /assets/brazil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/brazil.jpg -------------------------------------------------------------------------------- /assets/bulgaria.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/bulgaria.jpg -------------------------------------------------------------------------------- /assets/cambodia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/cambodia.jpg -------------------------------------------------------------------------------- /assets/dubai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/dubai.jpg -------------------------------------------------------------------------------- /assets/egypt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/egypt.jpg -------------------------------------------------------------------------------- /assets/germany.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/germany.jpg -------------------------------------------------------------------------------- /assets/india.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/india.jpg -------------------------------------------------------------------------------- /assets/korea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/korea.jpg -------------------------------------------------------------------------------- /assets/romania.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/romania.jpg -------------------------------------------------------------------------------- /assets/slovakia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/slovakia.jpg -------------------------------------------------------------------------------- /assets/spain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/spain.jpg -------------------------------------------------------------------------------- /assets/tailand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/tailand.jpg -------------------------------------------------------------------------------- /assets/taiwan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/taiwan.jpg -------------------------------------------------------------------------------- /assets/turky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/assets/turky.jpg -------------------------------------------------------------------------------- /locales/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/locales/en.js -------------------------------------------------------------------------------- /locales/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/locales/ja.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/static/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/public/static/logo.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/Home.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/styles/Home.module.scss -------------------------------------------------------------------------------- /styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/styles/globals.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffyui/tensorflow-bodypix-sample/HEAD/yarn.lock --------------------------------------------------------------------------------