Azzera filtri
Azzera filtri

np-by-2 array

1 visualizzazione (ultimi 30 giorni)
Shivang Patel
Shivang Patel il 9 Feb 2015
Commentato: Lluis Roca il 18 Gen 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 Commenti
dpb
dpb il 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 il 10 Feb 2015
ok... thank you...

Accedi per commentare.

Risposta accettata

Image Analyst
Image Analyst il 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 Commenti
Image Analyst
Image Analyst il 17 Gen 2021
Not sure what "draw back" means.
Lluis Roca
Lluis Roca il 18 Gen 2021
"draw back" - use a chain code to draw the original object outline

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by