Display nth character in a Binary image
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
RandomChikiBum
el 11 de Oct. de 2022
Comentada: Walter Roberson
el 12 de Oct. de 2022
I have a binary image consisting of characters (alphanumeric), I can find the total number of characters in the Image but How do I find the nth charecter
I have also attatched the image, how do i find out the 5th character in the image?
0 comentarios
Respuesta aceptada
Walter Roberson
el 11 de Oct. de 2022
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/1152713/AlphanumericBinaryImage%20copy.png';
I = imread(filename);
t = ocr(I)
n = 5
t.Words{1}(n)
This would need a slight bit more work if there were multiple words and you wanted to know the n'th character wrapping through the words (for example, the 15th character from the beginning.) One of the questions would be whether the break between words should count as a letter for this purpose -- are you effectively transcribing the text (which would expect a space between words) ?
2 comentarios
Walter Roberson
el 12 de Oct. de 2022
The Words property would be a cell array of character vectors.
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox 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!