├── .babelrc.js ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .firebaserc ├── .github └── workflows │ ├── ci.yml │ └── monthly-visual-testing.yml ├── .gitignore ├── .gitpod.yml ├── .lintstagedrc ├── .stylelintrc.json ├── LICENSE ├── README.MD ├── __mocks__ ├── fileMock.js └── styleMock.js ├── cypress.env.json ├── cypress.json ├── cypress ├── downloads │ └── _assets_girl-250--with-background.png ├── fixtures │ ├── adult-1868750_1920.jpg │ └── example.json ├── integration │ └── application.spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── firebase.json ├── package.json ├── postcss.config.js ├── public ├── assets │ ├── adult-1868750_1920.jpg │ ├── diagram.svg │ ├── girl-2501094_640.jpg │ ├── snow-1217124_640.jpg │ ├── social.jpg │ ├── tfjs-backend-wasm-simd.wasm │ ├── tfjs-backend-wasm-threaded-simd.d.ts │ ├── tfjs-backend-wasm-threaded-simd.js │ ├── tfjs-backend-wasm-threaded-simd.wasm │ ├── tfjs-backend-wasm-threaded-simd.worker.js │ ├── tfjs-backend-wasm.d.ts │ ├── tfjs-backend-wasm.js │ └── tfjs-backend-wasm.wasm └── index.html ├── setup-jest.js ├── setup-tests.js ├── src ├── component │ ├── alert │ │ ├── __tests__ │ │ │ └── alert.js │ │ └── alert.js │ ├── background-removal │ │ ├── __tests__ │ │ │ └── background-removal.js │ │ └── background-removal.js │ ├── collapse │ │ ├── events.js │ │ ├── index.css │ │ └── index.js │ ├── core-css │ │ ├── base-styles.css │ │ ├── index.js │ │ ├── reset.css │ │ ├── screen-readers.css │ │ ├── site.css │ │ ├── vars.css │ │ └── views.css │ ├── input-source │ │ ├── events.js │ │ ├── index.css │ │ └── index.js │ ├── output │ │ ├── events.js │ │ ├── index.css │ │ └── index.js │ ├── settings │ │ ├── __tests__ │ │ │ └── state.js │ │ ├── events.js │ │ ├── index.css │ │ ├── index.js │ │ └── state.js │ ├── suggestions │ │ ├── events.js │ │ ├── index.css │ │ └── index.js │ ├── test-example │ │ └── __tests__ │ │ │ └── example.tests.js │ └── utils │ │ └── index.js └── index.js └── webpack.js /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/monthly-visual-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.github/workflows/monthly-visual-testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/README.MD -------------------------------------------------------------------------------- /__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /cypress.env.json: -------------------------------------------------------------------------------- 1 | { 2 | "CYPRESS_BASE_URL": "http://localhost:5000" 3 | } 4 | -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/downloads/_assets_girl-250--with-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/cypress/downloads/_assets_girl-250--with-background.png -------------------------------------------------------------------------------- /cypress/fixtures/adult-1868750_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/cypress/fixtures/adult-1868750_1920.jpg -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /cypress/integration/application.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/cypress/integration/application.spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- 1 | import './commands' 2 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/adult-1868750_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/adult-1868750_1920.jpg -------------------------------------------------------------------------------- /public/assets/diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/diagram.svg -------------------------------------------------------------------------------- /public/assets/girl-2501094_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/girl-2501094_640.jpg -------------------------------------------------------------------------------- /public/assets/snow-1217124_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/snow-1217124_640.jpg -------------------------------------------------------------------------------- /public/assets/social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/social.jpg -------------------------------------------------------------------------------- /public/assets/tfjs-backend-wasm-simd.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/tfjs-backend-wasm-simd.wasm -------------------------------------------------------------------------------- /public/assets/tfjs-backend-wasm-threaded-simd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/tfjs-backend-wasm-threaded-simd.d.ts -------------------------------------------------------------------------------- /public/assets/tfjs-backend-wasm-threaded-simd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/tfjs-backend-wasm-threaded-simd.js -------------------------------------------------------------------------------- /public/assets/tfjs-backend-wasm-threaded-simd.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/tfjs-backend-wasm-threaded-simd.wasm -------------------------------------------------------------------------------- /public/assets/tfjs-backend-wasm-threaded-simd.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/tfjs-backend-wasm-threaded-simd.worker.js -------------------------------------------------------------------------------- /public/assets/tfjs-backend-wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/tfjs-backend-wasm.d.ts -------------------------------------------------------------------------------- /public/assets/tfjs-backend-wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/tfjs-backend-wasm.js -------------------------------------------------------------------------------- /public/assets/tfjs-backend-wasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/assets/tfjs-backend-wasm.wasm -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/public/index.html -------------------------------------------------------------------------------- /setup-jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/setup-jest.js -------------------------------------------------------------------------------- /setup-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/setup-tests.js -------------------------------------------------------------------------------- /src/component/alert/__tests__/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/alert/__tests__/alert.js -------------------------------------------------------------------------------- /src/component/alert/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/alert/alert.js -------------------------------------------------------------------------------- /src/component/background-removal/__tests__/background-removal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/background-removal/__tests__/background-removal.js -------------------------------------------------------------------------------- /src/component/background-removal/background-removal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/background-removal/background-removal.js -------------------------------------------------------------------------------- /src/component/collapse/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/collapse/events.js -------------------------------------------------------------------------------- /src/component/collapse/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/collapse/index.css -------------------------------------------------------------------------------- /src/component/collapse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/collapse/index.js -------------------------------------------------------------------------------- /src/component/core-css/base-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/core-css/base-styles.css -------------------------------------------------------------------------------- /src/component/core-css/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/core-css/index.js -------------------------------------------------------------------------------- /src/component/core-css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/core-css/reset.css -------------------------------------------------------------------------------- /src/component/core-css/screen-readers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/core-css/screen-readers.css -------------------------------------------------------------------------------- /src/component/core-css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/core-css/site.css -------------------------------------------------------------------------------- /src/component/core-css/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/core-css/vars.css -------------------------------------------------------------------------------- /src/component/core-css/views.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/core-css/views.css -------------------------------------------------------------------------------- /src/component/input-source/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/input-source/events.js -------------------------------------------------------------------------------- /src/component/input-source/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/input-source/index.css -------------------------------------------------------------------------------- /src/component/input-source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/input-source/index.js -------------------------------------------------------------------------------- /src/component/output/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/output/events.js -------------------------------------------------------------------------------- /src/component/output/index.css: -------------------------------------------------------------------------------- 1 | .output__preview { 2 | position: sticky; 3 | top: 0; 4 | } 5 | -------------------------------------------------------------------------------- /src/component/output/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/output/index.js -------------------------------------------------------------------------------- /src/component/settings/__tests__/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/settings/__tests__/state.js -------------------------------------------------------------------------------- /src/component/settings/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/settings/events.js -------------------------------------------------------------------------------- /src/component/settings/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/settings/index.css -------------------------------------------------------------------------------- /src/component/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/settings/index.js -------------------------------------------------------------------------------- /src/component/settings/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/settings/state.js -------------------------------------------------------------------------------- /src/component/suggestions/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/suggestions/events.js -------------------------------------------------------------------------------- /src/component/suggestions/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/suggestions/index.css -------------------------------------------------------------------------------- /src/component/suggestions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/suggestions/index.js -------------------------------------------------------------------------------- /src/component/test-example/__tests__/example.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/test-example/__tests__/example.tests.js -------------------------------------------------------------------------------- /src/component/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/component/utils/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poly-glot/tensorflowjs-remove-background/HEAD/webpack.js --------------------------------------------------------------------------------