rotate an image segment without background

조회 수: 4 (최근 30일)
Busy Bee
Busy Bee 2018년 2월 10일
편집: Matt J 2018년 2월 11일
I have a BW image. I just want to rotate the polygon in the image. (The polygon rotates about its centroid.) But when I do, the background also rotates and more black pixels are added by default also the size of the polygon is changing. I want all the background as white. Any help is appreciated.
  댓글 수: 1
Image Analyst
Image Analyst 2018년 2월 10일
Do you already HAVE the centroid? If so, give it to us so we can give you the code. Otherwise imrotate() will just rotate around the center of the image, not around the center of the shape. If you don't have it, then use regionprops() to ask for it, and if you can't do that, let us know and we'll show you. And remember (x,y) equals (column, row), not (row, column).

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
Matt J 2018년 2월 10일
편집: Matt J 2018년 2월 11일
Instead of performing the rotation on BW, apply it to ~BW. Then take the complement of that result,
result = ~rotationFunction(~BW, angle);

Community Treasure Hunt

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

Start Hunting!

Translated by