gitextract_jaanbdff/ ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── package.json ├── public/ │ ├── assets/ │ │ └── manifest.json │ ├── index.html │ ├── interactive_module_quantized_592547_2023_03_19_sam6_long_uncertain.onnx │ ├── interactive_module_quantized_592547_2023_03_20_sam6_long_all_masks_extra_data_with_ious.onnx │ ├── manifest.json │ ├── ort-wasm-simd-threaded.wasm │ ├── ort-wasm-simd.wasm │ ├── ort-wasm-threaded.wasm │ ├── ort-wasm.wasm │ └── robots.txt ├── src/ │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── assets/ │ │ ├── manifest.json │ │ └── scss/ │ │ └── App.scss │ ├── components/ │ │ ├── Canvas.tsx │ │ ├── Content.tsx │ │ ├── ErrorPage.tsx │ │ ├── FAQ.tsx │ │ ├── FeatureSummary.tsx │ │ ├── FeedbackModal.tsx │ │ ├── Footer.tsx │ │ ├── Gallery.tsx │ │ ├── Hero.tsx │ │ ├── HomePage.tsx │ │ ├── ImagePicker.tsx │ │ ├── LegalText.tsx │ │ ├── LoadingModal.tsx │ │ ├── MobileOptionNavBar.tsx │ │ ├── MobileSegmentDrawer.tsx │ │ ├── Navbar.tsx │ │ ├── PointsModal.tsx │ │ ├── SegmentDrawer.tsx │ │ ├── SegmentOptions.tsx │ │ ├── Sparkle.tsx │ │ ├── Stage.tsx │ │ ├── SvgMask.tsx │ │ ├── ToolTip.tsx │ │ ├── Video.tsx │ │ ├── helpers/ │ │ │ ├── CanvasHelper.tsx │ │ │ ├── ImageHelper.tsx │ │ │ ├── Interface.tsx │ │ │ ├── colors.tsx │ │ │ ├── custom_tracer.tsx │ │ │ ├── getFile.tsx │ │ │ ├── mask_utils.tsx │ │ │ ├── metaTheme.tsx │ │ │ ├── modelAPI.tsx │ │ │ └── photos.tsx │ │ └── hooks/ │ │ ├── Animation.tsx │ │ ├── context.tsx │ │ └── createContext.tsx │ ├── index.css │ ├── index.tsx │ ├── interactive_module_quantized_592547_2023_03_19_sam6_long_uncertain.onnx │ ├── interactive_module_quantized_592547_2023_03_20_sam6_long_all_masks_extra_data_with_ious.onnx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── setupTests.ts ├── tsconfig.json └── webpack.config.js