Borrar filtros
Borrar filtros

Adding points in imagesc matrix

5 visualizaciones (últimos 30 días)
Allan Miller
Allan Miller el 3 de En. de 2020
Comentada: Image Analyst el 6 de En. de 2020
Good day,
I have a 2D matrix and I am using imagesc to produce the following diagram:
I need to add extra values to the individual pixels like below:
so that I produce something like below:
I have tried googling on pixel addition but i have reached a dead end... ho can I proceede?

Respuestas (1)

Image Analyst
Image Analyst el 3 de En. de 2020
Use imerode() to enlarge those black regions by 7 pixels around each black pixel.
kernel = true(3, 3);
kernel(1, 2) = false; % Don't use upper middle one so lower middle pixel doesn't go to black.
output = imerode(binaryImage, kernel);
  2 comentarios
Allan Miller
Allan Miller el 6 de En. de 2020
result.png
This is the result I am getting by using the code you suggested..., did I miss something?
Image Analyst
Image Analyst el 6 de En. de 2020
Attach your image and code in a .mat file. Until then, try
imshow(yourMatrix, []);
colormap(gray(256));

Iniciar sesión para comentar.

Categorías

Más información sobre Image Processing and Computer Vision en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by