clear all
p=imread('捕获2.png');
g=rgb2gray(p); % 转为灰阶图
gg=double(g) % 转为数值矩阵
%gg=gg/255; % 将彩色值转为 0-1 的渐变值
[x,y]=size(gg); % 取原图大小
[X,Y]=meshgrid(1:y,1:x); % 以原图大小构建网格
figure
mesh(X,Y,gg); % 网格上画出图像%%%%%%%%%%%%%%%%%%图像3D显示
colormap jet % 设为灰阶图像
%----------------------%%%%%%%%%%%%%%%%%%%%%%%图上画圆圈
im=imread('捕获2.png');
%点的位置
x=40;
y=180;
r=5;%要画的半径
sita=0:0.05:2*pi;
figure, imshow(im),hold on;
plot(x+10*cos(sita),y+10*sin(sita),'red');
hold off;
%plot(x/2,y/2,'o') %x,y为画圈圈的坐标
%----------------------
im=imread('捕获2.png');
%点的位置
x=40;
y=180;
r=5;%要画的半径
sita=0:0.05:2*pi;
figure, imshow(im),hold on;
plot(x+10*cos(sita),y+10*sin(sita),'red');
hold off;
re
p=imread('捕获2.png');
g=rgb2gray(p); % 转为灰阶图
gg=double(g) % 转为数值矩阵
%gg=gg/255; % 将彩色值转为 0-1 的渐变值
[x,y]=size(gg); % 取原图大小
[X,Y]=meshgrid(1:y,1:x); % 以原图大小构建网格
figure
mesh(X,Y,gg); % 网格上画出图像%%%%%%%%%%%%%%%%%%图像3D显示
colormap jet % 设为灰阶图像
%----------------------%%%%%%%%%%%%%%%%%%%%%%%图上画圆圈
im=imread('捕获2.png');
%点的位置
x=40;
y=180;
r=5;%要画的半径
sita=0:0.05:2*pi;
figure, imshow(im),hold on;
plot(x+10*cos(sita),y+10*sin(sita),'red');
hold off;
%plot(x/2,y/2,'o') %x,y为画圈圈的坐标
%----------------------
im=imread('捕获2.png');
%点的位置
x=40;
y=180;
r=5;%要画的半径
sita=0:0.05:2*pi;
figure, imshow(im),hold on;
plot(x+10*cos(sita),y+10*sin(sita),'red');
hold off;
re