Image rotation along the frame

1 Ansicht (letzte 30 Tage)
Kiran Pandiri
Kiran Pandiri am 1 Sep. 2020
Kommentiert: Mohammad Sami am 4 Sep. 2020
I am trying to rotate an image but the out image has the black background at the tilted edges. I have attached both the input and output images. In the output image there is black background after rotation of the image. Could you please suggest how to avoid this. I need only my image in that place. When you see the brick.000 and brick.030 images even after rotation there is no black background in brick.030

Antworten (1)

Mohammad Sami
Mohammad Sami am 1 Sep. 2020
You have to crop the image to get rid of the black border. If you want to get the same size as the input image the you have to resize it after cropping.
See this answer for more details. https://stackoverflow.com/questions/5789239/calculate-largest-rectangle-in-a-rotated-rectangle#7519376
  2 Kommentare
Kiran Pandiri
Kiran Pandiri am 3 Sep. 2020
Hi Sami,
Thank you for the response. I have checked the code in stackoverflow and it gives an error at the line
tl = round(max(size(B)/2 - hw/2,1));
because of the dimensions mismatch. I have tried to resolve it but not able to get the output.
Mohammad Sami
Mohammad Sami am 4 Sep. 2020
Change it to as follows. The size mismatch is due to author not considering the color (3rd) dimension.
tl = round(max(size(B,[1 2])/2 - hw/2,1));

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Geometric Transformation and Image Registration finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by