由买买提看人间百态

topics

全部话题 - 话题: imshow
(共0页)
i********y
发帖数: 346
1
老大,不好意思再请教一下,imshow之后坐标好像都是以painter里面的默认值定死的,
但是由于这个bmp图片反映的是具有物理意义的一个figure,有其自己的坐标体系,那么
请问如何在imshow之后的图片里设置坐标呢?小弟菜鸟,不吝赐教,谢谢。
k*******5
发帖数: 387
2
就是在一个figure中显示多个图像,图像布满整个窗口,图像间只有几pixel的间隔,
我现在只能用imshow把图像显示出来,但imagesc不行,即使程序中我用imagesc,
但是实际显示的结果还是按imshow显示的,而如果我不自己设定figure的位置,高度,
宽度,直接用默认值则用subplot可以显示出imagesc后的结果,这个怎么回事那?请大
牛指点指点,十分感谢!
z*******9
发帖数: 167
3
来自主题: Fitness版 - 奔一个,并请教饮食和动作
关于健身做了很久的survey,可是都没认真付诸行动。在此认真请教,附照片供参考。
(工科朋友如果有摄像头和matlab,可以用下面的code照照片
clear;
obj = videoinput('winvideo',1,'YUY2_640x480');
frame = getsnapshot(obj);
img=ycbcr2rgb(frame);
figure;imshow(img);
很方便的。多照照片,方便交流。)
对于我的情况,应该如何选择动作和强度,以及如何配合饮食呢?
g*******g
发帖数: 431
4
【 以下文字转载自 Graphics 俱乐部 】
发信人: gingerdog (gingerdog), 信区: Graphics
标 题: 如何在matlab显示u'v'L的图像 (转载)
发信站: BBS 未名空间站 (Mon Dec 31 19:17:53 2012, 美东)
发信人: gingerdog (gingerdog), 信区: Matlab
标 题: 如何显示u'v'L的图像
发信站: BBS 未名空间站 (Mon Dec 31 19:16:41 2012, 美东)
用照相机拍的照片有luminance, u', v' 的数值, 请问如何在matlab中用imshow显示。
不胜感激!
b****o
发帖数: 403
5
来自主题: Programming版 - 一个matlab问题
用 imshow(a, 'DisplayRange', [minvalue maxvalue]) 可以把一个grayscale图像显
示出来,像素值在minvalue和maxvalue的被线性转换为0-255的数值,超出范围的像素
值在两头分别被转换为0和255.
我的问题是,不自己编程,有没有现成的函数得到这个转换过后的图像内容?
先谢谢了
b*****k
发帖数: 20
6
are you kidding me?
imread -> imshow -> save as .fig file
l********a
发帖数: 1154
7
梯度还是灰度图啊?
看意思你已经有了heatmap,应该不同区域有差别的,转灰度就行
直接
rgbimg = hsv2rgb(hsvimg);
grayimg = rgb2gray(rgbimg);
figure,imshow(grayimg,[]);
这几个都是图像处理工具箱内置函数
c**o
发帖数: 38
8
imread----subplot----imshow?????
l*******G
发帖数: 1191
9
Assume it is y=f(x) curve.
in matlab,
help imread
will tell you how to read a image
help imshow
will tell you how to show the image on your screen
help hold
will tell you how to plot one figure on top of another
help plot
you can use it to plot a frame that just covers the image with
or you can plot 4 dots that overlap with the 4 corners of the image
appropriate
x and y axises
help ginput
will tell you how to read position from the figure
t******q
发帖数: 117
10
来自主题: _Graphics版 - [转载] Matlab question
try these image display function.
maybe the imagesc works.
good luck.
Image display
colorbar Display colorbar (MATLAB Toolbox)
getimage Get image data from axes
image Create and display image object (MATLAB Toolbox)
imagesc Scale data and display as image (MATLAB Toolbox)
immovie Make movie from multiframe image
imshow Display image
montage Display multiple image frames as rectangular montage
movie Play recorded movie frames
subimage Display multiple images in single figure
truesize Ad
g*******g
发帖数: 431
11
【 以下文字转载自 Matlab 俱乐部 】
发信人: gingerdog (gingerdog), 信区: Matlab
标 题: 如何显示u'v'L的图像
发信站: BBS 未名空间站 (Mon Dec 31 19:16:41 2012, 美东)
用照相机拍的照片有luminance, u', v' 的数值, 请问如何在matlab中用imshow显示。
不胜感激!
g*******g
发帖数: 431
12
【 以下文字转载自 Matlab 俱乐部 】
发信人: gingerdog (gingerdog), 信区: Matlab
标 题: 如何显示u'v'L的图像
发信站: BBS 未名空间站 (Mon Dec 31 19:16:41 2012, 美东)
用照相机拍的照片有luminance, u', v' 的数值, 请问如何在matlab中用imshow显示。
不胜感激!
(共0页)