私はFreeMatを使用しています。3D マトリックスであるRGB画像には、画像の列と行、および各ピクセルの RGB 値が含まれています。
RGB画像をYIQに変換する組み込み関数がないため、実装しました。私はこのコードを思いつきました:
3D 配列があるとしimage_rgb
ます。
matrix = [0.299 0.587 0.114;
0.596 -0.274 -0.322;
0.211 -0.523 0.312];
row = 1:length(image_rgb(:,1,1));
col = 1:length(image_rgb(1,:,1));
p = image_rgb(row,col,:);
%Here I have the problem
mage_yiq(row,col,:) = matrix*image_rgb(row,col,:);
max_y = max (max(image_yiq(:,:,1)));
max_i = max (max(image_yiq(:,:,2)));
max_q = max (max(image_yiq(:,:,3)));
%Renormalize the image again after the multipication
% to [0,1].
image_yiq(:,:,1) = image_yiq(:,:,1)/max_y;
image_yiq(:,:,2) = image_yiq(:,:,2)/max_i;
image_yiq(:,:,3) = image_yiq(:,:,3)/max_q;
行列の乗算が失敗する理由がわかりません。行列を手で掛けるだけでなく、コードを素敵にしたい...