M*******r 发帖数: 165 | 1 最近拿到一些tumor, vessel图像,想把这些图像做成1000x1000像素大小,然后根据每
个点的颜色做成一个1000x1000的double矩阵
我是做cancer model的,没做过图像处理……
请问有什么solution么 |
b********r 发帖数: 295 | 2 you can use a software called Matlab. the functions involved are very simple
and direct.
Let me know if you need further help. |
M*******r 发帖数: 165 | 3 it should be simple to read pixels' info into a matrix.
I searched the help file, it came out 200 results....
could you tell me which function should be used? very thanks.
simple
【在 b********r 的大作中提到】 : you can use a software called Matlab. the functions involved are very simple : and direct. : Let me know if you need further help.
|
b********r 发帖数: 295 | 4 such as function: 'imread'
the input is the file name, the output the the pixel inforamtion matrix.
for example:
I=imread('C:\mypics\image_1.png');
【在 M*******r 的大作中提到】 : it should be simple to read pixels' info into a matrix. : I searched the help file, it came out 200 results.... : could you tell me which function should be used? very thanks. : : simple
|
A***l 发帖数: 461 | 5 用什么机器拿到的图像?1000×1000很高了。通常我们都做512就不得了了,如果多就
分解开,否
则处理起来很麻烦。
【在 M*******r 的大作中提到】 : 最近拿到一些tumor, vessel图像,想把这些图像做成1000x1000像素大小,然后根据每 : 个点的颜色做成一个1000x1000的double矩阵 : 我是做cancer model的,没做过图像处理…… : 请问有什么solution么
|