├── .gitignore ├── FOA └── Forest.m ├── FOAClustering ├── FOA-KM.png ├── ForestApplied.m ├── doge.png ├── icon.png └── kmeans.m ├── Forestoptimizationalgorithm.pdf ├── LICENSE ├── ObjectiveFunctions ├── Sphere.m ├── func.m ├── func2.m ├── func3.m ├── func4.m ├── func5.m ├── minimizeFunction.m ├── minimizeFunction2.m └── rosenbrock.m ├── PSO ├── main.m └── pso.m └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | octave-workspace 2 | -------------------------------------------------------------------------------- /FOA/Forest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/FOA/Forest.m -------------------------------------------------------------------------------- /FOAClustering/FOA-KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/FOAClustering/FOA-KM.png -------------------------------------------------------------------------------- /FOAClustering/ForestApplied.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/FOAClustering/ForestApplied.m -------------------------------------------------------------------------------- /FOAClustering/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/FOAClustering/doge.png -------------------------------------------------------------------------------- /FOAClustering/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/FOAClustering/icon.png -------------------------------------------------------------------------------- /FOAClustering/kmeans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/FOAClustering/kmeans.m -------------------------------------------------------------------------------- /Forestoptimizationalgorithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/Forestoptimizationalgorithm.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /ObjectiveFunctions/Sphere.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/ObjectiveFunctions/Sphere.m -------------------------------------------------------------------------------- /ObjectiveFunctions/func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/ObjectiveFunctions/func.m -------------------------------------------------------------------------------- /ObjectiveFunctions/func2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/ObjectiveFunctions/func2.m -------------------------------------------------------------------------------- /ObjectiveFunctions/func3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/ObjectiveFunctions/func3.m -------------------------------------------------------------------------------- /ObjectiveFunctions/func4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/ObjectiveFunctions/func4.m -------------------------------------------------------------------------------- /ObjectiveFunctions/func5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/ObjectiveFunctions/func5.m -------------------------------------------------------------------------------- /ObjectiveFunctions/minimizeFunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/ObjectiveFunctions/minimizeFunction.m -------------------------------------------------------------------------------- /ObjectiveFunctions/minimizeFunction2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/ObjectiveFunctions/minimizeFunction2.m -------------------------------------------------------------------------------- /ObjectiveFunctions/rosenbrock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/ObjectiveFunctions/rosenbrock.m -------------------------------------------------------------------------------- /PSO/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/PSO/main.m -------------------------------------------------------------------------------- /PSO/pso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/PSO/pso.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hermesespinola/FOA-Kmeans-Color-Image-Segmentation/HEAD/README.md --------------------------------------------------------------------------------