How can i measure reflection of light from plastic or paper images using cam ?

1 view (last 30 days)
I am writing a code to capture image of paper/plastic objects using logitech cam. I am able to connect take pictures, but i want to distinguish plastic & Paper images based on their reflection index or any other property which is related to reflection of light.. Need help.
Thank You

Answers (1)

Image Analyst
Image Analyst on 7 Oct 2017
Take the mean gray level then threshold.
if mean2(grayImage) > someValue
% It's plastic
else
% It's paper
end
If you need more help, then say why that didn't work and attach a paper image and a plastic image, after you read this link.

Community Treasure Hunt

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

Start Hunting!