Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • Open CV
  • scikit-image
  • pycairo
  • Pyglet
  • Python
  • Numpy
  • Pandas
  • Python Database
  • Data Analysis
  • ML Math
  • Machine Learning
  • NLP
  • Deep Learning
  • Deep Learning Interview Questions
  • ML Projects
  • ML Interview Questions
  • 100 Days of Machine Learning
Open In App
Next Article:
Python OpenCV - getTrackbarPos() Function
Next article icon

Python OpenCV - getRotationMatrix2D() Function

Last Updated : 04 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

cv2.getRotationMatrix2D() function is used to make the transformation matrix M which will be used for rotating a image.

Syntax: 

cv2.getRotationMatrix2D(center, angle, scale)

Parameters: 

  • center: Center of rotation
  • angle(θ): The angle of rotation in degrees. A positive value rotates the image anti-clockwise, while a negative value rotates the image clockwise.
  • scale: scaling factor which scales the image

Return: 2x3 Rotation Matrix M

M = \begin{bmatrix}\alpha & \beta & (1-\alpha)\cdot c_x-\beta \cdot c_y\\-\beta & \alpha & \beta\cdot c_x+(1-\alpha) \cdot c_y\end{bmatrix}

where,

\alpha = scale\cdot cos(\theta)\\\beta = scale\cdot sin(\theta)\\c_x\ and\ c_y\ are\ the\ coordinates\ of\ the\ center\ of\ the\ image.\\

This is a type of affine transformation. An affine transformation is transformation which preserves lines and parallelism. These transformation matrix are taken by warpaffine() function as parameter and the rotated image will be returned.

Image Used:

Example 1:

Python
import cv2  # Reading the image image = cv2.imread('image.jpeg')  # Extracting height and width from  # image shape height, width = image.shape[:2]  # get the center coordinates of the # image to create the 2D rotation # matrix center = (width/2, height/2)  # using cv2.getRotationMatrix2D()  # to get the rotation matrix rotate_matrix = cv2.getRotationMatrix2D(center=center, angle=90, scale=1)  # rotate the image using cv2.warpAffine  # 90 degree anticlockwise rotated_image = cv2.warpAffine(     src=image, M=rotate_matrix, dsize=(width, height))  cv2.imshow("rotated image:", rotated_image) cv2.imwrite('rotated_image.jpg', rotated_image) 

Output-

Example 2:

Python
import cv2  # Reading the image image = cv2.imread('image.jpeg')  # Extracting height and width from  # image shape height, width = image.shape[:2]  # get the center coordinates of the  # image to create the 2D rotation matrix center = (width/2, height/2)  # using cv2.getRotationMatrix2D() to get # the rotation matrix rotate_matrix = cv2.getRotationMatrix2D(center=center, angle=-90, scale=1)  # rotate the image using cv2.warpAffine 90  # degree clockwise rotated_image = cv2.warpAffine(     src=image, M=rotate_matrix, dsize=(width, height))  cv2.imshow("rotated image:",rotated_image) cv2.imwrite('rotated_image.jpg', rotated_image) 

Output-

Python
import cv2  # Reading the image image = cv2.imread('image.jpeg')  # Extracting height and width from image shape height, width = image.shape[:2]  # get the center coordinates of the image to  # create the 2D rotation matrix center = (width/2, height/2)  # using cv2.getRotationMatrix2D() to get  # the rotation matrix rotate_matrix = cv2.getRotationMatrix2D(center=center, angle=180, scale=1)  # rotate the image using cv2.warpAffine 180  # degree anticlockwise rotated_image = cv2.warpAffine(     src=image, M=rotate_matrix, dsize=(width, height))  cv2.imshow("rotated image:", rotated_image) cv2.imwrite('rotated_image.jpg', rotated_image) 

Output-

Example 4:

Python
import cv2  # Reading the image image = cv2.imread('image.jpeg')  # Extracting height and width from image shape height, width = image.shape[:2]  # get the center coordinates of the image to # create the 2D rotation matrix center = (width/2, height/2)  # using cv2.getRotationMatrix2D() to get the # rotation matrix rotate_matrix = cv2.getRotationMatrix2D(center=center, angle=-180, scale=1)  # rotate the image using cv2.warpAffine 180 # degree clockwise rotated_image = cv2.warpAffine(     src=image, M=rotate_matrix, dsize=(width, height))  cv2.imshow("rotated image:", rotated_image) cv2.imwrite('rotated_image.jpg', rotated_image) 

Output - 


Next Article
Python OpenCV - getTrackbarPos() Function

B

bhavyajain4641
Improve
Article Tags :
  • Python
  • Computer Vision
  • AI-ML-DS
  • OpenCV
  • Python-OpenCV
Practice Tags :
  • python

Similar Reads

  • Essential OpenCV Functions to Get Started into Computer Vision
    Computer vision is a process by which we can understand the images and videos how they are stored and how we can manipulate and retrieve data from them. Computer Vision is the base or mostly used for Artificial Intelligence. Computer-Vision is playing a major role in self-driving cars, robotics as w
    7 min read
  • cv2.imread() method - Python OpenCV
    OpenCV-Python is a Python library used to solve computer vision tasks. cv2.imread() method loads an image from the specified file. If the image cannot be read because of missing file, improper permissions or an unsupported/invalid format then it returns an empty matrix. Example: [GFGTABS] Python imp
    2 min read
  • Python OpenCV | cv2.imshow() method
    OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.imshow() method is used to display an image in a window. The window automatically fits the image size.  Syntax: cv2.imshow(window_name, image)Parameters: window_name: A string representing the name of the w
    3 min read
  • Python OpenCV | cv2.cvtColor() method
    OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.cvtColor() method is used to convert an image from one color space to another. There are more than 150 color-space conversion methods available in OpenCV. We will use some of color space conversion codes be
    4 min read
  • Python OpenCV | cv2.imwrite() method
    OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.imwrite() method is used to save an image to any storage device. This will save the image according to the specified format in current working directory. Syntax: cv2.imwrite(filename, image) Parameters:file
    2 min read
  • Python OpenCV | cv2.rectangle() method
    OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.rectangle() method is used to draw a rectangle on any image. Syntax: cv2.rectangle(image, start_point, end_point, color, thickness) Parameters:image: It is the image on which rectangle is to be drawn. start
    4 min read
  • Python OpenCV | cv2.circle() method
    OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.circle() method is used to draw a circle on any image. The syntax of cv2.circle() method is: Syntax:  cv2.circle(image, center_coordinates, radius, color, thickness) Parameters:  image: It is the image on w
    3 min read
  • Python OpenCV | cv2.line() method
    OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.line() method is used to draw a line on any image. Syntax: cv2.line(image, start_point, end_point, color, thickness) Parameters: image: It is the image on which line is to be drawn.  start_point: It is the
    3 min read
  • Python OpenCV | cv2.putText() method
    OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.putText() method is used to draw a text string on any image. Syntax: cv2.putText(image, text, org, font, fontScale, color[, thickness[, lineType[, bottomLeftOrigin]]]) Parameters:image: It is the image on w
    5 min read
  • Line detection in python with OpenCV | Houghline method
    The Hough Transform is a method that is used in image processing to detect any shape, if that shape can be represented in mathematical form. It can detect the shape even if it is broken or distorted a little bit.We will see how Hough transform works for line detection using the HoughLine transform m
    6 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences