How to replace image portion with processed image?

2 ビュー (過去 30 日間)
rupam baruah
rupam baruah 2015 年 12 月 9 日
コメント済み: Image Analyst 2018 年 11 月 24 日
I have one rgb image. I crop one portion by using imcrop function. After lots of processing I want to place that processed portion into the same place of the orginal image. How can I do that. I tried by using imfusion but its not worked.

採用された回答

Image Analyst
Image Analyst 2015 年 12 月 9 日
Since you cropped it, you know what the starting and stopping rows and columns are. So just assign:
originalImage(row1:row2, col1:col2, :) = processedImage;
  4 件のコメント
rupam baruah
rupam baruah 2015 年 12 月 9 日
Yes. I got it. Thank you Sir.
Subhadeep Koley
Subhadeep Koley 2018 年 2 月 8 日
Thank you Image Analyst

サインインしてコメントする。

その他の回答 (1 件)

Gosselin Thibault
Gosselin Thibault 2018 年 7 月 12 日
Hello everybody ! Sorry to view this long date post only but i've the same problem and your solution don't work on my program.
I have this error message : "Unable to perform assignment because the size of the left side is 118-by-325 and the size of the right side is 912-by-1200."
for this line code : Icrop1(row1:row2, col1:col2) = I;
Thank you for your help !!
  4 件のコメント
Duyen Ho
Duyen Ho 2018 年 11 月 24 日
how did you fix the problem? im getting the same error
Image Analyst
Image Analyst 2018 年 11 月 24 日
He said he had
processedImage(row1:row2, col1:col2, :) = originalImage;
when he should have had
originalImage(row1:row2, col1:col2, :) = processedImage;
like I said. When he "interchanged the originalImage and the processedImage" he got my code and it worked. In short, the bigger matrix is on the left, and the smaller submatrix is on the right.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeImage Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by