Effacer les filtres
Effacer les filtres

Can I use diff function to subtract pixel from 2-pixel away from it? So it not neighbour pixel.

2 vues (au cours des 30 derniers jours)
Can I use diff function to subtract pixel from 2-pixel away from it? So it not neighbour pixel.

Réponse acceptée

Walter Roberson
Walter Roberson le 18 Fév 2013
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.

Plus de réponses (0)

Catégories

En savoir plus sur Geometric Transformation and Image Registration dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by