How to resolve the error "Index exceeds array bounds" in matlab?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I need to extract the characters in the image.But,I get error.I have attached my code below.I need to extract all the characters in my image.Can anyone please help me in rectifying my error.
My error is:
Index exceeds array bounds.
Error in te (line 6)
word = results.Words{2};
% Load an image
I = imread('test3.png');
% Perform OCR
results = ocr(I);
% Display one of the recognized words
word = results.Words{2};
![test3.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/202186/test3.png)
0 Kommentare
Antworten (1)
KSSV
am 31 Jan. 2019
Please check the variable:
results.Words
It is empty in your case.....ocr didnot capture any words.......As the variable is empty..you are getting an error.
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!