· Hakan Çelik · OpenCV · 1 dk okuma

What Is OpenCV And Installation

Hello, in this tutorial series, the aim is to explain everything step by step from the very beginning to the end, following the OpenCV documentation.

What Is OpenCV And Installation

Hello, in this tutorial series, the aim is to explain everything step by step from the very beginning to the end, following the OpenCV documentation.

What is OpenCV?

  • OpenCV is a video and image processing library.
  • It is bound to C++, C, Python, and Java languages.
  • It is used in all kinds of video and visual analysis tasks such as face recognition and detection, license plate reading, photo editing, advanced robotics imaging, optical character recognition, and much more.

Installation

For Windows users

  • pip install numpy
  • pip install matplotlib
  • pip install opencv-python

For Linux or Mac users

  • pip3 install numpy or apt-get install python3-numpy. You may also need to install pip first with apt-get install python3-pip.
  • pip3 install matplotlib or apt-get install python3-matplotlib.
  • apt-get install python-OpenCV.
Back to Blog

Related Posts

View All Posts »
Image Thresholding

Image Thresholding

OpenCV · 5 dk

In this article we will learn simple thresholding, adaptive thresholding, and Otsu's thresholding, and we will learn these functions: cv2.threshold, cv2.adaptiveThreshold

Trackbar as a Color Palette

Trackbar as a Color Palette

OpenCV · 2 dk

We will learn how to bind a Trackbar to OpenCV windows. We will learn these functions: cv2.getTrackbarPos(), cv2.createTrackbar(), etc.

Changing Color Spaces

Changing Color Spaces

OpenCV · 3 dk

In this article, we will learn how to convert images from one color space to another, such as BGR to Gray, BGR to HSV, etc. In addition, we will create an application that allows extracting a colored object in a video. We will learn these fun