├── .dockerignore ├── .flake8 ├── .gitattributes ├── .github └── workflows │ ├── codeql-analysis.yml │ ├── docker.yaml │ ├── master.yml │ ├── master_docker.yaml │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile.cpu ├── Dockerfile.cuda ├── LICENSE ├── MANIFEST.in ├── README.md ├── carvekit ├── __init__.py ├── __main__.py ├── api │ ├── __init__.py │ ├── high.py │ └── interface.py ├── ml │ ├── __init__.py │ ├── arch │ │ ├── __init__.py │ │ ├── basnet │ │ │ ├── __init__.py │ │ │ └── basnet.py │ │ ├── fba_matting │ │ │ ├── __init__.py │ │ │ ├── layers_WS.py │ │ │ ├── models.py │ │ │ ├── resnet_GN_WS.py │ │ │ ├── resnet_bn.py │ │ │ └── transforms.py │ │ ├── tracerb7 │ │ │ ├── __init__.py │ │ │ ├── att_modules.py │ │ │ ├── conv_modules.py │ │ │ ├── effi_utils.py │ │ │ ├── efficientnet.py │ │ │ └── tracer.py │ │ └── u2net │ │ │ ├── __init__.py │ │ │ └── u2net.py │ ├── files │ │ ├── __init__.py │ │ └── models_loc.py │ └── wrap │ │ ├── __init__.py │ │ ├── basnet.py │ │ ├── deeplab_v3.py │ │ ├── fba_matting.py │ │ ├── tracer_b7.py │ │ └── u2net.py ├── pipelines │ ├── __init__.py │ ├── postprocessing.py │ └── preprocessing.py ├── trimap │ ├── __init__.py │ ├── add_ops.py │ ├── cv_gen.py │ └── generator.py ├── utils │ ├── __init__.py │ ├── download_models.py │ ├── fs_utils.py │ ├── image_utils.py │ ├── mask_utils.py │ ├── models_utils.py │ └── pool_utils.py └── web │ ├── __init__.py │ ├── app.py │ ├── deps.py │ ├── handlers │ ├── __init__.py │ └── response.py │ ├── other │ ├── __init__.py │ └── removebg.py │ ├── responses │ ├── __init__.py │ └── api.py │ ├── routers │ ├── __init__.py │ └── api_router.py │ ├── schemas │ ├── __init__.py │ ├── config.py │ └── request.py │ ├── static │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── fancybox_loading.gif │ │ ├── fancybox_overlay.png │ │ ├── fancybox_sprite.png │ │ ├── font-awesome.min.css │ │ ├── jquery.fancybox.css │ │ ├── main.css │ │ ├── media-queries.css │ │ ├── normalize.min.css │ │ └── particles.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── img │ │ ├── CarveKit_logo_main.png │ │ ├── art.gif │ │ ├── envelop.png │ │ ├── icon.png │ │ └── preloader.gif │ ├── index.html │ └── js │ │ ├── bootstrap.min.js │ │ ├── custom.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-countTo.js │ │ ├── jquery.appear.js │ │ ├── jquery.easing.min.js │ │ ├── jquery.fancybox.pack.js │ │ ├── jquery.mixitup.min.js │ │ ├── jquery.parallax-1.1.3.js │ │ ├── jquery.singlePageNav.min.js │ │ ├── modernizr-2.6.2.min.js │ │ ├── particles.js │ │ └── wow.min.js │ └── utils │ ├── __init__.py │ ├── init_utils.py │ ├── net_utils.py │ └── task_queue.py ├── conftest.py ├── docker-compose.cpu.yml ├── docker-compose.cuda.yml ├── docs ├── CREDITS.md ├── code_examples │ └── python │ │ ├── http_api_lib.py │ │ ├── http_api_requests.py │ │ └── images │ │ └── 4.jpg ├── imgs │ ├── compare │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── readme.jpg │ ├── input │ │ ├── 1.jpg │ │ ├── 1_bg_removed.png │ │ ├── 2.jpg │ │ ├── 2_bg_removed.png │ │ ├── 3.jpg │ │ ├── 3_bg_removed.png │ │ ├── 4.jpg │ │ └── 4_bg_removed.png │ ├── logo.png │ └── screenshot │ │ ├── docs_fastapi.png │ │ └── frontend.png ├── other │ └── carvekit_try.ipynb └── readme │ └── ru.md ├── requirements.txt ├── requirements_dev.txt ├── requirements_test.txt ├── setup.py └── tests ├── data ├── cat.JPG ├── cat.MP3 ├── cat.jpg ├── cat.mp3 ├── cat_mask.png └── cat_trimap.png ├── test_basnet.py ├── test_deeplabv3.py ├── test_fba.py ├── test_fs_utils.py ├── test_high.py ├── test_image_utils.py ├── test_interface.py ├── test_mask_utils.py ├── test_models_utils.py ├── test_pool_utils.py ├── test_postprocessing.py ├── test_preprocessing.py ├── test_tracer.py ├── test_trimap.py └── test_u2net.py /.dockerignore: -------------------------------------------------------------------------------- 1 | venv 2 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/.github/workflows/docker.yaml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/master_docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/.github/workflows/master_docker.yaml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile.cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/Dockerfile.cpu -------------------------------------------------------------------------------- /Dockerfile.cuda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/Dockerfile.cuda -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements*.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/README.md -------------------------------------------------------------------------------- /carvekit/__init__.py: -------------------------------------------------------------------------------- 1 | version = "4.1.2" 2 | -------------------------------------------------------------------------------- /carvekit/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/__main__.py -------------------------------------------------------------------------------- /carvekit/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/api/high.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/api/high.py -------------------------------------------------------------------------------- /carvekit/api/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/api/interface.py -------------------------------------------------------------------------------- /carvekit/ml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/__init__.py -------------------------------------------------------------------------------- /carvekit/ml/arch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/ml/arch/basnet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/ml/arch/basnet/basnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/basnet/basnet.py -------------------------------------------------------------------------------- /carvekit/ml/arch/fba_matting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/ml/arch/fba_matting/layers_WS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/fba_matting/layers_WS.py -------------------------------------------------------------------------------- /carvekit/ml/arch/fba_matting/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/fba_matting/models.py -------------------------------------------------------------------------------- /carvekit/ml/arch/fba_matting/resnet_GN_WS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/fba_matting/resnet_GN_WS.py -------------------------------------------------------------------------------- /carvekit/ml/arch/fba_matting/resnet_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/fba_matting/resnet_bn.py -------------------------------------------------------------------------------- /carvekit/ml/arch/fba_matting/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/fba_matting/transforms.py -------------------------------------------------------------------------------- /carvekit/ml/arch/tracerb7/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/ml/arch/tracerb7/att_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/tracerb7/att_modules.py -------------------------------------------------------------------------------- /carvekit/ml/arch/tracerb7/conv_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/tracerb7/conv_modules.py -------------------------------------------------------------------------------- /carvekit/ml/arch/tracerb7/effi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/tracerb7/effi_utils.py -------------------------------------------------------------------------------- /carvekit/ml/arch/tracerb7/efficientnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/tracerb7/efficientnet.py -------------------------------------------------------------------------------- /carvekit/ml/arch/tracerb7/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/tracerb7/tracer.py -------------------------------------------------------------------------------- /carvekit/ml/arch/u2net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/ml/arch/u2net/u2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/arch/u2net/u2net.py -------------------------------------------------------------------------------- /carvekit/ml/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/files/__init__.py -------------------------------------------------------------------------------- /carvekit/ml/files/models_loc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/files/models_loc.py -------------------------------------------------------------------------------- /carvekit/ml/wrap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/ml/wrap/basnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/wrap/basnet.py -------------------------------------------------------------------------------- /carvekit/ml/wrap/deeplab_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/wrap/deeplab_v3.py -------------------------------------------------------------------------------- /carvekit/ml/wrap/fba_matting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/wrap/fba_matting.py -------------------------------------------------------------------------------- /carvekit/ml/wrap/tracer_b7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/wrap/tracer_b7.py -------------------------------------------------------------------------------- /carvekit/ml/wrap/u2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/ml/wrap/u2net.py -------------------------------------------------------------------------------- /carvekit/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/pipelines/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/pipelines/postprocessing.py -------------------------------------------------------------------------------- /carvekit/pipelines/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/pipelines/preprocessing.py -------------------------------------------------------------------------------- /carvekit/trimap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/trimap/add_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/trimap/add_ops.py -------------------------------------------------------------------------------- /carvekit/trimap/cv_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/trimap/cv_gen.py -------------------------------------------------------------------------------- /carvekit/trimap/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/trimap/generator.py -------------------------------------------------------------------------------- /carvekit/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/utils/download_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/utils/download_models.py -------------------------------------------------------------------------------- /carvekit/utils/fs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/utils/fs_utils.py -------------------------------------------------------------------------------- /carvekit/utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/utils/image_utils.py -------------------------------------------------------------------------------- /carvekit/utils/mask_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/utils/mask_utils.py -------------------------------------------------------------------------------- /carvekit/utils/models_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/utils/models_utils.py -------------------------------------------------------------------------------- /carvekit/utils/pool_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/utils/pool_utils.py -------------------------------------------------------------------------------- /carvekit/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/app.py -------------------------------------------------------------------------------- /carvekit/web/deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/deps.py -------------------------------------------------------------------------------- /carvekit/web/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/web/handlers/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/handlers/response.py -------------------------------------------------------------------------------- /carvekit/web/other/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/web/other/removebg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/other/removebg.py -------------------------------------------------------------------------------- /carvekit/web/responses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/web/responses/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/responses/api.py -------------------------------------------------------------------------------- /carvekit/web/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/web/routers/api_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/routers/api_router.py -------------------------------------------------------------------------------- /carvekit/web/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/web/schemas/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/schemas/config.py -------------------------------------------------------------------------------- /carvekit/web/schemas/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/schemas/request.py -------------------------------------------------------------------------------- /carvekit/web/static/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/animate.css -------------------------------------------------------------------------------- /carvekit/web/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /carvekit/web/static/css/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/fancybox_loading.gif -------------------------------------------------------------------------------- /carvekit/web/static/css/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/fancybox_overlay.png -------------------------------------------------------------------------------- /carvekit/web/static/css/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/fancybox_sprite.png -------------------------------------------------------------------------------- /carvekit/web/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /carvekit/web/static/css/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/jquery.fancybox.css -------------------------------------------------------------------------------- /carvekit/web/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/main.css -------------------------------------------------------------------------------- /carvekit/web/static/css/media-queries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/media-queries.css -------------------------------------------------------------------------------- /carvekit/web/static/css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/normalize.min.css -------------------------------------------------------------------------------- /carvekit/web/static/css/particles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/css/particles.css -------------------------------------------------------------------------------- /carvekit/web/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /carvekit/web/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /carvekit/web/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /carvekit/web/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /carvekit/web/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /carvekit/web/static/img/CarveKit_logo_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/img/CarveKit_logo_main.png -------------------------------------------------------------------------------- /carvekit/web/static/img/art.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/img/art.gif -------------------------------------------------------------------------------- /carvekit/web/static/img/envelop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/img/envelop.png -------------------------------------------------------------------------------- /carvekit/web/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/img/icon.png -------------------------------------------------------------------------------- /carvekit/web/static/img/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/img/preloader.gif -------------------------------------------------------------------------------- /carvekit/web/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/index.html -------------------------------------------------------------------------------- /carvekit/web/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /carvekit/web/static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/custom.js -------------------------------------------------------------------------------- /carvekit/web/static/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /carvekit/web/static/js/jquery-countTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/jquery-countTo.js -------------------------------------------------------------------------------- /carvekit/web/static/js/jquery.appear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/jquery.appear.js -------------------------------------------------------------------------------- /carvekit/web/static/js/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/jquery.easing.min.js -------------------------------------------------------------------------------- /carvekit/web/static/js/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /carvekit/web/static/js/jquery.mixitup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/jquery.mixitup.min.js -------------------------------------------------------------------------------- /carvekit/web/static/js/jquery.parallax-1.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/jquery.parallax-1.1.3.js -------------------------------------------------------------------------------- /carvekit/web/static/js/jquery.singlePageNav.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/jquery.singlePageNav.min.js -------------------------------------------------------------------------------- /carvekit/web/static/js/modernizr-2.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/modernizr-2.6.2.min.js -------------------------------------------------------------------------------- /carvekit/web/static/js/particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/particles.js -------------------------------------------------------------------------------- /carvekit/web/static/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/static/js/wow.min.js -------------------------------------------------------------------------------- /carvekit/web/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /carvekit/web/utils/init_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/utils/init_utils.py -------------------------------------------------------------------------------- /carvekit/web/utils/net_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/utils/net_utils.py -------------------------------------------------------------------------------- /carvekit/web/utils/task_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/carvekit/web/utils/task_queue.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/conftest.py -------------------------------------------------------------------------------- /docker-compose.cpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docker-compose.cpu.yml -------------------------------------------------------------------------------- /docker-compose.cuda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docker-compose.cuda.yml -------------------------------------------------------------------------------- /docs/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/CREDITS.md -------------------------------------------------------------------------------- /docs/code_examples/python/http_api_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/code_examples/python/http_api_lib.py -------------------------------------------------------------------------------- /docs/code_examples/python/http_api_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/code_examples/python/http_api_requests.py -------------------------------------------------------------------------------- /docs/code_examples/python/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/code_examples/python/images/4.jpg -------------------------------------------------------------------------------- /docs/imgs/compare/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/compare/1.png -------------------------------------------------------------------------------- /docs/imgs/compare/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/compare/2.png -------------------------------------------------------------------------------- /docs/imgs/compare/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/compare/3.png -------------------------------------------------------------------------------- /docs/imgs/compare/readme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/compare/readme.jpg -------------------------------------------------------------------------------- /docs/imgs/input/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/input/1.jpg -------------------------------------------------------------------------------- /docs/imgs/input/1_bg_removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/input/1_bg_removed.png -------------------------------------------------------------------------------- /docs/imgs/input/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/input/2.jpg -------------------------------------------------------------------------------- /docs/imgs/input/2_bg_removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/input/2_bg_removed.png -------------------------------------------------------------------------------- /docs/imgs/input/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/input/3.jpg -------------------------------------------------------------------------------- /docs/imgs/input/3_bg_removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/input/3_bg_removed.png -------------------------------------------------------------------------------- /docs/imgs/input/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/input/4.jpg -------------------------------------------------------------------------------- /docs/imgs/input/4_bg_removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/input/4_bg_removed.png -------------------------------------------------------------------------------- /docs/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/logo.png -------------------------------------------------------------------------------- /docs/imgs/screenshot/docs_fastapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/screenshot/docs_fastapi.png -------------------------------------------------------------------------------- /docs/imgs/screenshot/frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/imgs/screenshot/frontend.png -------------------------------------------------------------------------------- /docs/other/carvekit_try.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/other/carvekit_try.ipynb -------------------------------------------------------------------------------- /docs/readme/ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/docs/readme/ru.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | pre-commit>=3.7.0 2 | 3 | -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- 1 | pytest>=8.1.1 2 | 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/cat.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/data/cat.JPG -------------------------------------------------------------------------------- /tests/data/cat.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/data/cat.MP3 -------------------------------------------------------------------------------- /tests/data/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/data/cat.jpg -------------------------------------------------------------------------------- /tests/data/cat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/data/cat.mp3 -------------------------------------------------------------------------------- /tests/data/cat_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/data/cat_mask.png -------------------------------------------------------------------------------- /tests/data/cat_trimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/data/cat_trimap.png -------------------------------------------------------------------------------- /tests/test_basnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_basnet.py -------------------------------------------------------------------------------- /tests/test_deeplabv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_deeplabv3.py -------------------------------------------------------------------------------- /tests/test_fba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_fba.py -------------------------------------------------------------------------------- /tests/test_fs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_fs_utils.py -------------------------------------------------------------------------------- /tests/test_high.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_high.py -------------------------------------------------------------------------------- /tests/test_image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_image_utils.py -------------------------------------------------------------------------------- /tests/test_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_interface.py -------------------------------------------------------------------------------- /tests/test_mask_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_mask_utils.py -------------------------------------------------------------------------------- /tests/test_models_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_models_utils.py -------------------------------------------------------------------------------- /tests/test_pool_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_pool_utils.py -------------------------------------------------------------------------------- /tests/test_postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_postprocessing.py -------------------------------------------------------------------------------- /tests/test_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_preprocessing.py -------------------------------------------------------------------------------- /tests/test_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_tracer.py -------------------------------------------------------------------------------- /tests/test_trimap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_trimap.py -------------------------------------------------------------------------------- /tests/test_u2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPHoperHPO/image-background-remove-tool/HEAD/tests/test_u2net.py --------------------------------------------------------------------------------