i want to add rows and columns to a binary image
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, am working on words i want to add rows and columns to a binary image based on threshold values and also add nodes based on center of mass. please help me and i have attached an images for your refernces
5 comentarios
Walter Roberson
el 22 de Feb. de 2017
I need you to say clearly that you want to overwrite parts of the binary image, or that you want to conceptually break the image up into parts without actually changing the image.
Respuestas (1)
Image Analyst
el 21 de Feb. de 2017
You can use padarray() to add any number of rows or columns to any side.
5 comentarios
Image Analyst
el 22 de Feb. de 2017
bw = ones(3, 5)
% Add one row to the top, 2 rows to the bottom,
% 3 columns to the left, and 4 columns to the right
bw2 = padarray(bw, [1, 3]);
bw2(6,12) = 0
And get this:
bw =
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
bw2 =
0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 1 1 1 1 1 0 0 0 0
0 0 0 1 1 1 1 1 0 0 0 0
0 0 0 1 1 1 1 1 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0
Ver también
Categorías
Más información sobre Text Analytics Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!