필터 지우기
필터 지우기

Drawing line through scatter plot

조회 수: 2 (최근 30일)
Walter Mabry
Walter Mabry 2021년 10월 14일
편집: Walter Mabry 2021년 10월 14일
clear
I = imread('star.png');
[r,c,nc] = size(I);
GC = I(:,:,2);
BI = GC < 200;
[y,x]=find(BI);
y=y*-1; x=x*-1;
c = linspace(1,10,length(x));
figure
plot(x,y,'.')
The code plots the folowing graph
I want to make on continuous line that produces the same image. So basically x an y cordinates for a line that traces this star.
EDIT: Also wanted to mention that I have tried implementing a polyfit--> polyval rountine but It has not given me the desired results.
  댓글 수: 2
Matt J
Matt J 2021년 10월 14일
Your code doesn't run to completion:
I = imread('star.png');
[r,c,nc] = size(I);
GC = I(:,:,2);
Index in position 3 exceeds array bounds. Index must not exceed 1.
BI = GC < 200;
[y,x]=find(BI);
y=y*-1; x=x*-1;
c = linspace(1,10,length(x));
figure
plot(x,y,'.')
Walter Mabry
Walter Mabry 2021년 10월 14일
Matt,
Thanks for the commetn here. Depending on the image you might have to change that line. It will do the same if you put
I(:,:,1)

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by