How can I carry out Image Transformation for the following image?

2 vues (au cours des 30 derniers jours)
KATHAN BHAVSAR
KATHAN BHAVSAR le 27 Mar 2023
Commenté : Image Analyst le 12 Avr 2023
I want to do image transformation for the following image. The image is taken at a 5 Degree angle to the vertical. I want to obtain the image on a flat plane perpendicular to the viewing angle. Bascially, I want to transform the image within this viewing plane to angle of 5 degrees so I can see the true shape of the image. Please could you help me with a code for the same.

Réponse acceptée

Image Analyst
Image Analyst le 27 Mar 2023
You can't. Sure, you can warp the image like with these
but at your angle you can see the front of the cylinder. There is no way to transform that image so that the front of the cylinder is no longer visible and you can't see the front of the cylinder and are looking straight down on it. I suggest you actually move the camera.
Also, your lighting is horrible. I suggest you fix the lighting.
  2 commentaires
KATHAN BHAVSAR
KATHAN BHAVSAR le 12 Avr 2023
@Image Analyst Can I just transform or rotate the image by a certain degree angle (say 5 degree) towards me as I am looking from the top, it doesnt matter to me to see it from the top so that the front of the cylinder is no longer visible and you can't see the front of the cylinder and are looking straight down on it. I just want the image titled to me from that angle. I have the image taken straight from top as well and at an angle (as above), so I know the dimensions of the characteristics of the image in reality, anyway I could use this to gain similar characterisitcs of the above image?
Image Analyst
Image Analyst le 12 Avr 2023
Sure but the image would just look like the present image but with the same width and the number of rows equal to cosine of the angle times the original number of rows. So you could use imresize to do that. However it will merely look like a shorter version of the original image and what good is that?
[rows, columns, numberOfColorChannels] = size(rgbImage);
newRows = round(cosd(5) * rows);
newImage = imresize(rgbImage, [newRows, columns]);

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Geometric Transformation and Image Registration dans Help Center et File Exchange

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by