├── .gitignore ├── LICENSE ├── README.md ├── data.py ├── data_decoder.py ├── net_solver.py ├── ops.py ├── predict_4twins.py ├── predict_Siamese.py ├── predict_fusion.py ├── queue_runner.py ├── resources ├── db_gen │ ├── TRAINING_SET.txt │ ├── create_scribble_all_db.m │ ├── create_scribble_rigid_cm_db.m │ ├── get_file_list.m │ ├── read_file_list.m │ ├── run_create_scribble_db.m │ └── run_create_scribble_rigid_cm_db.m ├── requirements.txt ├── test01.tif ├── test01_gt.png ├── test01_tm.png ├── test02.tif ├── test02_gt.png ├── test02_tm.png ├── test03.tif ├── test03_gt.png ├── test03_tm.png └── vippdiism.png ├── siamese_net_couple.py ├── siamese_single_net.py ├── single_net_solver.py ├── train_4twins.py ├── train_siamese.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/data.py -------------------------------------------------------------------------------- /data_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/data_decoder.py -------------------------------------------------------------------------------- /net_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/net_solver.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/ops.py -------------------------------------------------------------------------------- /predict_4twins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/predict_4twins.py -------------------------------------------------------------------------------- /predict_Siamese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/predict_Siamese.py -------------------------------------------------------------------------------- /predict_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/predict_fusion.py -------------------------------------------------------------------------------- /queue_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/queue_runner.py -------------------------------------------------------------------------------- /resources/db_gen/TRAINING_SET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/db_gen/TRAINING_SET.txt -------------------------------------------------------------------------------- /resources/db_gen/create_scribble_all_db.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/db_gen/create_scribble_all_db.m -------------------------------------------------------------------------------- /resources/db_gen/create_scribble_rigid_cm_db.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/db_gen/create_scribble_rigid_cm_db.m -------------------------------------------------------------------------------- /resources/db_gen/get_file_list.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/db_gen/get_file_list.m -------------------------------------------------------------------------------- /resources/db_gen/read_file_list.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/db_gen/read_file_list.m -------------------------------------------------------------------------------- /resources/db_gen/run_create_scribble_db.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/db_gen/run_create_scribble_db.m -------------------------------------------------------------------------------- /resources/db_gen/run_create_scribble_rigid_cm_db.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/db_gen/run_create_scribble_rigid_cm_db.m -------------------------------------------------------------------------------- /resources/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/requirements.txt -------------------------------------------------------------------------------- /resources/test01.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/test01.tif -------------------------------------------------------------------------------- /resources/test01_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/test01_gt.png -------------------------------------------------------------------------------- /resources/test01_tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/test01_tm.png -------------------------------------------------------------------------------- /resources/test02.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/test02.tif -------------------------------------------------------------------------------- /resources/test02_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/test02_gt.png -------------------------------------------------------------------------------- /resources/test02_tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/test02_tm.png -------------------------------------------------------------------------------- /resources/test03.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/test03.tif -------------------------------------------------------------------------------- /resources/test03_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/test03_gt.png -------------------------------------------------------------------------------- /resources/test03_tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/test03_tm.png -------------------------------------------------------------------------------- /resources/vippdiism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/resources/vippdiism.png -------------------------------------------------------------------------------- /siamese_net_couple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/siamese_net_couple.py -------------------------------------------------------------------------------- /siamese_single_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/siamese_single_net.py -------------------------------------------------------------------------------- /single_net_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/single_net_solver.py -------------------------------------------------------------------------------- /train_4twins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/train_4twins.py -------------------------------------------------------------------------------- /train_siamese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/train_siamese.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreacos/MultiBranch_CNNCopyMove_Disambiguation/HEAD/utils.py --------------------------------------------------------------------------------