I am writing genetic program to extract object in image. I have two fitness functions for now: Hamming and Hausdorff distance.
Hausdorff is good but too slow for bigger images. Hamming is faster but not always works (for examples sometimes white image is the best in population). Do you know any other fitness function which contains advandtages of this two functions.
This is binary images. Third way is to first find edges or resize images and then use Hamming distance to evaluate solution and for now it is the best way.