image processing with parallel approach
Ältere Kommentare anzeigen
how can i develop a project on iris recognition in MATLAB with parallel approach with parallel computing toolbox. Give me some suggestions.
Antworten (2)
Image Analyst
am 11 Feb. 2012
0 Stimmen
Search the File Exchange and internet (such as USC's IRIS bibliography http://iris.usc.edu/Vision-Notes/bibliography/contents.html for ideas, then just dive in and start coding. This kind of open ended question either requires a brief lead/tip like I just gave, or really long comprehensive guidance which no one here has the time to do, but perhaps your professor does.
Edric Ellis
am 13 Feb. 2012
The easiest form of parallelism to program is using PARFOR. For this, you need to be able to divide up your problem into multiple chunks. For example, if you had multiple images to process in the same way, you could do something like
parfor ii=1:numImages
myImage = imread( sprintf( 'image_%d.png', ii ) );
result{ii} = myProcFcn( myImage );
end
Kategorien
Mehr zu Semantic Segmentation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!