Why is an upside down blue image being displayed?

조회 수: 7 (최근 30일)
Shelby
Shelby 2024년 2월 7일
편집: Walter Roberson 2024년 2월 7일
I can't seem to fix my problem. I am trying to inspect an image using OCR to find specific words on an image but when I attempt to use the image I already uploaded this random upside down blue kid shows up out of nowhere. Does something look out of place?
ocrResults = ocr(image);
words = {ocrResults.Words};
searchWords = {'Urgent', 'Important', 'Action required', 'Secured Document'};
highlightedImage = insertObjectAnnotation(image, 'textbox', ocrResults.WordBoundingBoxes, words);
imshow(highlightedImage, 'Parent', app.UIAxes);
detectedWords = intersect(words, searchWords);
if isempty(detectedWords)
app.TextAreaLabel.Text = 'No keywords found';
else
app.TextAreaLabel = 'Keywords found:';
app.TextArea.Value = detectedWords;
end

채택된 답변

Image Analyst
Image Analyst 2024년 2월 7일
It comes from image. It is using the built in image function instead of your particular image. Do NOT use "image" as the name of your variable. Call it rgbImage, grayImage, myImage, thisImage, currentImage or anything else other than image.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by