how to find derivative of an image with respect to x and y axis ?
1 回表示 (過去 30 日間)
古いコメントを表示
i have matlab code for an image matrix as given below and i have to find derivative along x and y axis then how to get?
m=1000; n=m; f1=20; f2=0; for i=1:m; for j=1:n; a(i,j)=exp(1i*2*pi*(f1*j/n+f2*i/m)); end end subplot(2,2,2),imshow(a,[]);
1 件のコメント
Rik
2017 年 2 月 22 日
You should also have a look at the documentation for diff and meshgrid
doc diff
doc meshgrid
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Modify Image Colors についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!