Applying Two Filters on Same Image
13 ビュー (過去 30 日間)
古いコメントを表示
Is it possible to apply two filters in different locations of the same image? If so, how could I resolve it?
0 件のコメント
回答 (1 件)
Walter Roberson
2013 年 3 月 25 日
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) );
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!