Info
この質問は閉じられています。 編集または回答するには再度開いてください。
OK, this is true ?multiplying scalar 'k' by matrix 'v'
1 回表示 (過去 30 日間)
古いコメントを表示
such as
Z = zeros(size(W1));
kernel = [Z, W1, Z; W3, Z, W4; Z, W2, Z];
filtered = conv2(vk, kernel, 'same');
vk = (1-w)*vk + filtered./W;
where 'k' is iteration
'v' is matrix
回答 (1 件)
Image Analyst
2013 年 9 月 28 日
I don't see v * k anywhere in your code, so I guess the answer is no.
1 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!