博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
matlab怎么做字体孔,如何用 matlab 在图片上绘制矩形框 和 添加文字 ?
阅读量:5976 次
发布时间:2019-06-20

本文共 625 字,大约阅读时间需要 2 分钟。

如何给图像添加矩形框?以及添加想要输入的文字 ? 案例程序,如下所示:

clc; close all; clear all;

image = imread('/home/wangxiao/Pictures/image/gamersky_022origin_043_20147261368D.jpg');

figure;imshow(image);

hold on

rectangle('Position',[100 100 100 100],'LineWidth',4,'EdgeColor','r');

效果如下:

03621358e412f5b11fca34c36e91d3fb.png

添加文字:

clc; close all; clear all;

image = imread('/home/wangxiao/Pictures/image/gamersky_022origin_043_20147261368D.jpg');

figure;imshow(image);

hold on

rectangle('Position',[100 100 100 100],'LineWidth',4,'EdgeColor','r');

xlim=get(gca,'xlim');

ylim=get(gca,'ylim');

N=100;

text(sum(xlim)/2,sum(ylim)/2+N,'what you want to input, just input here !','horiz','center')

转载地址:http://kliox.baihongyu.com/

你可能感兴趣的文章
rename设计思想(Perl版)
查看>>
第二次冲刺 第七天
查看>>
矩阵之矩阵乘法(转载)
查看>>
eclipse颜色主题插件(更改字体和背景的颜色)
查看>>
Python _内置函数3_45
查看>>
cf-Igor In the Museum (dfs)
查看>>
数据之路 Day4 - Python基础4
查看>>
使用openCV打开USB摄像头(UVC 小米micro接口)
查看>>
Luogu P3577 [POI2014]TUR-Tourism
查看>>
Scrapy框架的基本使用
查看>>
ActionResult,PartialViewResult,EmptyResult,ContentResult
查看>>
关于泛型类,泛型接口,泛型函数
查看>>
@pathvariable和@RequestParam的区别
查看>>
测试驱动开发
查看>>
C++操作符重载
查看>>
Redis实现分布式锁2
查看>>
【Udacity】线性回归方程 Regression
查看>>
前端架构设计1:代码核心
查看>>
RPC 框架通俗解释 转自知乎(洪春涛)
查看>>
获取cookie后,使用cookie进行接下来的自动化操作
查看>>