marking on image
Ältere Kommentare anzeigen
I want to know how can I mark on a threshold segmented image in the segment of it which one of the morphological extracted features is greater than a specified threshold?
Akzeptierte Antwort
Weitere Antworten (3)
bahar h
am 14 Apr. 2012
0 Stimmen
1 Kommentar
Image Analyst
am 14 Apr. 2012
I don't know how "some points are displayed" but if you used plot() or some other type of graphics function to put stuff into the overlay, you can just call axes() to set the current axes, then call plot(), then call hold on, then call plot again to plot all your other points that you want to be on the same image. (Don't switch to another axes or else they'll appear there instead.)
On the other hand if you want to superimpose all the images, you can do this:
meanImage = (single(image1) + single(image2) + ..... + single(image9))/9;
imshow(meanImage, []);
bahar h
am 15 Apr. 2012
0 Stimmen
sneha
am 18 Apr. 2012
0 Stimmen
hi expert......... i m working on car license plate recognition...can u tell me how cold i recognize characters fron license plate using OCR...plz ans me
1 Kommentar
Image Analyst
am 18 Apr. 2012
You're best off searching for license plate or LPR in this forum. This question is asked almost daily here.
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!