How to insert text into image
1 次查看(过去 30 天)
显示 更早的评论
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!
0 个评论
采纳的回答
Chandra Kurniawan
2012-1-13
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Language Support 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!