real time object detection

1 次查看(过去 30 天)
muzafar
muzafar 2013-2-16
my question regarding object detection is that is it possible to detect all the objects present in the image.becuse i faced a problem when i worked on object detection,i couldn't find black objects because due to thresholding,these objects where ignored and i am doing the compliment of the image i am getting only black objects ,please can anybody tell me how to detect all objects

回答(1 个)

Image Analyst
Image Analyst 2013-2-16
First you say "i couldn't find black objects" then you say "i am getting only black objects". Can you explain this contradiction? Do you know how to find black objects or not?
You do not need to invert images, you can simply flip the greater than or less than sign:
darkObjects = grayImage < someThresholdValue;
brightObjects = grayImage > someThresholdValue;
To detect "all" objects, you're going to have to tell us what an object is. If you're pointing your webcam around your lab, is an object a molecule? Is it dark things, bright things, or just things that are different than their local background? Upload an image and tell us where you posted it.

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by