Find rows and columns in matrix that meet a condition, fast

15 次查看(过去 30 天)
I have a large matrix S (could be as large as 1920x1080 pixels in an image) that contains labels assigned to patches of varying sizes within that image. It looks like this:
As it can be seen, S is divided into blocks labelled with uint32 numbers. Then I need to find the rows and columns that are equal to say 4803. The standard Matlab approach would be:
[m, n] = find(S == 4803);
To which it should return:
m =
5
6
5
6
n =
3
3
4
4
This operation gets called thousands of times and costs me hours of calculation. I have also experimented with bsxfun and it is still very slow. Can anyone suggest a faster way to accomplish this?
  1 个评论
Stephen23
Stephen23 2016-8-10
Would it be possible to use logical indexing, or is it strictly required to get the row and column indices ?

请先登录,再进行评论。

采纳的回答

Sean de Wolski
Sean de Wolski 2016-8-10
How about:
bwconncomp()
This returns a list of pixel indices, from which you can calculate row/column and size. You can also pass it into regionprops to do that for you. Alternatively, just call regionprops directly asking for 'Area' and 'PixelIdxList'.
Not sure about speed but it's something to consider/try.
  4 个评论
Image Analyst
Image Analyst 2016-8-10
"this function only working with BW images" <== that is incorrect. In fact, labeled images are of class double, not logical.
Image Analyst
Image Analyst 2016-8-10
Tell us what the numbers represent - image values or labels (blob ID numbers). And give us context: what are you going to do once you have the knowledge of all locations where a certain value resides? There may be a better way. There are a lot of imaging functions and Sean and I know virtually all of them and one might be the perfect thing if we just knew what you ultimately wanted to do.

请先登录,再进行评论。

更多回答(1 个)

RMello
RMello 2017-4-17
if you want to find a row in matrix A that all elements are 4803 and your rows have 1080 elements, you do:
find(sum(A')==1080*4083)
if you want to find a column you take the ' off.

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by