drawline

버전 1.0.0.0 (3.05 KB) 작성자: Daniel Lopes
Draws line segments on a image matrix.
다운로드 수: 4.1K
업데이트 날짜: 2007/11/6

라이선스 보기

DRAWLINE Returns the geometric space (matrix indices) occupied by a line segment in a MxN matrix. Each line segment is defined by two endpoints.

IND = DRAWLINE(P1, P2, IMAGE_SIZE) returns the matrix indices of the line segment with endpoints p1 and p2. If both points are out of the image boundary no line is drawn and an error will appear. If only one of the endpoints is out of the image boundary a line is still drawn.

인용 양식

Daniel Lopes (2024). drawline (https://www.mathworks.com/matlabcentral/fileexchange/15374-drawline), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R13
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Daniel Drucker spotted a bug.

"Line 62 should read:
for line_number = 1:size(p1,1)
Otherwise, it fails when there is only one point in p1 and p2."

It has now been corrected!