├── .gitattributes ├── .gitignore ├── ComputeFMeasure.m ├── ComputeFMeasureMultiSeg.m ├── FCM.m ├── KFCM.m ├── MyComputeFMeasure.m ├── allimsegs2.mat ├── fcm_result1.jpg ├── image ├── 1.jpg ├── 2.jpg ├── copyf.asv ├── copyf.m ├── fcm.jpg ├── fcm_result.jpg ├── fcm聚类结果.jpg ├── img_list.mat ├── kfcm_result.jpg ├── kfcm聚类结果.jpg ├── kmean_result.jpg ├── kmeans聚类结果.jpg └── kmens.jpg ├── img_list.mat ├── k_mean.m ├── k_means.m ├── kfcmFun.m ├── kfcm_result.jpg ├── kmeanseg.m ├── mapn.m ├── obj2ComputeFMeasure.m ├── test.m ├── test2.m ├── test2eve.m ├── test2obj.m ├── test3.m ├── test4.m ├── test5.m └── timg.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /ComputeFMeasure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/ComputeFMeasure.m -------------------------------------------------------------------------------- /ComputeFMeasureMultiSeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/ComputeFMeasureMultiSeg.m -------------------------------------------------------------------------------- /FCM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/FCM.m -------------------------------------------------------------------------------- /KFCM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/KFCM.m -------------------------------------------------------------------------------- /MyComputeFMeasure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/MyComputeFMeasure.m -------------------------------------------------------------------------------- /allimsegs2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/allimsegs2.mat -------------------------------------------------------------------------------- /fcm_result1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/fcm_result1.jpg -------------------------------------------------------------------------------- /image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/1.jpg -------------------------------------------------------------------------------- /image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/2.jpg -------------------------------------------------------------------------------- /image/copyf.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/copyf.asv -------------------------------------------------------------------------------- /image/copyf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/copyf.m -------------------------------------------------------------------------------- /image/fcm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/fcm.jpg -------------------------------------------------------------------------------- /image/fcm_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/fcm_result.jpg -------------------------------------------------------------------------------- /image/fcm聚类结果.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/fcm聚类结果.jpg -------------------------------------------------------------------------------- /image/img_list.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/img_list.mat -------------------------------------------------------------------------------- /image/kfcm_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/kfcm_result.jpg -------------------------------------------------------------------------------- /image/kfcm聚类结果.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/kfcm聚类结果.jpg -------------------------------------------------------------------------------- /image/kmean_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/kmean_result.jpg -------------------------------------------------------------------------------- /image/kmeans聚类结果.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/kmeans聚类结果.jpg -------------------------------------------------------------------------------- /image/kmens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/image/kmens.jpg -------------------------------------------------------------------------------- /img_list.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/img_list.mat -------------------------------------------------------------------------------- /k_mean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/k_mean.m -------------------------------------------------------------------------------- /k_means.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/k_means.m -------------------------------------------------------------------------------- /kfcmFun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/kfcmFun.m -------------------------------------------------------------------------------- /kfcm_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/kfcm_result.jpg -------------------------------------------------------------------------------- /kmeanseg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/kmeanseg.m -------------------------------------------------------------------------------- /mapn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/mapn.m -------------------------------------------------------------------------------- /obj2ComputeFMeasure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/obj2ComputeFMeasure.m -------------------------------------------------------------------------------- /test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/test.m -------------------------------------------------------------------------------- /test2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/test2.m -------------------------------------------------------------------------------- /test2eve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/test2eve.m -------------------------------------------------------------------------------- /test2obj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/test2obj.m -------------------------------------------------------------------------------- /test3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/test3.m -------------------------------------------------------------------------------- /test4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/test4.m -------------------------------------------------------------------------------- /test5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/test5.m -------------------------------------------------------------------------------- /timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanzhaoyun/imageSegmentation/HEAD/timg.jpg --------------------------------------------------------------------------------