├── .gitignore ├── MyDataSet.py ├── README.MD ├── __init__.py ├── config.py ├── data_generator ├── 1.jpg ├── __init__.py ├── bg.jpg ├── cpp │ ├── __init__.py │ ├── add_background │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.back │ │ ├── DocUnetC.cpp │ │ ├── DocUnetC.cpp.back │ │ ├── DocUnetC_bg_green.cpp │ │ ├── SparseMatrix.cpp │ │ ├── SparseMatrix.h │ │ ├── __init__.py │ │ ├── a.py │ │ └── build │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ ├── 3.5.1 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── TargetDirectories.txt │ │ │ ├── add_background.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── DocUnetC.cpp.o │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── cmake.check_cache │ │ │ ├── feature_tests.bin │ │ │ ├── feature_tests.c │ │ │ ├── feature_tests.cxx │ │ │ └── progress.marks │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ └── libadd_background.so │ ├── clip_img │ │ ├── 1_1.jpg │ │ ├── 1_2.jpg │ │ ├── 1_result.jpg │ │ ├── CMakeLists.txt │ │ ├── build │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.5.1 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ └── a.out │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ └── a.out │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ ├── Makefile.cmake │ │ │ │ ├── Makefile2 │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── clip_img.dir │ │ │ │ │ ├── CXX.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── clip_img.cpp.o │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── feature_tests.bin │ │ │ │ ├── feature_tests.c │ │ │ │ ├── feature_tests.cxx │ │ │ │ └── progress.marks │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ └── libclip_img.so │ │ └── clip_img.cpp │ └── dll │ │ ├── DocUnetC.dll │ │ ├── README.md │ │ ├── clip_img.dll │ │ ├── libadd_background折叠和扭曲.so │ │ └── libclip_img.so └── generator.py ├── imgs ├── data.png ├── result1.png └── result2.png ├── loss.py ├── models ├── __init__.py ├── deeplab_models │ ├── __init__.py │ ├── aspp.py │ ├── backbone │ │ ├── __init__.py │ │ ├── drn.py │ │ ├── mobilenet.py │ │ ├── resnet.py │ │ └── xception.py │ ├── decoder.py │ ├── deeplab.py │ └── sync_batchnorm │ │ ├── __init__.py │ │ ├── batchnorm.py │ │ ├── comm.py │ │ ├── replicate.py │ │ └── unittest.py └── doc_unet │ ├── __init__.py │ ├── backbone │ ├── __init__.py │ ├── drn.py │ ├── mobilenet.py │ ├── resnet.py │ └── xception.py │ ├── model.py │ ├── resnet_unet.py │ └── unet_parts.py ├── predict.py ├── train.py ├── utils.py └── utils ├── __init__.py ├── check_data.ipynb ├── chek_data.py ├── removeing.py ├── summary.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /MyDataSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/MyDataSet.py -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/README.MD -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/__init__.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/config.py -------------------------------------------------------------------------------- /data_generator/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/1.jpg -------------------------------------------------------------------------------- /data_generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/__init__.py -------------------------------------------------------------------------------- /data_generator/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/bg.jpg -------------------------------------------------------------------------------- /data_generator/cpp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/__init__.py -------------------------------------------------------------------------------- /data_generator/cpp/add_background/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/.vscode/settings.json -------------------------------------------------------------------------------- /data_generator/cpp/add_background/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/CMakeLists.txt -------------------------------------------------------------------------------- /data_generator/cpp/add_background/CMakeLists.txt.back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/CMakeLists.txt.back -------------------------------------------------------------------------------- /data_generator/cpp/add_background/DocUnetC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/DocUnetC.cpp -------------------------------------------------------------------------------- /data_generator/cpp/add_background/DocUnetC.cpp.back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/DocUnetC.cpp.back -------------------------------------------------------------------------------- /data_generator/cpp/add_background/DocUnetC_bg_green.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/DocUnetC_bg_green.cpp -------------------------------------------------------------------------------- /data_generator/cpp/add_background/SparseMatrix.cpp: -------------------------------------------------------------------------------- 1 | #include "SparseMatrix.h" -------------------------------------------------------------------------------- /data_generator/cpp/add_background/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/SparseMatrix.h -------------------------------------------------------------------------------- /data_generator/cpp/add_background/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/__init__.py -------------------------------------------------------------------------------- /data_generator/cpp/add_background/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/a.py -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeCache.txt -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CMakeSystem.cmake -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CompilerIdC/a.out -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/CXX.includecache -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/DependInfo.cmake -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/DocUnetC.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/DocUnetC.cpp.o -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/build.make -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/depend.internal -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/depend.make -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/flags.make -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/link.txt -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/add_background.dir/progress.make -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/Makefile -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/cmake_install.cmake -------------------------------------------------------------------------------- /data_generator/cpp/add_background/build/libadd_background.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/add_background/build/libadd_background.so -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/1_1.jpg -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/1_2.jpg -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/1_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/1_result.jpg -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/CMakeLists.txt -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeCache.txt -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CMakeSystem.cmake -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CompilerIdC/a.out -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/CXX.includecache -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/DependInfo.cmake -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/build.make -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/clip_img.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/clip_img.cpp.o -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/depend.internal -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/depend.make -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/flags.make -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/link.txt -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/clip_img.dir/progress.make -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/Makefile -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/cmake_install.cmake -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/build/libclip_img.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/build/libclip_img.so -------------------------------------------------------------------------------- /data_generator/cpp/clip_img/clip_img.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/clip_img/clip_img.cpp -------------------------------------------------------------------------------- /data_generator/cpp/dll/DocUnetC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/dll/DocUnetC.dll -------------------------------------------------------------------------------- /data_generator/cpp/dll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/dll/README.md -------------------------------------------------------------------------------- /data_generator/cpp/dll/clip_img.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/dll/clip_img.dll -------------------------------------------------------------------------------- /data_generator/cpp/dll/libadd_background折叠和扭曲.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/dll/libadd_background折叠和扭曲.so -------------------------------------------------------------------------------- /data_generator/cpp/dll/libclip_img.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/cpp/dll/libclip_img.so -------------------------------------------------------------------------------- /data_generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/data_generator/generator.py -------------------------------------------------------------------------------- /imgs/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/imgs/data.png -------------------------------------------------------------------------------- /imgs/result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/imgs/result1.png -------------------------------------------------------------------------------- /imgs/result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/imgs/result2.png -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/loss.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/deeplab_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/deeplab_models/aspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/aspp.py -------------------------------------------------------------------------------- /models/deeplab_models/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/backbone/__init__.py -------------------------------------------------------------------------------- /models/deeplab_models/backbone/drn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/backbone/drn.py -------------------------------------------------------------------------------- /models/deeplab_models/backbone/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/backbone/mobilenet.py -------------------------------------------------------------------------------- /models/deeplab_models/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/backbone/resnet.py -------------------------------------------------------------------------------- /models/deeplab_models/backbone/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/backbone/xception.py -------------------------------------------------------------------------------- /models/deeplab_models/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/decoder.py -------------------------------------------------------------------------------- /models/deeplab_models/deeplab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/deeplab.py -------------------------------------------------------------------------------- /models/deeplab_models/sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /models/deeplab_models/sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /models/deeplab_models/sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /models/deeplab_models/sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /models/deeplab_models/sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/deeplab_models/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /models/doc_unet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/doc_unet/__init__.py -------------------------------------------------------------------------------- /models/doc_unet/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/doc_unet/backbone/__init__.py -------------------------------------------------------------------------------- /models/doc_unet/backbone/drn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/doc_unet/backbone/drn.py -------------------------------------------------------------------------------- /models/doc_unet/backbone/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/doc_unet/backbone/mobilenet.py -------------------------------------------------------------------------------- /models/doc_unet/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/doc_unet/backbone/resnet.py -------------------------------------------------------------------------------- /models/doc_unet/backbone/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/doc_unet/backbone/xception.py -------------------------------------------------------------------------------- /models/doc_unet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/doc_unet/model.py -------------------------------------------------------------------------------- /models/doc_unet/resnet_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/doc_unet/resnet_unet.py -------------------------------------------------------------------------------- /models/doc_unet/unet_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/models/doc_unet/unet_parts.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/predict.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/utils.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/check_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/utils/check_data.ipynb -------------------------------------------------------------------------------- /utils/chek_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/utils/chek_data.py -------------------------------------------------------------------------------- /utils/removeing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/utils/removeing.py -------------------------------------------------------------------------------- /utils/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/utils/summary.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teresasun/docUnet.pytorch/HEAD/utils/utils.py --------------------------------------------------------------------------------