モノクロ
プログラム(Python)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#-*- coding:utf-8 -*- import cv2 # 画像を読み込む gray = cv2.imread("LegoFamilyGray.jpg",0) # 変換する dst = cv2.GaussianBlur(gray, ksize=(3, 3), sigmaX=1.3) # 結果を出力する cv2.imshow("output", dst) cv2.waitKey(0) cv2.destroyAllWindows() |