導航:首頁 > 編程語言 > python求灰度均值

python求灰度均值

發布時間:2025-01-20 03:02:05

① '求助'python怎麼判斷圖片是否為灰度圖

這里判斷是否為灰度圖的標準是:每一個像素所對應的R、G、B的值是否相等。

def is_color_image(url):
im=Image.open(url)
pix=im.convert('RGB')
width=im.size[0]
height=im.size[1]
oimage_color_type="Grey Image"
is_color=[]
for x in range(width):
for y in range(height):
r,g,b=pix.getpixel((x,y))
r=int(r)
g=int(g)
b=int(b)
if (r==g) and (g==b):
pass
else:
oimage_color_type='Color Image'
return oimage_color_type

② 如何使用python來判斷圖片相似度

from PIL import Imageimport os#import hashlib def getGray(image_file): tmpls=[] for h in range(0, image_file.size[1]):#h for w in range(0, image_file.size[0]):#w tmpls.append( image_file.getpixel((w,h)) ) return tmpls def getAvg(ls):#獲取平均灰度值 return sum(ls)/len(ls) def getMH(a,b):#比較100個字元有幾個字元相同 dist = 0; for i in range(0,len(a)): if a[i]==b[i]: dist=dist+1 return dist def getImgHash(fne): image_file = Image.open(fne) # 打開 image_file=image_file.resize((12, 12))#重置圖片大小我12px X 12px image_file=image_file.convert("L")#轉256灰度圖 Grayls=getGray(image_file)#灰度集合 avg=getAvg(Grayls)#灰度平均值 bitls=''#接收獲取0或1 #除去變寬1px遍歷像素 for h in range(1, image_file.size[1]-1):#h for w in range(1, image_file.size[0]-1):#w if image_file.getpixel((w,h))>=avg:#像素的值比較平均值 大於記為1 小於記為0 bitls=bitls+'1' else: bitls=bitls+'0' return bitls''' m2 = hashlib.md5() m2.update(bitls) print m2.hexdigest(),bitls return m2.hexdigest()''' a=getImgHash("./Test/測試圖片.jpg")#圖片地址自行替換files = os.listdir("./Test")#圖片文件夾地址自行替換for file in files: b=getImgHash("./Test/"+str(file)) compare=getMH(a,b) print file,u'相似度',str(compare)+'%'

閱讀全文

與python求灰度均值相關的資料

熱點內容
程序員的中介模式 瀏覽:880
python中求兩個字元串重復部分 瀏覽:494
如何查看收件發件伺服器 瀏覽:110
linux配置android環境變數 瀏覽:132
android文字測量 瀏覽:883
壓力大金錢怎麼解壓 瀏覽:641
生男演算法 瀏覽:770
php讀取當前目錄 瀏覽:439
說一個可以連接的伺服器地址 瀏覽:508
操盤手1pdf 瀏覽:536
什麼app新人注冊可以免費買東西 瀏覽:601
flexjava教程 瀏覽:119
vnc訪問雲伺服器 瀏覽:484
java獲取list長度 瀏覽:693
linuxc打開文件夾 瀏覽:891
分析員設計員程序員職責 瀏覽:711
如何修改安卓內購游戲 瀏覽:439
什麼是工具箱app 瀏覽:249
linuxtab空格 瀏覽:10
python調用linux的命令行 瀏覽:585