久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

python如何將圖片轉換素描畫

瀏覽:41日期:2022-07-11 18:46:58

代碼如下

# -*- coding:utf-8 -*-import cv2import numpy as npfrom tkinter import filedialog, Tkfrom os import getcwdfrom re import findalldef open_path(): # 圖片路徑 root = Tk() root.withdraw() file_path = (filedialog.askopenfilename(title=’選擇圖片文件’, filetypes=[(’All Files’, ’*’)])) return file_pathdef 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 zeroblend[col, row] = 255 else:# shift image pixel value by 8 bits# divide by the inverse of the masktmp = (image[col, row] << 8) / (255 - mask)# print(’tmp={}’.format(tmp.shape))# make sure resulting value stays within boundsif tmp.any() > 255: tmp = 255 blend[col, row] = tmp return blenddef 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): print(’轉換中......’) 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.imwrite(dst_image_name, img_blend) save_path = getcwd() + '' + dst_image_name # 保存路徑 print(’轉換完成!!!n’) print(’保存路徑:’ + save_path) cv2.imshow(save_path, img_blend) cv2.waitKey(0) cv2.destroyAllWindows()if __name__ == ’__main__’: print(’請選擇圖片(路徑不要含中文):’) src_image_name = open_path() # 文件路徑 print(src_image_name + ’n’) image_name = ’’.join(findall(r’[^/:*?'<>|rn]+$’, src_image_name)) # 獲取文件名 dst_image_name = ’Sketch_’ + image_name rgb_to_sketch(src_image_name)

效果如下

python如何將圖片轉換素描畫

以上就是python如何將圖片轉換素描畫的詳細內容,更多關于python圖片轉換素描畫的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 苏州市| 富蕴县| 花莲县| 前郭尔| 沙洋县| 米林县| 修文县| 宁强县| 宣汉县| 连南| 蓬溪县| 盱眙县| 定边县| 莆田市| 乌鲁木齐县| 应城市| 白朗县| 克东县| 雅安市| 金川县| 湟源县| 隆化县| 东明县| 永仁县| 林芝县| 基隆市| 彭阳县| 长春市| 黄浦区| 澄迈县| 荥阳市| 绥棱县| 伊金霍洛旗| 新宁县| 邹平县| 内丘县| 于田县| 涟水县| 咸阳市| 通许县| 定兴县|