I am looking for a 4x6 matrix to enter letter "A" in matlab which l will use to display as a black and white image. Helpful answer will definitely be appreciated.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mazhar
el 27 de Mayo de 2018
Respondida: Image Analyst
el 27 de Mayo de 2018
For eg, this the matrix for number "4". I need the matrix for letter "A" in the same format. four=[0 1 0 1;0 1 0 1;0 0 0 1;1 1 0 1;1 1 0 1;1 1 1 1];
2 comentarios
KALYAN ACHARJYA
el 27 de Mayo de 2018
Editada: KALYAN ACHARJYA
el 27 de Mayo de 2018
Can you clarify more? Share the image how this matrix represents four=[0 1 0 1;0 1 0 1;0 0 0 1;1 1 0 1;1 1 0 1;1 1 1 1];
Respuesta aceptada
Stephen23
el 27 de Mayo de 2018
[1 0 0 1;
0 1 1 0;
0 0 0 0;
0 1 1 0;
0 1 1 0;
1 1 1 1];
5 comentarios
Más respuestas (1)
Image Analyst
el 27 de Mayo de 2018
KALYAN and khizar, if you have the Computer Vision System Toolbox, the way to do it is to use the "insertText()" function.
0 comentarios
Ver también
Categorías
Más información sobre Image Processing and Computer Vision 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!