├── LICENSE ├── README.md ├── code ├── feat_extract_global_triplet_2chstream.m ├── feature_extract.m └── feature_extract_2chstream.m ├── data └── data.mat ├── demo.m └── models ├── 2chstream ├── model_2chstream_liberty.mat ├── model_2chstream_notredame.mat └── model_2chstream_yosemite.mat └── embedding ├── model_global_triplet_liberty.mat ├── model_global_triplet_notredame.mat └── model_global_triplet_yosemite.mat /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/README.md -------------------------------------------------------------------------------- /code/feat_extract_global_triplet_2chstream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/code/feat_extract_global_triplet_2chstream.m -------------------------------------------------------------------------------- /code/feature_extract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/code/feature_extract.m -------------------------------------------------------------------------------- /code/feature_extract_2chstream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/code/feature_extract_2chstream.m -------------------------------------------------------------------------------- /data/data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/data/data.mat -------------------------------------------------------------------------------- /demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/demo.m -------------------------------------------------------------------------------- /models/2chstream/model_2chstream_liberty.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/models/2chstream/model_2chstream_liberty.mat -------------------------------------------------------------------------------- /models/2chstream/model_2chstream_notredame.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/models/2chstream/model_2chstream_notredame.mat -------------------------------------------------------------------------------- /models/2chstream/model_2chstream_yosemite.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/models/2chstream/model_2chstream_yosemite.mat -------------------------------------------------------------------------------- /models/embedding/model_global_triplet_liberty.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/models/embedding/model_global_triplet_liberty.mat -------------------------------------------------------------------------------- /models/embedding/model_global_triplet_notredame.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/models/embedding/model_global_triplet_notredame.mat -------------------------------------------------------------------------------- /models/embedding/model_global_triplet_yosemite.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaykbg/deep-patchmatch/HEAD/models/embedding/model_global_triplet_yosemite.mat --------------------------------------------------------------------------------