python 利用opencv把圖片轉化爲素描圖片

轉兩個源代碼,都能將原圖轉化爲素描圖片,效果都還不錯。拿去可以直接用

轉自:https://blog.csdn.net/weixin_39059031/article/details/82724951

import cv2
import numpy as np
 
 
def dodgeNaive(image, mask):
    # determine the shape of the input image
    width, height = image.shape[:2]
 
    # prepare output argument with same size as image
    blend = np.zeros((width, height), np.uint8)
 
    for col in range(width):
        for row in range(height):
            # do for every pixel
            if mask[col, row] == 255:
                # avoid division by zero
                blend[col, row] = 255
            else:
                # shift image pixel value by 8 bits
                # divide by the inverse of the mask
                tmp = (image[col, row] << 8) / (255 - mask)
                # print('tmp={}'.format(tmp.shape))
                # make sure resulting value stays within bounds
                if tmp.any() > 255:
                    tmp = 255
                    blend[col, row] = tmp
 
    return blend
 
 
def dodgeV2(image, mask):
    return cv2.divide(image, 255 - mask, scale=256)
 
 
def burnV2(image, mask):
    return 255 - cv2.divide(255 - image, 255 - mask, scale=256)
 
 
def rgb_to_sketch(src_image_name, dst_image_name):
    img_rgb = cv2.imread(src_image_name)
    img_gray = cv2.cvtColor(img_rgb, cv2.COLOR_BGR2GRAY)
    # 讀取圖片時直接轉換操作
    # img_gray = cv2.imread('example.jpg', cv2.IMREAD_GRAYSCALE)
 
    img_gray_inv = 255 - img_gray
    img_blur = cv2.GaussianBlur(img_gray_inv, ksize=(21, 21),
                                sigmaX=0, sigmaY=0)
    img_blend = dodgeV2(img_gray, img_blur)
 
#     cv2.imshow('original', img_rgb)
#     cv2.imshow('gray', img_gray)
#     cv2.imshow('gray_inv', img_gray_inv)
#     cv2.imshow('gray_blur', img_blur)
#     cv2.imshow("pencil sketch", img_blend)
    cv2.waitKey(0)
    cv2.destroyAllWindows()
    cv2.imwrite(dst_image_name, img_blend)
 
 
if __name__ == '__main__':
    src_image_name = 'd:\\tmp\\1\\y3.jpg'
    dst_image_name = 'd:\\tmp\\1\\z3.jpg'
    rgb_to_sketch(src_image_name, dst_image_name)

拿我心愛的閨女的照片秀秀,就不發原圖了,看看轉換後的效果圖,漂亮~~~~~~嘿嘿。

第二種就簡單多了,看生成的文件大小沒有第一個大,略微差點 

img_rgb = cv2.imread("d:\\tmp\\1\\51.jpg")
img_gray = cv2.cvtColor(img_rgb, cv2.COLOR_RGB2GRAY)
img_blur = cv2.GaussianBlur(img_gray, ksize=(21, 21),
                            sigmaX=0, sigmaY=0)
tp=cv2.divide(img_gray, img_blur, scale=255)
cv2.imwrite("d:\\tmp\\1\\53.jpg",tp)

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章