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
- Host: GitHub
- URL: https://github.com/asadiahmad/opencv-intro
- Owner: AsadiAhmad
- License: mit
- Created: 2024-03-09T19:20:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-09T19:34:23.000Z (over 1 year ago)
- Last Synced: 2024-03-09T20:28:59.806Z (over 1 year ago)
- Topics: colab-notebook, digital-image-processing, image, image-processing, opencv, python
- Language: Jupyter Notebook
- Homepage:
- Size: 566 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```