Azzera filtri
Azzera filtri

cbir shape feature implementation

2 visualizzazioni (ultimi 30 giorni)
DEEPTHI
DEEPTHI il 3 Feb 2013
i am deepthi...i am doing project in cbir...i got o/p for color and texture feature...i didnt get for shape...
function result=shape(S) S=im2bw(S); [H,theta,rho]=hough(S); datas=[]; for cnt=1:max(max(H)) datas(cnt)=sum(sum(H==cnt)); end %datas(datas==0)=NaN; [maxval,maxind]=max(datas); medval=median(datas); [p]=polyfit(1:maxind-5,datas(1:maxind-5),2); if maxval<3*medval result='Triangle'; elseif p(3)>100 result='square'; else result='Round'; end
warning*bold*
Warning: Polynomial is not unique; degree >= number of data points. > In polyfit at 72 In main2>shape at 241 In main2>feature_Callback at 192 In gui_mainfcn at 96 In main2 at 42 In @(hObject,eventdata)main2('feature_Callback',hObject,eventdata,guidata(hObject))

Risposte (1)

Image Analyst
Image Analyst il 3 Feb 2013
OK, let's look at the error message "degree >= number of data points." Well, what is your degree, and what is the number of data points you have?

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by