Please help me in understanding these code snippets
Show older comments
#1)
maxa= area;
boundingBox = Iprops.BoundingBox;
for i=1:count
if maxa<Iprops(i).Area
maxa=Iprops(i).Area;
boundingBox=Iprops(i).BoundingBox;
end
end
#2)
noPlate=[]; % Initializing the variable of number plate string.
for i=1:count
ow = length(Iprops(i).Image(1,:));
oh = length(Iprops(i).Image(:,1));
if ow<(h/2) & oh>(h/3)
letter=readLetter(Iprops(i).Image); % Reading the letter corresponding the binary image 'N'.
figure; imshow(Iprops(i).Image);
noPlate=[noPlate letter]; % Appending every subsequent character in noPlate variable.
end
end
I've been looking into a project named "Car Plate Number Recognition system and I don't exactly get these pieces of code. Even a brief summary of these codes would be highly appreciated.
Please help, thanks.
Accepted Answer
More Answers (0)
Categories
Find more on Images in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!