Info
This question is locked. Rouvrir pour modifier ou répondre.
the 2d convolution result dosen't match my expectation
37 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MatLaBGuYSomewhere
le 26 Oct 2018
Locked: Rena Berman
le 24 Oct 2025 à 11:25
%i
x = 1:317;
y = 1:317;
[xx,yy] = meshgrid(x,y);
z = (xx-158.5).^2+(yy-158.5).^2;
circle = zeros(317,317);
for i = 1:317
for j = 1: 317
if z(j,i) < 158.5^2
circle(j,i) = 1;
end
end
end
c = conv2(circle,circle);
c = c./max(c);
imshow(c)
I use simple code, simple object. However the result isn't correct.
Why did this result come out?
p.s. The second image is square and square case.
1 commentaire
Réponse acceptée
Bruno Luong
le 26 Oct 2018
Modifié(e) : Bruno Luong
le 26 Oct 2018
Not sure what is your expectation, and intention but shooting on the dark, try to replace
c = c./max(c);
with
c = c./max(c(:));
1 commentaire
Plus de réponses (0)
This question is locked.
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements 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!