Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

what the error in tghis code?

조회 수: 2 (최근 30일)
mostafa alhamdany
mostafa alhamdany 2015년 11월 18일
마감: MATLAB Answer Bot 2021년 8월 20일
image1=imread('1.jpg'); image2=imread('2.jpg'); image3=imread('3.jpg'); Result1=ocr(image1); ocrText[1]=Result1.Text; Result2=ocr(image2); ocrText[2]=Result2.Text; Result3=ocr(image3); ocrText[3] = Result3.Text %disp(ocrText) [FileName,PathName] = uigetfile('*.jpg','Select an image'); inputimg = imread(strcat(PathName,FileName)); inresult = ocr(inputimg); inocrText = inresult.Text; for i=1:3 if inocrText==ocrText{i}; disp('This image is already founded'); imshow(inputimg) else disp('This image is not founded'); imshow(inputimg); end end

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by