Community Profile

photo

Lewis Laurence


Last seen: 17 Tage vor Aktiv seit 2022

Statistiken

  • Thankful Level 2
  • Thankful Level 1

Abzeichen anzeigen

Content Feed

Anzeigen nach

Frage


code does not seem to work but is not giving any errors
I=imread('phonebox2_noisy.bmp'); a=I; [row, col, channel]=size(a); red=a(:,:,1); green=a(:,:,2); blue=a(:,:,3); a1 = red; ...

etwa 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how could i turn this into a 5 by 5 filter
I= imread('peppers.png'); I2=I; [r, c,]=size(I); for i = 2:r-1 for j = 2: c-1 uint8=[I(i-1,j-1),I(i-1,j),I(...

etwa 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


I have created an algorithm for a median RGB image filter, however, it doesn't seem to be working.
clc I =imread('phonebox2_noisy.bmp'); I = double(I); [row, col, dim]=size(w); red= I(:,:,1); green= I(:,:,2); blue= I(:,:,...

etwa 2 Jahre vor | 1 Antwort | 0

1

Antwort