Monday, September 8, 2025
HomeLanguagesPython OpenCV – cv2.transpose() method

Python OpenCV – cv2.transpose() method

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:




# Python program to explain cv2.transpose() method
  
# importing cv2
import cv2
  
# path
path = r'C:\Users\user\Desktop\Lazyroar14.png'
  
# Reading an image in default mode
src = cv2.imread(path)
  
# Window name in which image is displayed
window_name = 'Image'
  
# Using cv2.transpose() method
image = cv2.transpose(src)
  
# Displaying the image
cv2.imshow(window_name, image)
cv2.waitKey(0)


Output:

RELATED ARTICLES

Most Popular

Dominic
32271 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6644 POSTS0 COMMENTS
Nicole Veronica
11808 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11871 POSTS0 COMMENTS
Shaida Kate Naidoo
6755 POSTS0 COMMENTS
Ted Musemwa
7030 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS