├── README.md ├── code_detection ├── color_norm.py ├── dataset.py ├── main.py ├── model.py ├── my_transforms.py ├── options.py ├── prepare_data.py ├── run_detection.sh ├── stainNorm_Reinhard.py ├── test.py ├── train.py └── utils.py ├── code_seg ├── accuracy.py ├── crf_loss │ ├── DenseCRFLoss.cpp │ ├── crfloss.py │ ├── permutohedral.cpp │ ├── permutohedral.hpp │ └── setup.py ├── dataset.py ├── main.py ├── model.py ├── my_transforms.py ├── options.py ├── prepare_data.py ├── result_analysis.py ├── run_seg.sh ├── test.py ├── train.py └── utils.py ├── pics └── overview.png └── run.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/README.md -------------------------------------------------------------------------------- /code_detection/color_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/color_norm.py -------------------------------------------------------------------------------- /code_detection/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/dataset.py -------------------------------------------------------------------------------- /code_detection/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/main.py -------------------------------------------------------------------------------- /code_detection/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/model.py -------------------------------------------------------------------------------- /code_detection/my_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/my_transforms.py -------------------------------------------------------------------------------- /code_detection/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/options.py -------------------------------------------------------------------------------- /code_detection/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/prepare_data.py -------------------------------------------------------------------------------- /code_detection/run_detection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/run_detection.sh -------------------------------------------------------------------------------- /code_detection/stainNorm_Reinhard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/stainNorm_Reinhard.py -------------------------------------------------------------------------------- /code_detection/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/test.py -------------------------------------------------------------------------------- /code_detection/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/train.py -------------------------------------------------------------------------------- /code_detection/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_detection/utils.py -------------------------------------------------------------------------------- /code_seg/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/accuracy.py -------------------------------------------------------------------------------- /code_seg/crf_loss/DenseCRFLoss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/crf_loss/DenseCRFLoss.cpp -------------------------------------------------------------------------------- /code_seg/crf_loss/crfloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/crf_loss/crfloss.py -------------------------------------------------------------------------------- /code_seg/crf_loss/permutohedral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/crf_loss/permutohedral.cpp -------------------------------------------------------------------------------- /code_seg/crf_loss/permutohedral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/crf_loss/permutohedral.hpp -------------------------------------------------------------------------------- /code_seg/crf_loss/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/crf_loss/setup.py -------------------------------------------------------------------------------- /code_seg/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/dataset.py -------------------------------------------------------------------------------- /code_seg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/main.py -------------------------------------------------------------------------------- /code_seg/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/model.py -------------------------------------------------------------------------------- /code_seg/my_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/my_transforms.py -------------------------------------------------------------------------------- /code_seg/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/options.py -------------------------------------------------------------------------------- /code_seg/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/prepare_data.py -------------------------------------------------------------------------------- /code_seg/result_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/result_analysis.py -------------------------------------------------------------------------------- /code_seg/run_seg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/run_seg.sh -------------------------------------------------------------------------------- /code_seg/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/test.py -------------------------------------------------------------------------------- /code_seg/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/train.py -------------------------------------------------------------------------------- /code_seg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/code_seg/utils.py -------------------------------------------------------------------------------- /pics/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/pics/overview.png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huiqu18/WeaklySegPartialPoints/HEAD/run.sh --------------------------------------------------------------------------------