モノクロ
プログラム(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.medianBlur(gray, ksize=5) # 結果を出力する cv2.imshow("output", dst) cv2.waitKey(0) cv2.destroyAllWindows() |