Linear indices from row and column indices for a rectangular region of interest.

10 次查看(过去 30 天)
I have the row and column indices of a rectangular region of interest in a rectangular image. How can i get the linear indices from these row and column indices?
%this works
a = rand(5,5); %changed.
row_indices = 1:5;
col_indices = 1:5;
[X,Y] = meshgrid(row_indices,col_indices);
indices = sub2ind(size(a), Y, X)
%i want the indices when rows and cols are not necessarily of same length.
a = rand(5,3); %changed
row_indices = 1:5;
col_indices = 1:3;
[X,Y] = meshgrid(row_indices,col_indices);
indices = sub2ind(size(a), Y, X) %this would give out of range subscript.
  1 个评论
bayesianguy
bayesianguy 2019-6-16
I had made a mistake in the code snippet. Now it is edited.
When the size of matrix is 5 x 5, the row and column indices going from 1:5 can create a nice grid which works with sub2ind.
However, when i have a rectangular matrix of size 5 x 3, the grid elements are going to have elements like (5,5) which is out of range.

请先登录,再进行评论。

采纳的回答

Star Strider
Star Strider 2019-6-16
You need to reverse the order of the second and third arguments to sub2ind:
indices = sub2ind(size(a), X(:), Y(:)) %this would give out of range subscript.
and ideally make them column vectors, using the (:) subscript notation.
Note that ndgrid may be preferable to meshgrid.

更多回答(1 个)

KSSV
KSSV 2019-6-14
编辑:KSSV 2019-6-14
YOu need to consider the size of matrix a.
%this works
a = rand(5,5);
row_indices = 1:5;
col_indices = 1:5;
[X,Y] = meshgrid(row_indices,col_indices);
indices = sub2ind(size(a), Y, X)
%i want the indices when rows and cols are not necessarily of same length.
row_indices = 1:5;
col_indices = 1:3;
a = rand(3,5) ;
[X,Y] = meshgrid(row_indices,col_indices);
indices = sub2ind(size(a), Y, X) %this would give out of range subscript.
  1 个评论
bayesianguy
bayesianguy 2019-6-16
I have made a mistake in the code snippet.
When the size of matrix is 5 x 5, the row and column indices going from 1:5 can create a nice grid which works with sub2ind.
However, when i have a rectangular matrix of size 5 x 3, the grid elements are going to have elements like (5,5) which is out of range.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by