Skip to main content
GameDev.net gamedev.net
🔒 Locked

Image clustering using Genetic Algorithms

Started by SecondBest May 12, 2004 at 9:40 AM 0 replies 900+ views
Original Post
SecondBest
SecondBest
Hi all; I am trying to cluster images into a known number of segments using a genetic algorithm. I am looking for the best way to represent my data. So far I''ve thought of two ways: 1- Each Chromosome is made up of all the pixels in the image arranged as a MXN matrix of cluster values. This representation has the problem that I cannot maintain cluster heterogeniety across individual solutions (i.e. cluster X might represent a flower in solution A and a rabbit in solution B. crossover will likely destroy rather than enhance this clustering) 2- A chromosome is arranged by clusters, each cluster referring to the individual pixels that form it. This representation has the problem that a normal crossover operation is likely to duplicate pixels in different clusters and erase pixels in others. Any suggestions? ( K-means is out of the question. It has to be genetic) Peace Out!
Timkin
Timkin
quote:
Original post by SecondBest
Any suggestions? ( K-means is out of the question. It has to be genetic)



Why?

This sounds like an assignment/homework problem... which we don''t give answers for here. For homework problems we might help where the student has shown some attempt at the work. If this is NOT a homework/assignment problem, could you let us know why you must use a GA solution to solve the problem. If there are problem constraints that require a GA solution, then these may also constrain the representation chosen as well.

Cheers,

Timkin

Topic Locked

This topic has been locked by a moderator. New replies are not allowed.

Sign in to reply to this topic.