Language data in ocr function not working
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mir Pias
el 17 de Jul. de 2016
Editada: Walter Roberson
el 17 de Jul. de 2016
I am using matlab 2015b, I have installed ocr language data using visionSupportPackages command. when I use ocr function using language string, it shows following error
Error using ocr
Too many input arguments.
Error in temp (line 5)
txt = ocr(im2,'Language','Bengali');
The code
im = imread('21.jpg');
im = rgb2gray(im);
level = graythresh(im);
im2=im2bw(im, level);
txt = ocr(im2,'Language','Bengali');
0 comentarios
Respuesta aceptada
Walter Roberson
el 17 de Jul. de 2016
Please show the output of
which -all ocr
I suspect you have accidentally created your own ocr.m that is taking priority.
1 comentario
Mir Pias
el 17 de Jul. de 2016
Editada: Walter Roberson
el 17 de Jul. de 2016
Más respuestas (0)
Ver también
Categorías
Más información sobre Computer Vision 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!