Community Profile

photo

Lewis Laurence


Last seen: 1 month 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计数据

  • Thankful Level 2
  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


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; ...

2 years 前 | 1 个回答 | 0

1

个回答

提问


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(...

2 years 前 | 1 个回答 | 0

1

个回答

提问


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(:,:,...

2 years 前 | 1 个回答 | 0

1

个回答