24小时热门版块排行榜    

查看: 4198  |  回复: 26
当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖

亮子野心

新虫 (小有名气)

[求助] 求助用什么软件能处理tem图片,来求得其粒径 已有7人参与

如图,用什么软件能求得其粒径分布

求助用什么软件能处理tem图片,来求得其粒径
图像_211.jpg@dut_ameng
回复此楼
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

FMStation

至尊木虫 (知名作家)

【答案】应助回帖

import into matlab
<code>
1) reduce the graphics of the plot to the plain plot area (i.e. the axis-bound area)

2) import into matlab and display:

imdata=flipdim(imread('fig1.png'),1);

implot=imref2d(size(imdata));
implot.XWorldLimits=[xmin xmax];
implot.YWorldLimits=[ymin ymax];
imshow(imdata, implot);

% if y is logarithmic (for x accordingly...)
set(gca,'YScale','log');

% you might have to flip the axis direction
set(gca,'YDir','normal');

% you probably want to adjust the image aspect ratio.
set(gca,'DataAspectRatio',[1 70 1]);

note: xmin, xmax, ymin, and ymax are the limits of the axes. replace them manually with the values of your figure.
now you have a matlab reproduction of the figure, you like to have the data from.

3) "grab" the coordinates of a number of data points (npoints):

[x,y] = ginput(npoints)

move the mouse to the respective data points and (left) click. when clicked npoints, x and y coordinates of the npoints points in the plot's system are now stored in vectors x and y, respectively.
</code>
24楼2016-09-06 10:53:16
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
查看全部 27 个回答

kangye_1989

木虫 (著名写手)

【答案】应助回帖


感谢参与,应助指数 +1
亮子野心: 金币+1 2016-09-01 13:57:49
这个东西都是测完直接让分析老师量出来再出图的
2楼2016-09-01 13:14:13
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

450697740

铁杆木虫 (正式写手)

king

【答案】应助回帖


感谢参与,应助指数 +1
亮子野心: 金币+1 2016-09-01 13:57:36
倍数太小了,还可以更大,可以自己测量啊,不难吧
格局
3楼2016-09-01 13:23:25
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

亮子野心

新虫 (小有名气)

引用回帖:
3楼: Originally posted by 450697740 at 2016-09-01 13:23:25
倍数太小了,还可以更大,可以自己测量啊,不难吧

小白一枚,请问你是用什么软件测量的,老师让测一百多个,一个一个是不是太麻烦了
4楼2016-09-01 13:43:06
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
信息提示
请填处理意见