Clear Filters
Clear Filters

Indexing for partial matrix

2 views (last 30 days)
Stephen Thompson
Stephen Thompson on 17 Jul 2020
Commented: Stephen Thompson on 21 Jul 2020
I have a 140 x 2000 matrix. It contains a blob of area (I know the linear indices) that has known peaks. I want to find the maximum peaks in part of the blob. Specifically I want to find the maximum peak in rows 1-77 and the maximum in rows 78-140 of the blob. There may be other blobs with other peaks, so it has to be by blob area.
Should I generate the linear indices for each section (e.g. all columns, rows 1:77) and then find which are common with the blob indices? How would I do that?

Answers (1)

Matt J
Matt J on 17 Jul 2020
Edited: Matt J on 17 Jul 2020
[upperBlob,lowerBlob]=deal(yourMatrix);
upperBlob(78:end,:)=-inf;
lowerBlob(1:77,:)=-inf;
[imax1,jmax1]=find(upperBlob==max(upperBlob(:))); %upper blob max
[imax2,jmax2]=find(lowerBlob==max(lowerBlob(:))); %lower blob max
  3 Comments
Matt J
Matt J on 21 Jul 2020
Edited: Matt J on 21 Jul 2020
I don't see why it wouldn't have worked. The area outside your blobs appears to be zero, while the area inside the blobs appears to be greater than zero, so the maxima I've computed above would inherently have to fall within the blobs. Regardless, you could exclude the background with a few additional lines:
A=-inf(size(yourImage));
A(blobIndices)=yourImage(blobIndices):
[upperBlob,lowerBlob]=deal(A);
upperBlob(78:end,:)=-inf;
lowerBlob(1:77,:)=-inf;
[imax1,jmax1]=find(upperBlob==max(upperBlob(:))); %upper blob max
[imax2,jmax2]=find(lowerBlob==max(lowerBlob(:))); %lower blob max
Stephen Thompson
Stephen Thompson on 21 Jul 2020
It is my fault for not explaining the problem well enough. Another example with 2 blobs - but I still would want them classed by row (corresponds for frequency but axes left generic) and by blob.
There could be multiple blobs with peaks above and below the row cut line, but I want to separate them into maxima by blob and by dichotomous row grouping, So it does have to be separated on a per-blob basis. Now that I can find the subscripts (ind2sub) for the blobs I can solve the problem. Thank you though for your solution.

Sign in to comment.

Tags

Community Treasure Hunt

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

Start Hunting!