Create a Thumbnail for Images in C++

A detailed guide on how to create a thumbnail for images in C++ using the OpenCV library. This article will help you understand how to process images and easily resize them to create thumbnails.

In this article, we will learn how to create thumbnails for images using the OpenCV library in C++. We will load an image, resize it, and save the modified image as a new file.

C++ code

#include <opencv2/opencv.hpp>
#include <iostream>

int main() {
    // Read image from file
    cv::Mat image = cv::imread("input.jpg");
    
    // Check if the image is loaded successfully
    if (image.empty()) {
        std::cerr << "Cannot open or find the image file!" << std::endl;
        return -1;
    }

    // Create thumbnail with new size
    cv::Mat thumbnail;
    cv::resize(image, thumbnail, cv::Size(150, 150)); // Resize to 150x150

    // Save the thumbnail image
    cv::imwrite("thumbnail.jpg", thumbnail);

    std::cout << "Thumbnail created and saved successfully!" << std::endl;

    return 0;
}

Detailed explanation

  • #include <opencv2/opencv.hpp>: Include the OpenCV library to use image processing functions.
  • cv::imread("input.jpg"): Read the image from the file input.jpg.
  • if (image.empty()) {...}: Check if the image was loaded successfully.
  • cv::resize(image, thumbnail, cv::Size(150, 150));: Resize the image to 150x150 pixels to create a thumbnail.
  • cv::imwrite("thumbnail.jpg", thumbnail);: Save the thumbnail image to the file thumbnail.jpg.
  • std::cout << ...: Output a completion message to the console.

System Requirements:

  • C++ version: C++11 or later
  • Library: OpenCV (must be installed before compiling)
  • Compiler: GCC, Clang, MSVC, or any compiler that supports C++11 or later

How to install OpenCV library:

  1. Install on Ubuntu:

    sudo apt-get install libopencv-dev
    
  2. Install on Windows:

    • Download OpenCV from the official site: https://opencv.org/releases/
    • Extract and configure the paths in your project.

Tips:

  • Ensure that you have installed OpenCV correctly and configured the library paths in your development environment.
  • You can change the thumbnail size by modifying the parameters in the cv::resize function according to your requirements.
Tags: Image, C++


Related

Example of Singleton Pattern in C++

This article introduces the Singleton Pattern in C++, including its implementation and application in object management. The Singleton Pattern ensures that a class has only one instance and provides a global access point to it.
Updating Data in MySQL Using C++

A guide on how to update data in MySQL using C++ with Prepared Statements, ensuring security and efficiency when interacting with the database. This article provides a clear illustrative example.
JSON Web Token Authentication with C++

This guide provides steps to implement JSON Web Token (JWT) authentication in C++ for user authentication, including how to create and verify tokens using popular C++ libraries.
How to POST data to an API using C++ with libcurl

A guide on how to send data to an API using the POST method in C++ with the libcurl library. This article will help you understand how to configure and send HTTP POST requests to a RESTful API.
How to automatically log into a website using Selenium with Chrome in C++

A guide on using Selenium with ChromeDriver in C++ to automatically log into a website. The article explains how to set up Selenium and ChromeDriver and the steps to log in to a specific website.
How to pass Authentication Header Token when POSTing data to API using Node.js

A step-by-step guide on how to pass an Authentication Token in the header while POSTing data to an API using Node.js. The article demonstrates how to use the `axios` or `http` package to perform authenticated HTTP requests.
Preventing XSS (Cross-site Scripting) in C++

A guide on techniques to prevent XSS (Cross-site Scripting) in C++ applications, helping to protect web applications from attacks by controlling and encoding user input. This article provides methods and illustrative examples to enhance security.
Convert Unicode Accented Characters to Unaccented in C++

A detailed guide on converting Unicode accented characters to unaccented characters in C++ using the `` library. This article helps you handle Vietnamese text more effectively.
Generate Captcha Using C++

A guide on how to create a Captcha using C++ with graphics libraries to generate random text and images, providing protection against automated attacks for web applications or software.
Create a Simple Chat Application Using Socket.IO in C++

A guide on how to create a simple chat application using C++ with Socket.IO, helping you to understand more about network programming and real-time communication.

main.add_cart_success