Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 560 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 560 Bytes

😂Image_Processing_openCv

😃OpenCV (Open Source Computer Vision Library)

Image_Process_SourceCode

import cv2
import numpy as np
from matplotlib import pyplot as plt

img = cv2.imread('wallpaer.png',cv2.IMREAD_GRAYSCALE)
cv2.imshow('image',img)
cv2.waitKey(0)
cv2.destroyAllWindows()

Output_result

Original wallpaer

Capture