diagonal pixel differences of image matrix
显示 更早的评论
is there any method to get the diagonal pixel differences(left right diagonal) of a image matrix.for example , i have to obtain [-8 -2 -4;4 2 -16;0 2 4] from [2 1 8 24;9 10 3 12;2 5 8 19;1 2 3 4]
采纳的回答
更多回答(1 个)
Teja Muppirala
2013-9-17
b = [2 1 8 24;9 10 3 12;2 5 8 19;1 2 3 4];
conv2(b,[-1 0; 0 1],'valid')
2 个评论
Andrei Bobrov
2013-9-17
Hi Teja! +1. I again forgotten about conv.
Teja Muppirala
2013-9-17
Hello Andrei! conv is simpler, but your solution is definitely more creative and interesting.
类别
在 帮助中心 和 File Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!