一维数据转为二维图像数据
for i = 1:rowsfor j = 1:cols
image2(i,j) = image((i-1)*cols+j);
end
end
读进来为一位数据。但数据量大的话转得很慢(不像reshape函数那样快,但是reshape还需要转置)
如何自己编写代码快速化呢??? reshape再转置, image2=(reshape(image))
使用了双回圈当然会变慢! 若一定要用, 试试先初始化!
image2=zeros(rows,cols); for i = 1:rows, for j = 1:cols, image2(i,j) = image((i-1)*cols+j); end; end
或少个回圈
image2=zeros(rows,cols); for i = 1:rows, image2(i,:) = image((i-1)*cols+1:i*cols); end
[ 本帖最后由 ChaChing 于 2009-9-16 21:22 编辑 ] 原帖由 ChaChing 于 2009-9-16 21:17 发表 http://www.chinavib.com/forum/images/common/back.gif
reshape再转置, image2=(reshape(image))
使用了双回圈当然会变慢! 若一定要用, 试试先初始化!
image2=zeros(rows,cols); for i = 1:rows, for j = 1:cols, image2(i,j) = image((i-1)*cols+j); end; end
或少个回 ...
有所启发。。。
回复 板凳 yangfanxing__ 的帖子
有所启发是个人最喜欢看到的~ 原帖由 ChaChing 于 2009-9-17 22:53 发表 http://www.chinavib.com/forum/images/common/back.gif有所启发是个人最喜欢看到的~
呵呵:victory: 谢谢~
页:
[1]