Is there anyone who can provide any kind of reference for doing clonalg selection algorithm for detecting boundaries of an object?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ekta Sharma
am 29 Mär. 2016
Kommentiert: Image Analyst
am 29 Mär. 2016
I am having an image of tool and I want to extract its boundaries using clonalg selection algorithm.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 29 Mär. 2016
3 Kommentare
Walter Roberson
am 29 Mär. 2016
Approximate translation:
% w0 : Solution candidate (initial)
% pop_size : Taille de la population d'antcorps
% best_pop_size : Taille de la meilleur population d'antcorps
% clone_size_factor : Facteur de colnage
% KImmune_fin : Nbre max d'iterations
% Max_error : Tolerence en erreure pour solution
is approximately
% w0 : Initial candidate solution
% pop_size : population size of the antcorps
% best_pop_size : size of the best population of antcorps
% clone_size_factor : cloning factor
% KImmune_fin : number of iterations
% Max_error : Error tolerance in the solution
I do not know what "antcorps" is. Ant bodies perhaps?
Weitere Antworten (1)
Image Analyst
am 29 Mär. 2016
I never heard of that algorithm. Can you get as far as having a segmented image (binary image)? If so, just call
boundaries = bwboundaries(binaryImage);
hold on;
visboundaries(boundaries);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
