Switch to unified view

a b/libraries/lib_FastCMeans/README.md
1
# Fast N-D Grayscale Image Segmenation With c- or Fuzzy c-Means
2
3
c-means and fuzzy c-means clustering are two very popular image segmentation algorithms. While their implementation is straightforward, if realized naively it will lead to substantial overhead in execution time and memory consumption. Although these deficiencies could be ignored for small 2D images they become more noticeable for large 3D datasets. This submission is intended to provide an efficient implementation of these algorithms for segmenting N-dimensional grayscale images. The computational efficiency is achieved by using the histogram of the image intensities during the clustering process instead of the raw image data. Finally, since the algorithms are implemented from scratch there are no dependencies on any auxiliary toolboxes.
4
5
For a quick demonstration of how to use the functions, run the attached `DemoFCM.m` file.
6
7
You can also get a copy of this repo from [Matlab Central File Exchange]. 
8
9
[Matlab Central File Exchange]: https://www.mathworks.com/matlabcentral/fileexchange/41967-fast-segmentation-of-n-dimensional-grayscale-images
10
11
## License
12
[MIT] © 2019 Anton Semechko 
13
a.semechko@gmail.com
14
15
[Image Processing Toolbox]: https://www.mathworks.com/products/image.html
16
[MIT]: https://github.com/AntonSemechko/Fast-Fuzzy-C-Means-Segmentation/blob/master/LICENSE.md