An open API service indexing awesome lists of open source software.

https://github.com/asadiahmad/opencv-intro

An Intro for OpenCV Digital Image Proccessing Library with Python Language
https://github.com/asadiahmad/opencv-intro

colab-notebook digital-image-processing image image-processing opencv python

Last synced: 3 months ago
JSON representation

An Intro for OpenCV Digital Image Proccessing Library with Python Language

Awesome Lists containing this project

README

        

# OpenCV-Intro
An Intro for OpenCV Digital Image Proccessing Library with Python Language

### Install OpenCV
```
pip install opencv-python
```
### Import Libs
```
import cv2
```
### Read Image
```
img = cv2.imread("Ahmad.jpg", cv2.IMREAD_COLOR)
```
### Show Image
```
cv2.imshow(img)
```

### Get Image Info
```
height, width, channels = img.shape
```