How to recognize scale marker text in the image?

1 Ansicht (letzte 30 Tage)
AMAR P
AMAR P am 3 Okt. 2018
Kommentiert: AMAR P am 10 Okt. 2018
Hello All, I wish to identify scale marker text in the image. And would like your suggestions and ideas for Algorithm. In Image given below its 100uM and thats what I would like to recognize.
  5 Kommentare
AMAR P
AMAR P am 4 Okt. 2018
@jonas Yes, I have tried that but could not get a excellent results. rather Zero results.. Have you tried it?
Image Analyst
Image Analyst am 4 Okt. 2018
Well, did you try my code below? If not, why not? If it's not what you want, then explain better exactly what "identify" means to you.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

AMAR P
AMAR P am 10 Okt. 2018
% file: AutoMarkerScale
% Author: AMAR P
% Version: V1_0
%Objective: Localize the Marker Scale on a Image, Perform OCR and Return
%the Value.
%==========================================================================
%==========================================================================
% Read Image
[MainImg, MainImgMap] = imread(OriginalImg);
%Convert to Binary
BinImg = im2bw(MainImg, graythresh(MainImg));
BinImg = imcomplement(BinImg);
[yMax, xMax] = size(BinImg);
%ROI here is Region of Interest select using imrect()
BotRImg = imcrop(BinImg,ROI);
[ROIy_max,ROIx_max] = size(BotRImg);
% To Remove any Noise
BotRImg = imclearborder(BotRImg);
% Run OCR on Image
ocrResult = ocr(BotRImg,'CharacterSet','0123456789numc',...
'TextLayout','Line',...
'Language','English');
MarkerValue = ocrResult.Text;
fprintf('Marker Value is = %s', MarkerValue);

Weitere Antworten (1)

Image Analyst
Image Analyst am 3 Okt. 2018
It's a constant and uniform gray level, so just detect that. For example if it's gray level is 175, do
scaleMask = grayImage == 175;
scaleMask = bwareafilt(scaleMask, 1); % Take largest blob.
scaleMask = imfill(scaleMask, 'holes'); % Fill holes to get rectangular block.
Not sure what you want to do after that.
  8 Kommentare
Image Analyst
Image Analyst am 9 Okt. 2018
Glad it's working for you. Do you want to post the final code so that people won't post here for years to come "Can you please upload your code?" as they always do.
AMAR P
AMAR P am 10 Okt. 2018
Sure.. I will finalize couple things and will post the result.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by