MATLAB: Building types of histograms

types of histogram

I want to create different type of histograms,like texture histogram,gradient magnitude orientation histogram,is there any function to build them in matlab

Best Answer

No, there is just hist() and histc() . You have to calculate the data to pass to hist() or histc() . That will not be easy for textures.