Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
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?

Akzeptierte Antwort

Image Analyst
Image Analyst am 21 Jan. 2015
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 Kommentare
Image Analyst
Image Analyst am 22 Jan. 2015
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.
Nafeesath Musfira
Nafeesath Musfira am 22 Jan. 2015
Yup, that's true sir. I'll try with simpler background. Thank you sir.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by