How to insert text into image

Hi,
Does anyone know how to insert text into the image?
I've been looking for some references and did not find it.
Is there a spesific algorithm to do it?
Thanks in advance!

 Akzeptierte Antwort

Chandra Kurniawan
Chandra Kurniawan am 13 Jan. 2012

1 Stimme

What version of Matlab are you using?
Is there computer vision system toolbox?
You can use vision.TextInserter from Matlab
Text = sprintf('Create text inserter object \nwith same property values');
H = vision.TextInserter(Text);
H.Color = [1.0 1.0 0];
H.FontSize = 20;
H.Location = [25 25];
I = im2double((imread('football.jpg')));
InsertedImage = step(H, I);
imshow(InsertedImage);
The result shown below

1 Kommentar

Cecilia Adriana
Cecilia Adriana am 13 Jan. 2012
I am using Matlab R2011a.
Thank you, sir
It works!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Images 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!

Translated by