OpenCV is a library of programming functions mainly aimed at real-time computer vision. cv2.transpose()
method is used to transpose a 2D array. The function cv::transpose rotate the image 90 degrees Counter clockwise.
Syntax: cv2.cv.transpose( src[, dst] )
Parameters:
src: It is the image whose matrix is to be transposed.
dst: It is the output image of the same size and depth as src image. It is an optional parameter.
Return Value: It returns an image.
Image used for all the below examples:

Example:
import cv2
path = r 'C:\Users\user\Desktop\geeks14.png'
src = cv2.imread(path)
window_name = 'Image'
image = cv2.transpose(src)
cv2.imshow(window_name, image)
cv2.waitKey( 0 )
|
Output:

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
03 Jan, 2023
Like Article
Save Article