How to create histogram for finding the threshold for object detection?

1 次查看(过去 30 天)
Hi, i'm doing my project on hand gesture recognition. And trying to find out the threshold value for segmenting the hand region. Anyone, can you please tell me how to find out the threshold value using histogram based method?

采纳的回答

Image Analyst
Image Analyst 2015-1-21
I'd take the histogram of your image and then plot it and look at the shape to determine how to threshold. There are many, many ways.
% Let's compute and display the histogram.
[pixelCount, grayLevels] = imhist(grayImage);
bar(grayLevels, pixelCount);
grid on;
title('Histogram of original image', 'FontSize', fontSize);
xlim([0 grayLevels(end)]); % Scale x axis manually.
  5 个评论
Image Analyst
Image Analyst 2015-1-22
I think you're also confused about what would be the best kind of background to use. Why are you using a colored, patterned background instead of something like black velvet, or at the very least a colored background that has no pattern and a very much different color than the hand? So your first step is to fix your image capture problem. Then finding the threshold will be much, much simpler. Otherwise you'll have to do color segmentation and the patterns will not let you get a very good boundary to your hand.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by