Borrar filtros
Borrar filtros

Is there a variant of nlfilter for color images?

4 visualizaciones (últimos 30 días)
Przemyslaw
Przemyslaw el 6 de Dic. de 2023
Editada: DGM el 6 de Dic. de 2023
I need to perform quite a complex operation on color image using sliding window way. Is there any variant for RGB images?

Respuesta aceptada

DGM
DGM el 6 de Dic. de 2023
Editada: DGM el 6 de Dic. de 2023
No, there's not. As far as I'm concerned, nlfilter() is usually not worth using. It's slow, it's crippled by its lack of edge handling options and RGB support. The stupid waitbar dialog makes it unusable in the forum and elsewhere and only wastes extra time.
Nlfilter() is a convenience with compromises for when you just need to write a quick and dirty filter that you're never going to use again. If you need it more than once, just write the filter routine yourself. It can easily be more capable, and while it may still be slow, it will typically be (a bit) faster than nlfilter().
% read the image
inpict = imread('peppers.png');
% parameters
windowsize = [5 5]; % or whatever size
% pad the image to mitigate edge effects
padsize = floor(windowsize/2);
paddedimage = padarray(inpict,padsize,'replicate','both');
% process the image
s0 = size(inpict);
outpict = zeros(s0,class(inpict));
os = windowsize-1;
for m = 1:s0(1)
for n = 1:s0(2)
% you have access to all three channels here
sample = paddedimage(m:(m+os(1)),n:(n+os(2)),:); % extract this window
outpict(m,n,:) = median(sample,1:2); % apply whatever function
end
end
% show the result
imshow(outpict)
Depending on what the applied function is, you may want to use im2double() on the image prior to processing.
Maybe this is something I should add to MIMT, but it's hard to make something that's both simple and well-generalized. Ultimately, the flexible solution that covers all cases is to just write the filter routine as needed.

Más respuestas (1)

Image Analyst
Image Analyst el 6 de Dic. de 2023
You can use imsplit and then operate on each individual color channel. Or you could transform to LAB color space and operate only on the L channel, or you could transform to HSV color space and operate on the V channel. rgb2lab rgb2hsv
What exactly do you want to do to the image?
  2 comentarios
Przemyslaw
Przemyslaw el 6 de Dic. de 2023
Unfortunately I need access to all the color channels as input. Then combine them in a way involving all three channels and output is also three valued vector for every pixel.
For now I think I will rework orignal matlab function to make it rgb compatible..
Image Analyst
Image Analyst el 6 de Dic. de 2023
Why do you say "unfortunately" as if I said something wrong? You can get all the color channels like this:
[R, G, B] = imsplit(rgbImage);
You have access to them. Now do something with R, G, and B and then "combine" as you said. Maybe you combine them in some weighted fashion, or maybe you just use cat
rgbImage2 = cat(3, R, G, B);
But it depends on what you want to do as to whether tha makes sense. For example if you want to do contract enhancement, you would not want to do it on each channel independently because that would change colors. You'd want to convert to another color space and do it on the L or V channel, then convert back to RGB. For other things you might be able to stay in the RGB color space.
But you're being mysterious about exactly what you want to do so I can't give advice on your approach.

Iniciar sesión para comentar.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by