├── LICENSE ├── README.md ├── SegMitos_detection ├── Demo.py ├── README.md ├── cal_F.py ├── deploy.prototxt ├── extract_fcn_amida13_test.py ├── getDETCentroid.py ├── show_fcnout.py └── stitch.py ├── SegMitos_train ├── AMIDA13-fcn32s │ ├── solve.py │ ├── solver.prototxt │ ├── train.prototxt │ └── val.prototxt ├── README.md ├── infer.py ├── mitos_layers_ring.py ├── surgery.py └── vis.py └── data ├── GetRandomRingLabel.m ├── PosOrNeg.m ├── README.md ├── augmentData.m ├── augmentData_gt.m ├── crop4imgs.m ├── crop4imgs_gt.m └── csv2mat.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/README.md -------------------------------------------------------------------------------- /SegMitos_detection/Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_detection/Demo.py -------------------------------------------------------------------------------- /SegMitos_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_detection/README.md -------------------------------------------------------------------------------- /SegMitos_detection/cal_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_detection/cal_F.py -------------------------------------------------------------------------------- /SegMitos_detection/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_detection/deploy.prototxt -------------------------------------------------------------------------------- /SegMitos_detection/extract_fcn_amida13_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_detection/extract_fcn_amida13_test.py -------------------------------------------------------------------------------- /SegMitos_detection/getDETCentroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_detection/getDETCentroid.py -------------------------------------------------------------------------------- /SegMitos_detection/show_fcnout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_detection/show_fcnout.py -------------------------------------------------------------------------------- /SegMitos_detection/stitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_detection/stitch.py -------------------------------------------------------------------------------- /SegMitos_train/AMIDA13-fcn32s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_train/AMIDA13-fcn32s/solve.py -------------------------------------------------------------------------------- /SegMitos_train/AMIDA13-fcn32s/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_train/AMIDA13-fcn32s/solver.prototxt -------------------------------------------------------------------------------- /SegMitos_train/AMIDA13-fcn32s/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_train/AMIDA13-fcn32s/train.prototxt -------------------------------------------------------------------------------- /SegMitos_train/AMIDA13-fcn32s/val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_train/AMIDA13-fcn32s/val.prototxt -------------------------------------------------------------------------------- /SegMitos_train/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_train/README.md -------------------------------------------------------------------------------- /SegMitos_train/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_train/infer.py -------------------------------------------------------------------------------- /SegMitos_train/mitos_layers_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_train/mitos_layers_ring.py -------------------------------------------------------------------------------- /SegMitos_train/surgery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_train/surgery.py -------------------------------------------------------------------------------- /SegMitos_train/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/SegMitos_train/vis.py -------------------------------------------------------------------------------- /data/GetRandomRingLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/data/GetRandomRingLabel.m -------------------------------------------------------------------------------- /data/PosOrNeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/data/PosOrNeg.m -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/data/README.md -------------------------------------------------------------------------------- /data/augmentData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/data/augmentData.m -------------------------------------------------------------------------------- /data/augmentData_gt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/data/augmentData_gt.m -------------------------------------------------------------------------------- /data/crop4imgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/data/crop4imgs.m -------------------------------------------------------------------------------- /data/crop4imgs_gt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/data/crop4imgs_gt.m -------------------------------------------------------------------------------- /data/csv2mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaoLi977/SegMitos_mitosis_detection/HEAD/data/csv2mat.m --------------------------------------------------------------------------------