How can I display the maximum 10 elements in an array?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
The pixels in yellow are of the highest intensity, I would like to display 10 pixels of the highest intensity.
I've plotted the 41x41 array (shown below) using:
image(Rx, (Ry-40), pict, 'CDataMapping', 'scaled')
I wanted to display a set of maximum values at a predefined range in 0's and 1's and did so using:
rangedValues = pict >= 17.0;
image(Rx, (Ry-40), rangedValues, 'CDataMapping', 'scaled')
How can I append this script to display a predetermined number of maximum values instead of a range? (i.e. the 10 highest, 100 highest, etc.)
0 comentarios
Respuestas (1)
Star Strider
el 11 de Mzo. de 2019
If you have R2017b or later, the maxk (link) funciton is an option. I’m not certain how compatible it is with with image data, since you didn’t specify what your image characteristics are.
2 comentarios
Star Strider
el 11 de Mzo. de 2019
Images can have two or three dimensions, (R,G,B channels for example), or other formatting idiosyncracies, depending on the image format. If you are using the image (or imagesc) function to view a 2D matrix, it would be different than your original data being a 3D format.
That’s the reason I asked.
If you have a 2D matrix, the maxk function could do what you want. Note that the second output is a linear index into your matrix, so if you want row-column (or row-column-page) subscripts, you would need to use the ind2sub function to convert them.
Experiment to get the result you want.
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!