Horje
python cv2 unblur Code Example
python cv2 unblur
import cv2
import numpy as np

image = cv2.imread('1.jpg')
sharpen_kernel = np.array([[-1,-1,-1], [-1,9,-1], [-1,-1,-1]])
sharpen = cv2.filter2D(image, -1, sharpen_kernel)

cv2.imshow('sharpen', sharpen)
cv2.waitKey()




Python

Related
Print inline output in python Code Example Print inline output in python Code Example
poision in chinese Code Example poision in chinese Code Example
negative indexing in Python Code Example negative indexing in Python Code Example
list comprehension Code Example list comprehension Code Example
what does features = data.drop(["Survived", "Sex", "Embarked"], axis=1) do in python Code Example what does features = data.drop(["Survived", "Sex", "Embarked"], axis=1) do in python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7