這篇文章主要為大家展示了Python如何實現(xiàn)計算圖像RGB均值方式,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。
成都創(chuàng)新互聯(lián)公司專業(yè)成都做網站、成都網站建設,集網站策劃、網站設計、網站制作于一體,網站seo、網站優(yōu)化、網站營銷、軟文發(fā)稿等專業(yè)人才根據搜索規(guī)律編程設計,讓網站在運行后,在搜索中有好的表現(xiàn),專業(yè)設計制作為您帶來效益的網站!讓網站建設為您創(chuàng)造效益。要求
存在一個文件夾內有若干張圖像,需要計算每張圖片的RGB均值,并計算全部圖像的RGB均值。
代碼
# -*- coding: utf-8 -*- """ Created on Thu Nov 1 10:43:29 2018 @author: Administrator """ import os import cv2 import numpy as np path = 'C:/Users/Administrator/Desktop/rgb' def compute(path): file_names = os.listdir(path) per_image_Rmean = [] per_image_Gmean = [] per_image_Bmean = [] for file_name in file_names: img = cv2.imread(os.path.join(path, file_name), 1) per_image_Bmean.append(np.mean(img[:,:,0])) per_image_Gmean.append(np.mean(img[:,:,1])) per_image_Rmean.append(np.mean(img[:,:,2])) R_mean = np.mean(per_image_Rmean) G_mean = np.mean(per_image_Gmean) B_mean = np.mean(per_image_Bmean) return R_mean, G_mean, B_mean if __name__ == '__main__': R, G, B= compute(path) print(R, G ,B)