Can I use diff function to subtract pixel from 2-pixel away from it? So it not neighbour pixel.
3 ビュー (過去 30 日間)
古いコメントを表示
Can I use diff function to subtract pixel from 2-pixel away from it? So it not neighbour pixel.
0 件のコメント
採用された回答
Walter Roberson
2013 年 2 月 18 日
No.
I suggest you use
diff2_col = YourArray(:,3:end) - YourArray(:,1:end-2)
or
diff2_row = YourArray(3:end,:) - YourArray(1:end-2,:)
depending on which dimension you want to proceed across.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!