How to copy one rgb image to another?

2 次查看(过去 30 天)
How to copy the rgb image inside yellow rectangle to a blank rgb image? I know the coordinates of the rectangle.

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2015-2-4
you can extract your image im
a=im(x0:x1,y0:y1,:)
  3 个评论
Guillaume
Guillaume 2015-2-4
Assuming that x is the horizontal coordinate, and y is the vertical coordinate with (1,1) top left corner, then it should be:
a = im(y0:y1, x0:x1, :); %matlab uses row/column coordinate system
Ashwathy, this is basic matrix manipulation. What don't you understand?
Ashwathy Dev
Ashwathy Dev 2015-2-4
Thank a lot ............... :)))))) it workeddddddddddddd

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by