Filter löschen
Filter löschen

np-by-2 array

1 Ansicht (letzte 30 Tage)
Shivang Patel
Shivang Patel am 9 Feb. 2015
Kommentiert: Lluis Roca am 18 Jan. 2021
How to create np-by-2 array ?
I found matlab code related to chain code. and in that code author used np-by-2 array as a input of the function.
So. pls help me... Thanks in advance...
  4 Kommentare
dpb
dpb am 9 Feb. 2015
Well, an "npx2 array" simply means an array of np rows by 2 columns.
Now what that array is supposed to be or represent we've no way of knowing; that's totally dependent upon the use the author of the code you've found has prescribed for it.
Simply "making" a npx2 array is as simple as
np=5; % say 5 rows
MyNPby2Array=rand(np,2); % create a 5x2 array of random values
You'll have to read the documentation supplied by or contact the author for the subject code you're trying to use to understand the specifics of that particular application.
Shivang Patel
Shivang Patel am 10 Feb. 2015
ok... thank you...

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 9 Feb. 2015
np probably means "number of points". There are np rows - one row for each point. And two columns. The first column is probably either the x coordinate, or the row of the image. The second column is either the y value, or the column of the matrix. Not sure how they specified it - what they are expecting. Make sure you don't make the common mistake of mixing up row, column with x,y. Remember row,column is y,x NOT x,y.
  5 Kommentare
Image Analyst
Image Analyst am 17 Jan. 2021
Not sure what "draw back" means.
Lluis Roca
Lluis Roca am 18 Jan. 2021
"draw back" - use a chain code to draw the original object outline

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by