How to find all the points of a given graph line

3 ビュー (過去 30 日間)
Anas Blue
Anas Blue 2013 年 7 月 8 日
Hi everyone I want to find all the points from a plot and save it in array for example I've this graph I want all the point from the beginning of the line to the end of it
% Drawing a Trajectory
prompt={'Enter The Number Of Lines:'}; % Enter statements at the Command Window to accept input from you.
title='Draw Line '; % Name the Command Window
n=inputdlg(prompt); % Create and open input dialog box
% A = str2num(cell2mat(n)); % Convert from String to Int
A = sscanf(n{1}, '%d'); % Convert from String to Int
[x,y] = ginput(A); % Graphical input from mouse or cursor
plot(x,y)
posth = [x,y]; % Save 'x' and 'y' as Array
  2 件のコメント
Kartik  Katti
Kartik Katti 2013 年 7 月 9 日
You can use Image processing tool box on the graph to solve for the points which are black in color. I'm trying on those lines.
Anas Blue
Anas Blue 2013 年 7 月 9 日
Thanks man

サインインしてコメントする。

回答 (1 件)

Jan
Jan 2013 年 7 月 9 日
編集済み: Jan 2013 年 7 月 10 日
The line from x(1)/y(1) to x(2)/y(2) has an infinite number of points in the mathematical sense. If you want the pixels on the screen, notice that the result will depend on the resolution of the monitor and several other settings.
So please explain again, which kind of "points" you want.
[EDITED] Look in the FileExchange for the Bresenham method: http://www.mathworks.com/matlabcentral/fileexchange/index?utf8=%E2%9C%93&term=Bresenham
  1 件のコメント
Anas Blue
Anas Blue 2013 年 7 月 9 日
how I can find the pixels ???

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Exploration についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by