I want to rotate YUV420SP image by 90 counter clockwise. Image size is 640*480, so the rotated image size becomes 480*640 which i don't want, So i want to extract 480*480 data (or any other square size) and rotate that data.
I have seen : Rotate an YUV byte array on Android
But this answer rotates 90 clockwise.
Can somebody suggest some function which rotates YUV420Sp data by 90(counter clockwise) or by 270 degrees (clockwise) without changing image dimensions.
OK, here's my native code that evolved after much banging of the head.
My difficulty was that I didn't understand planar image formats until I saw this and this:
Here are the 2 functions I eventually wrote:
And here is a sample of me calling these funcs from android native:
Notice the last param to the
rotateChromaPlane90
is the height of the original image/2. I should probably just change the chroma rotate function to make that less error-prone.When flipped to the back facing camera I then found I needed to rotate 90* in the opposite direction (or 270*) so I also have a 270* variation as: