Borrar filtros
Borrar filtros

how can I draw a grid over a specified region of the image

3 visualizaciones (últimos 30 días)
ZhG
ZhG el 6 de Nov. de 2013
Respondida: Image Analyst el 6 de Nov. de 2013
For example, I have an image of 400*360. I want to draw small grids over a region of the image. E.g. draw small grids of 20*20 started from (50, 60) and until (300, 280). How can I do this?

Respuestas (1)

Image Analyst
Image Analyst el 6 de Nov. de 2013
You can do it in the overlay, with line(),
for row = 50 : 20 : 300
line([1, 360], [row, row];
end
for column = 60 : 20 : 280
line([column , column ], [1, 400];
end
or you can burn it into the image like this:
for row = 50 : 20 : 300
grayImage(row, :) = 255;
end
for column = 60 : 20 : 280
grayImage(:, column) = 255;
end

Categorías

Más información sobre Geometric Transformation and Image Registration 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!

Translated by