matlab问题:解释这三句的含义:x=[19 427 416 77]; y=[96 462 37 33]; subplot(1,2,2);improfile(I,x,y);完整程序为:I=imread('liftingbody.png');subplot(1,2,1);imshow(I);x=[19 427 416 77];y=[96 462 37 33];subplot(1,2,2);improfile(I,x,y);g
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/15 21:09:38
matlab问题:解释这三句的含义:x=[19 427 416 77]; y=[96 462 37 33]; subplot(1,2,2);improfile(I,x,y);完整程序为:I=imread('liftingbody.png');subplot(1,2,1);imshow(I);x=[19 427 416 77];y=[96 462 37 33];subplot(1,2,2);improfile(I,x,y);g
matlab问题:解释这三句的含义:x=[19 427 416 77]; y=[96 462 37 33]; subplot(1,2,2);improfile(I,x,y);
完整程序为:I=imread('liftingbody.png');
subplot(1,2,1);imshow(I);
x=[19 427 416 77];
y=[96 462 37 33];
subplot(1,2,2);improfile(I,x,y);
grid on;
matlab问题:解释这三句的含义:x=[19 427 416 77]; y=[96 462 37 33]; subplot(1,2,2);improfile(I,x,y);完整程序为:I=imread('liftingbody.png');subplot(1,2,1);imshow(I);x=[19 427 416 77];y=[96 462 37 33];subplot(1,2,2);improfile(I,x,y);g
x=[19 427 416 77];
y=[96 462 37 33];
上边这两句点出了四个点,由这四条点将会决定三条线段
subplot(1,2,2);
上边这句就不用解释了吧?就是在上边那个图边上再画个图
improfile(I,x,y); %沿线横截面的像素值
这个是对图像 I 沿着上边出来的三条线段,画出沿线上的像素值,画出来你就可以看出来了~