Effacer les filtres
Effacer les filtres

How can I find all zeros in a 2d matrix and change those values by interpolating with the closest available values ?

5 vues (au cours des 30 derniers jours)
For example, A=

Réponse acceptée

Image Analyst
Image Analyst le 8 Juin 2017
You could use regionfill(), if you have the Image Processing Toolbox, to do it in a single line of code:
outputArray = regionfill(inputArray, inputArray == 0);

Plus de réponses (1)

Walter Roberson
Walter Roberson le 7 Juin 2017
[gr, gc, gv] = find(A);
F = scatteredInterpolant(gr, gc, gv);
[br, bc] = find(~A);
replacements = F(br, bc);
A( sub2ind(size(A), br, bc) ) = replacements;

Catégories

En savoir plus sur Matrices and Arrays 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