np-by-2 array

7 ビュー (過去 30 日間)
Shivang Patel
Shivang Patel 2015 年 2 月 9 日
コメント済み: Lluis Roca 2021 年 1 月 18 日
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 件のコメント
dpb
dpb 2015 年 2 月 9 日
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 2015 年 2 月 10 日
ok... thank you...

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

採用された回答

Image Analyst
Image Analyst 2015 年 2 月 9 日
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 件のコメント
Image Analyst
Image Analyst 2021 年 1 月 17 日
Not sure what "draw back" means.
Lluis Roca
Lluis Roca 2021 年 1 月 18 日
"draw back" - use a chain code to draw the original object outline

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFeature Detection and Extraction についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by