joining points in image??

조회 수: 5 (최근 30일)
naga prasad
naga prasad 2012년 2월 17일
my question is how to join points in an image using matlab after creating database with land mark points on key features of face???

답변 (1개)

Selwyn
Selwyn 2012년 2월 17일
If you know the x and y locations of each of the points it should be quite straightforward.
So, if your database has points 1 to 5 (for example) with x-locations x1 x2 x3 x4 x5 and similar for y, then you could say
X = [x1 x2 x3 x4 x5];
Y = [y1 y2 y3 y4 y5];
line(X,Y)
will plot a black line through those points
  댓글 수: 1
Image Analyst
Image Analyst 2012년 2월 17일
A black line in the overlay, not in the image itself. Not sure what is wanted.

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

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by