image processing with parallel approach

1 view (last 30 days)
priyam ghosh
priyam ghosh on 11 Feb 2012
how can i develop a project on iris recognition in MATLAB with parallel approach with parallel computing toolbox. Give me some suggestions.

Answers (2)

Image Analyst
Image Analyst on 11 Feb 2012
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
Edric Ellis on 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

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!