How to crop license plate image automatically?

4 visualizzazioni (ultimi 30 giorni)
1.How to crop the attached license plate image automatically? 2.And using these coordinates how to draw red rectangle around license plate in original image?

Risposta accettata

Image Analyst
Image Analyst il 22 Feb 2015
Get the bounding box with regionprops. Put up rectangle with rectangle. Crop with imcrop().
binaryImage = maskedImage > 0;
labeledImage = bwlabel(binaryImage);
measurements = regionprops(labeledImage, 'BoundingBox');
bb = [measurements.BoundingBox];
% Put up red rectangle
hold on;
rectangle('Position', bb, 'EdgeColor', 'r');
% Crop
croppedImage = imcrop(maskedImage, bb);
  7 Commenti
mae magdadaro
mae magdadaro il 10 Apr 2017
what is the output of this code?
binaryImage = maskedImage > 0; labeledImage = bwlabel(binaryImage); measurements = regionprops(labeledImage, 'BoundingBox'); bb = [measurements.BoundingBox]; % Put up red rectangle hold on; rectangle('Position', bb, 'EdgeColor', 'r'); % Crop croppedImage = imcrop(maskedImage, bb);
Image Analyst
Image Analyst il 10 Apr 2017
It looks like the cropped image, croppedImage, is the output.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Deep Learning Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by