Calculating the Minimum and The Maximum of a Slidig Window
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Royi Avital
el 23 de Abr. de 2014
Respondida: Matt J
el 11 de Sept. de 2014
Hello,
How would you create the fastest implementation to extract the Minimum and the Maximum of a Local Sliding Window over an image?
So far I used this:
localMaxImage = colfilt(inputImage, [winLength winLength], 'sliding', @max);
localMinImage = colfilt(inputImage, [winLength winLength], 'sliding', @min);
Yet it is really slow. I know I can use `imerode` and `imdilate`, Yet I'm looking for a toolbox free implementation. Thank You.
2 comentarios
José-Luis
el 8 de Sept. de 2014
Editada: Image Analyst
el 11 de Sept. de 2014
Royi, you have asked 23 questions in this forum so far and not accepted a single one. Have you had bad luck with your answers? If not, seeing that might make contributors here less inclined to help you.
Respuesta aceptada
Matt J
el 11 de Sept. de 2014
I've never used it, but this FEX contribution is MEX-driven, and so should be fast
0 comentarios
Más respuestas (1)
Anand
el 11 de Sept. de 2014
What do you mean toolbox-free? colfilt is also from the Image Processing Toolbox. Can you use ordfilt2
localMaxImage = ordfilt2(inputImage, winLength^2, true(winLength));
localMinImage = ordfilt2(inputImage, 1 , true(winLength));
This should be faster than colfilt, but maybe you can't use it.
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!