From: teferi bekele on
i have some know how about color theory and related things but my problem is just to have some guiding codes for my current problem, i.e. to compare the two images taking the first as a standard then give decision (pass/ fail format)
thanks
From: us on
"teferi bekele" <kassferi(a)gmail.com> wrote in message <hssi6n$676$1(a)fred.mathworks.com>...
> i have some know how about color theory and related things but my problem is just to have some guiding codes for my current problem, i.e. to compare the two images taking the first as a standard then give decision (pass/ fail format)
> thanks

what have YOU done so far to solve YOUR particular problem...

us
From: James Tursa on
"teferi bekele" <kassferi(a)gmail.com> wrote in message <hssi6n$676$1(a)fred.mathworks.com>...
> i have some know how about color theory and related things but my problem is just to have some guiding codes for my current problem, i.e. to compare the two images taking the first as a standard then give decision (pass/ fail format)
> thanks

if isequal(FirstImage,SecondImage)
decision = 'pass';
else
decision = 'fail';
end

If you need more guidance then you will have to post a more detailed question.

James Tursa
From: ImageAnalyst on
You've got to be kidding me. Do you think you gave anywhere near
enough information to answer your question meaningfully? This is even
worse than your near-duplicate first posting:
http://www.mathworks.com/matlabcentral/newsreader/view_thread/282064#745023

Why don't you post three images? A reference image, one that you
think "matches" close enough, and one that is so different that it
doesn't match. And then explain what criteria you're using to decide
match or no-match. I know a thing or two about color science also so
I could probably help, given enough information.

By the way, what have you tried since you were last given suggestions
a few days ago. Did you calculate deltaE like I said?