Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Basic Transformations | Image Processing with OpenCV
Computer Vision Course Outline
course content

Course Content

Computer Vision Course Outline

Computer Vision Course Outline

1. Introduction to Computer Vision
2. Image Processing with OpenCV
3. Convolutional Neural Networks

book
Basic Transformations

OpenCV (Open Source Computer Vision Library) is a powerful open-source library designed for real-time computer vision and image processing. It provides tools for manipulating images, detecting objects, and even working with deep learning models.

Reading and Displaying an Image

Before performing transformations, let's first load and display an image using OpenCV. We have already imported the photo. But in your local computer for simple reading and displaying the photo you should use:

Resizing an Image

Resizing is useful for scaling images up or down while maintaining aspect ratio: cv2.resize(image, (0, 0), fx=0.5, fy=0.5), where fx and fy define the scaling factor for width and height.

You can also specify exact pixel dimensions: cv2.resize(image, (1000, 1200)), where (1000, 1200) is the output shape.

Rotating an Image

To rotate an image by a specific angle, we use cv2.getRotationMatrix2D() and cv2.warpAffine().

cv2.getRotationMatrix2D(center, angle, scale) defines the rotation matrix.

cv2.warpAffine(image, matrix, output_size) applies the transformation.

Cropping an Image

Cropping extracts a specific region from an image. It’s done using NumPy slicing. The syntax image[h_start:h_end, w_start:w_end] selects a region of interest.

Task

Swipe to start coding

You need to create three images:

  • resized to a (100, 100) shape;
  • rotated 90 degrees clockwise;
  • cropped from the X: 250-600 and Y: 100-450 region.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 2. Chapter 1
toggle bottom row

book
Basic Transformations

OpenCV (Open Source Computer Vision Library) is a powerful open-source library designed for real-time computer vision and image processing. It provides tools for manipulating images, detecting objects, and even working with deep learning models.

Reading and Displaying an Image

Before performing transformations, let's first load and display an image using OpenCV. We have already imported the photo. But in your local computer for simple reading and displaying the photo you should use:

Resizing an Image

Resizing is useful for scaling images up or down while maintaining aspect ratio: cv2.resize(image, (0, 0), fx=0.5, fy=0.5), where fx and fy define the scaling factor for width and height.

You can also specify exact pixel dimensions: cv2.resize(image, (1000, 1200)), where (1000, 1200) is the output shape.

Rotating an Image

To rotate an image by a specific angle, we use cv2.getRotationMatrix2D() and cv2.warpAffine().

cv2.getRotationMatrix2D(center, angle, scale) defines the rotation matrix.

cv2.warpAffine(image, matrix, output_size) applies the transformation.

Cropping an Image

Cropping extracts a specific region from an image. It’s done using NumPy slicing. The syntax image[h_start:h_end, w_start:w_end] selects a region of interest.

Task

Swipe to start coding

You need to create three images:

  • resized to a (100, 100) shape;
  • rotated 90 degrees clockwise;
  • cropped from the X: 250-600 and Y: 100-450 region.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 2. Chapter 1
Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
We're sorry to hear that something went wrong. What happened?
some-alt