Statistik
3 Fragen
0 Antworten
RANG
111.441
of 297.560
REPUTATION
0
BEITRÄGE
3 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
66.67%
ERHALTENE STIMMEN
0
RANG
of 20.456
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 159.148
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
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 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 3 Jahre vor | 1 Antwort | 0