Info
This question is closed. Reopen it to edit or answer.
OK, this is true ?multiplying scalar 'k' by matrix 'v'
1 view (last 30 days)
Show older comments
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
Answers (1)
Image Analyst
on 28 Sep 2013
I don't see v * k anywhere in your code, so I guess the answer is no.
1 Comment
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!