Prev: want to some code
Next: Legendre coefficients
From: Manal on 18 Jun 2010 22:27 ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <3e5fe037-b050-4136-8b77-7c8aca895672(a)y4g2000yqy.googlegroups.com>... > Don't be put off by the above - it's mostly just code to initialize > and display things - the key code (calls to fspecial, imfilter, > imclose, thresholding, and bwboundaries) is really only 5 lines. Try > it with your image. If it doesn't work, then post your original image > somewhere. > > It's much better to start off doing things in the right way than to > try some programmatical gynmnastics to fix up a bad result. > thanks a lot for your replay your write, it will be better if I could solve the solution from earlier stages as reordering the bordered get worst so far I tried your code and started it with grayImage = imread('n.png'); grayImage=rgb2gray(grayImage); but I got this result http://img532.imageshack.us/img532/8501/screenshot20100619at031.png :(
From: ImageAnalyst on 18 Jun 2010 23:57 You didn't adjust the threshold for your image, did you? You also may have to adjust the window size because it doesn't look like it's getting the right edge of the man. Post your original image. I can't do anything (easily) with just a screenshot.
From: Manal on 19 Jun 2010 08:18 ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <8744ca2e-4b5d-4120-b3ef-411b5f819092(a)z8g2000yqz.googlegroups.com>... > You didn't adjust the threshold for your image, did you? > You also may have to adjust the window size because it doesn't look > like it's getting the right edge of the man. > Post your original image. I can't do anything (easily) with just a > screenshot. I don't know how to adjust it :( this is the original image http://img215.imageshack.us/img215/3063/34659690.jpg thanks a lot for your help I really appreciate that
From: Manal on 19 Jun 2010 14:21 "someone" <someone(a)somewhere.net> wrote in message <hvej13$loi$1(a)fred.mathworks.com>... > "Manal " <be.san(a)live.com> wrote in message <hvegm6$qn7$1(a)fred.mathworks.com>... > > I'll draw a graph from these points (depending on their index) > > they have to be ordered sequentially starting from the head for example and finish at the same point ( the same head point) > > > > I don't know how this can be happen :( > > If I understand your situation, you might try a procedure something like this: > > 1) Start with A = M(x1,y1) % an initial point > 2) Set M(x1,y1) = [] % remove that point > 3) Calculate the minimum distance (or distance squared) to every other point using > d = min(sqrt((M-x1).2 + (M-y1).2)) % don't really need sqrt > 4) Use find to get the index of the minimum distance. > (You will have to decide what to do in case of ties.) > 5) Set A = [A;M(xd,yd)] > 6) Set M(xd,yd) = [] > 7) Repeat steps 3 - 6 until M is empty > > A should be a matrix with your desired order. > > I'm sure there is lots of optimizing and degugging required with the above procedure, but you should get the idea. I follow your procedure and implemented the following code % Reorder the Matrix s [w,q]=size(s); %n=x-1; u=1; for k=1:w if((s(k,1)~= 0) && (s(k,2)~= 0)) A(u,1)=s(k,1); A(u,2)=s(k,2); s(k,:)=0; [w,q]=size(s); i=1; for o=1:w if((s(o,1)~= 0) && (s(o,2)~= 0)) xt=s(o,2); yt=s(o,1); dt(i,1) = sqrt((xt-A(u,2))^2 + (yt-A(u,1))^2); dt(i,2) = yt; dt(i,3) = xt; i=i+1; end end u=u+1; mind = min(dt(:,1)); idx = find(dt(:,1)== mind); [t,tt]=size(idx); if(t>1) for p=1:t A(u,1)=dt(idx(t),2); A(u,2)=dt(idx(t),3); u=u+1; idx2 = find(s(:,1)== dt(idx(t),2)); s(idx2,:)=0; [w,q]=size(s); end else A(u,1)=dt(idx,2); A(u,2)=dt(idx,3); u=u+1; idx2 = find(s(:,1)== dt(idx,2) & s(:,2)== dt(idx,3)); s(idx2,:)=0; [w,q]=size(s); end [w,q]=size(s); end end disp(A); it is run correctly and draw the border but not in the circle order that I need I don't what is the wrong it becomes complicated more and more :(
From: Manal on 20 Jun 2010 09:44
ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <8744ca2e-4b5d-4120-b3ef-411b5f819092(a)z8g2000yqz.googlegroups.com>... > You didn't adjust the threshold for your image, did you? > You also may have to adjust the window size because it doesn't look > like it's getting the right edge of the man. > Post your original image. I can't do anything (easily) with just a > screenshot. I posted my image here hope you can help me final chance for me |