How can I count number of bars in a bar graph?

figure;
imshow(Image);
pix=impixel(Image,X,Y);
hold on;
plot(X,Y,'LineWidth',2);
figure;
bar(pix,'r');
I have plotted this pix using a bar graph which is a continuous data set. Now how to count the no of bars in this graph and how I will calculate the distances from both the axes to each of the bar?and how to store all these values to an excel file. I am getting many graphs as my folder consisting of 50 images. How to do this?

Answers (1)

Try adding this:
numBars = length(xticks)
since for every bar group you'll have a tick mark.

5 Comments

How to get this xticks as I only have pix array and it consists of continuos values means consequtives 0 and 1 ?
Once you've called bar() a plot will be created and then xticks will be there. Just try it and see.
Now how to calculate the distance from both the axes to each bars??
No idea. Why would you even care about that?
I am trying to extract some features from it. But unable to do so till now. Moreover this xticks not working in R2014b.

Sign in to comment.

Categories

Find more on Images in Help Center and File Exchange

Asked:

on 24 Jun 2018

Commented:

on 25 Jun 2018

Community Treasure Hunt

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

Start Hunting!