Applying Two Filters on Same Image

11 visualizaciones (últimos 30 días)
Jerome
Jerome el 25 de Mzo. de 2013
Is it possible to apply two filters in different locations of the same image? If so, how could I resolve it?

Respuestas (1)

Walter Roberson
Walter Roberson el 25 de Mzo. de 2013
Yes.
overall_output_image = input_image;
overall_output_image(r1a:r1b, c1a:c1b) = first_filter( input_image(r1a:r1b, c1a:c1b) );
overall_output_image(r2a:r2b, c2a:c2b) = second_filter( input_image(r2a:r2b, c2a:c2b) );

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by