├── .gitattributes ├── 1212.4527v1.pdf ├── README.md ├── code ├── color-image │ ├── 385028.jpg │ ├── BoundMirrorExpand.cpp │ ├── BoundMirrorShrink.cpp │ ├── HMRF_EM.m │ ├── MRF_MAP.m │ ├── demo.m │ ├── gaussianBlur.m │ ├── get_GMM.m │ ├── image_kmeans.m │ └── ind2ij.m └── three-dimensional │ ├── HMRF_EM.m │ ├── Image.raw │ ├── MRF_MAP.m │ ├── demo.m │ ├── generate_3D_image.m │ ├── get_GMM.m │ ├── image_kmeans.m │ ├── ind2ijq.m │ ├── kmeans.raw │ └── segmentation.raw └── resources └── GMM-HMRF.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/.gitattributes -------------------------------------------------------------------------------- /1212.4527v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/1212.4527v1.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/README.md -------------------------------------------------------------------------------- /code/color-image/385028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/385028.jpg -------------------------------------------------------------------------------- /code/color-image/BoundMirrorExpand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/BoundMirrorExpand.cpp -------------------------------------------------------------------------------- /code/color-image/BoundMirrorShrink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/BoundMirrorShrink.cpp -------------------------------------------------------------------------------- /code/color-image/HMRF_EM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/HMRF_EM.m -------------------------------------------------------------------------------- /code/color-image/MRF_MAP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/MRF_MAP.m -------------------------------------------------------------------------------- /code/color-image/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/demo.m -------------------------------------------------------------------------------- /code/color-image/gaussianBlur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/gaussianBlur.m -------------------------------------------------------------------------------- /code/color-image/get_GMM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/get_GMM.m -------------------------------------------------------------------------------- /code/color-image/image_kmeans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/image_kmeans.m -------------------------------------------------------------------------------- /code/color-image/ind2ij.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/color-image/ind2ij.m -------------------------------------------------------------------------------- /code/three-dimensional/HMRF_EM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/HMRF_EM.m -------------------------------------------------------------------------------- /code/three-dimensional/Image.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/Image.raw -------------------------------------------------------------------------------- /code/three-dimensional/MRF_MAP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/MRF_MAP.m -------------------------------------------------------------------------------- /code/three-dimensional/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/demo.m -------------------------------------------------------------------------------- /code/three-dimensional/generate_3D_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/generate_3D_image.m -------------------------------------------------------------------------------- /code/three-dimensional/get_GMM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/get_GMM.m -------------------------------------------------------------------------------- /code/three-dimensional/image_kmeans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/image_kmeans.m -------------------------------------------------------------------------------- /code/three-dimensional/ind2ijq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/ind2ijq.m -------------------------------------------------------------------------------- /code/three-dimensional/kmeans.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/kmeans.raw -------------------------------------------------------------------------------- /code/three-dimensional/segmentation.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/code/three-dimensional/segmentation.raw -------------------------------------------------------------------------------- /resources/GMM-HMRF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wq2012/GMM-HMRF/HEAD/resources/GMM-HMRF.png --------------------------------------------------------------------------------