Image or Pattern recognition in Matlab
Image or Pattern recognition in Matlab
(OP)
I am attempting to write a code to recognise silverware. I am hoping to be able to have something set up where I can tell Matlab where the reference images are, then simply open/import the image I want to be 'recognised' and Matlab will run a code and determine the type.
This is for a proof of concept project for a silverware identification system. It will only be receiving one item at once, so Matlab just needs to be able to identify if the image is of a knife, fork or spoon. The silverware in the reference folder will be the same as the silverware being identified, however I am struggling to go about writing the code. Below is a sample of the reference images (stitched into one at the moment), and the images Matlab will be given to recognise will be very similar to these images.
Can anyone help me or point me in the right direction as to how to go about this?
Thanks
Matt
This is for a proof of concept project for a silverware identification system. It will only be receiving one item at once, so Matlab just needs to be able to identify if the image is of a knife, fork or spoon. The silverware in the reference folder will be the same as the silverware being identified, however I am struggling to go about writing the code. Below is a sample of the reference images (stitched into one at the moment), and the images Matlab will be given to recognise will be very similar to these images.
Can anyone help me or point me in the right direction as to how to go about this?
Thanks
Matt
RE: Image or Pattern recognition in Matlab
http://www.mathworks.com/matlabcentral/fileexchang...
TTFN
FAQ731-376: Eng-Tips.com Forum Policies
RE: Image or Pattern recognition in Matlab
That being said identifying a knife vs a spoon is a bit subtle.
Cheers
Greg Locock
New here? Try reading these, they might help FAQ731-376: Eng-Tips.com Forum Policies http://eng-tips.com/market.cfm?
RE: Image or Pattern recognition in Matlab
But this will only find your original fork, un-rotated and un-scaled. I believe in matlab you can use the xcorr2 function and max(max(x)) the output image to get the response.
D
RE: Image or Pattern recognition in Matlab
Its not perfect, as the input images aren't as 'perfect' as the reference ones, but it's near enough for the time being.
Thanks