我正在寻找另一种bin2dec转换方法来加速我的code.bin2dec函数需要2.5到3秒的运行时间。是否有任何解决方案。 这是我的代码:
img = imread('cameraman.tif');
D1=256;D2=256;
img = dec2bin(img(:)).';
I = reshape(permute(reshape(imgD, 8, [], D2), [2,1,3]), D1, D2 * 8);
(处理)
a1{D1,D2} = [];
for i=1:1:D1
for j=1:1:D2
a1{i,j,1}=I(i,:,j);
end
end
C1 = bin2dec(a1);
是否有加速bin2dec
功能并使运行时间低于0.2秒甚至更好,因为我的应用程序每毫秒计算一次?