This repository contains Python 🐍 implementations of 🔟 basic image processing tasks, utilizing the OpenCV 🟢👁️ library. These tasks are designed to familiarize users 👥 with fundamental operations in image manipulation and drawing ✍️ using Python.
To run
pip install opencv-python
The following is a list of the 🔟 tasks solved in this part of the project:
-
📸 Make a Photo
- Make empty black image of size (400, 300, 3).
-
💡 Turn On a Pixel
- Set a specific pixel to a desired color.
-
📏 Draw Horizontal & Vertical Line
- Draw both a horizontal
↔️ and a vertical↕️ line on an image.
- Draw both a horizontal
-
◼️ Draw a Hollow Square
- Draw a square outline with adjustable size and position.
-
⬜ Draw a Solid Square
- Draw a filled square of specified size and location.
-
📐 Draw an Arbitrary Line Using the Line Formula
- Use the formula of a line to draw an arbitrary line on an image.
-
🔵 Circle Drawing
- Draw a circle with given center coordinates and radius.
-
🔄 Symmetry to Horizontal & Vertical Line / Coordinate
- Reflect an image along a horizontal
↔️ or vertical↕️ axis to achieve symmetry. - Additionally, turn on a pixel in the reflected image to correspond to a specific point.
- Reflect an image along a horizontal
-
🌈 Create a Gradient Image
- Generate an image with a gradient effect, transitioning smoothly between colors 🎨.
-
♟️ Make a Chessboard
- Create a classic chessboard ♟️ pattern using alternating black ◼️ and white ⬜ squares.
This project is free and available under the MIT License ⚖️.