Taking a special image derivative using convolution
1 次查看(过去 30 天)
显示 更早的评论
I have two images at different times. The first image is im1 at time t1 and the second image is im2 at time t2. I want to take the spatial derivative with respect to x. Could someone help me understand the following MATLAB code?
fx = conv2(im1, 0.25 * [-1 1; -1 1]) + conv2(im2, 0.25 *[-1 1; -1 1]);
I would be thankful to if someone can shed light on this kernel. What type of image derivative the above mentioned code is?
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!