日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
拿下抖音小姐姐,我寫了個口紅色號識別器!

 對于廣大“鋼鐵直男”的程序員來說,送什么禮物給女朋友一直是個世紀(jì)難題。

其實(shí)哄女朋友開心最深的套路就是花式送口紅,就問誰抵擋得住啊啊啊啊......

“沒有什么問題是一支口紅解決不了的,如果有,那就兩支。”于是,直男們紛紛開始各種買口紅、送口紅……

畢竟李佳琦一句"OMG買它”,女朋友披頭散發(fā)搶購,錢包就空了一半。

但是,口紅色號千千萬,選對了牌子才成功了一半。

快樂橙、傷心紫,姨媽紅,雞屎綠…直男眼里沒什么區(qū)別的顏色,在女生眼里各種色調(diào)、質(zhì)地細(xì)微的區(qū)別都能分析一清二楚。

那么,對于直男來說,怎么才能搞清楚如此多的口紅色號呢?

我耗費(fèi)一毫米發(fā)際線,琢磨了一下,做出了一個口紅色號識別器,希望能幫大家在關(guān)鍵時刻把深刻的革命友誼再升華一下。

先來看看效果。讓我們假設(shè),小姐姐發(fā)來了一張美妝博主的美照,并暗示你,“人家也喜歡這個顏色?!?/p>

這個時候,用我們的口紅色號識別器,就能定位嘴唇,并迅速給出它的顏色隸屬哪家品牌的哪個色號。

OMG!簡直比李佳琦還準(zhǔn)確!

好啦,廢話不多說,馬上開始教學(xué)時間!

來自 Github 的口紅色號宇宙

要想識別口紅色號,先得讓機(jī)器知道到底都有哪些顏色。

聽柜姐介紹,紅色系有:“草莓紅、鐵銹紅、楓葉紅...”,其他還有“豆沙色、吃土色、番茄色...”

世界觀還未建立完全就要開始土崩瓦解,這看著有區(qū)別嗎?“豆沙色最為百搭,橘調(diào)的番茄色比較顯白...”眼前的黑不是黑,你說的紅是什么紅?

還好,在萬能的 Github 上找到了一個寶藏?cái)?shù)據(jù)庫“口紅顏色可視化”,這個數(shù)據(jù)庫堪比口紅的色號宇宙,不僅囊括了當(dāng)前最主流品牌的各種系列色號,還很良心的在色盤上排列了出來。

這個數(shù)據(jù)集是一個嵌套的字典數(shù)據(jù)結(jié)構(gòu),存為 json 串的形式,里面記錄了每個口紅品牌系列下不同口紅色號的顏色 id、名稱、和 16 進(jìn)制顏色值。

直!男!救!星!有木有!

口紅色號可視化鏈接:

 
 
 
 
  1. https://github.com/Ovilia/lipstick

不過看著這密密麻麻的顏色,真心佩服各大口紅品牌的文案高手,是怎么樣區(qū)別每一個看不出區(qū)別的顏色,并且還要分別取名字的。

傻傻分不清的我對 5 個品牌的不同系列做了一下統(tǒng)計(jì)和色號錄入,于是,剩下的就交給計(jì)算機(jī)啦。

先用番茄做個實(shí)驗(yàn)?

既然有了如此完備的色號數(shù)據(jù)庫,那么文摘菌就有了一個討巧的方法:要想找到合適的色號,可以直接截取顏色,然后在數(shù)據(jù)庫中進(jìn)行比對。

這個方法非常好操作,在上唇色之前,我們不如先拿別的紅色物品來練手。

比如,這里有一只番茄圖片,你看這個番茄它又大又圓:

在其中截取了成色均勻、無高亮的矩形圖片:

提取這張純色圖片的 RGB 值在技術(shù)上是可行的,getcolor.py 代碼如下:

 
 
 
 
  1. import colorsys
  2. import PIL.Image as Image
  3. def get_dominant_color(image):
  4.     max_score = 0.0001
  5.     dominant_color = None
  6.     for count,(r,g,b) in image.getcolors(image.size[0]*image.size[1]):
  7.         # 轉(zhuǎn)為HSV標(biāo)準(zhǔn)
  8.         saturation = colorsys.rgb_to_hsv(r/255.0, g/255.0, b/255.0)[1]
  9.         y = min(abs(r*2104+g*4130+b*802+4096+131072)>>13,235)
  10.         y = (y-16.0)/(235-16)
  11.         #忽略高亮色
  12.         if y > 0.9:
  13.             continue
  14.         score = (saturation+0.1)*count
  15.         if score > max_score:
  16.             max_score = score
  17.             dominant_color = (r,g,b)
  18.     return dominant_color

為了減少誤差,需要裁剪多個不同位置的圖片,保存在本地的一個文件夾中,讀取文件,提取顏色,求平均值,得到的番茄最終的 RGB 顏色,代碼如下:

 
 
 
 
  1. import os
  2. import getcolor
  3. from os.path import join as pjoin
  4. from scipy import misc
  5. def load_color(color_dir,list): 
  6.     count = 0
  7.     for dir in os.listdir(color_dir):  
  8.         img_dir = pjoin(color_dir, dir)  
  9.         image = getcolor.Image.open(img_dir)
  10.         image = image.convert('RGB')
  11.         get=getcolor.get_dominant_color(image)
  12.         list.append(get)
  13.         count = count+1
  14.         #print(person_dir)
  15.     #print(count)
  16.     return count
  17. def Mean_color(count,list):
  18.      Mean_R=Mean_G=Mean_B=0
  19.      for i in range(count):
  20.         tuple=list[i]
  21.         Mean_R+=tuple[0]
  22.         Mean_G+=tuple[1]
  23.         Mean_B+=tuple[2]
  24.      MeanC=((int)(Mean_R/count),(int)(Mean_G/count),(int)(Mean_B/count))
  25.      return Me

番茄的顏色提取到了,那么和什么做比對呢?

當(dāng)然是口紅的數(shù)據(jù),文摘菌這兒用到了 5 個品牌,分別是圣羅蘭、香奈兒可可小姐、迪奧、美寶蓮、紀(jì)梵希,共 17 個系列,271 個口紅色號。

數(shù)據(jù)集是一個嵌套的字典數(shù)據(jù)結(jié)構(gòu),存為 json 串的形式,里面記錄了每個口紅品牌系列下不同口紅色號的顏色 id、名稱、和 16 進(jìn)制顏色值。

lipstick.json部分?jǐn)?shù)據(jù)集展示如下:

 
 
 
 
  1. {"brands":[{"name":"圣羅蘭","series":
  2. [{"name":"瑩亮純魅唇膏","lipsticks":
  3. [{"color":"#D62352","id":"49","name":"撩騷"},
  4. {"color":"#DC4B41","id":"14","name":"一見傾心"},
  5. {"color":"#B22146","id":"05","name":"浮生若夢"},

數(shù)據(jù)集中存儲的 RGB 顏色是 16 進(jìn)制的字符串形式,需要將其轉(zhuǎn)換成 RGB 值,比較兩個顏色相近與否。

實(shí)際上是比較 RGB 三個分量維度上的誤差,最小的口紅輸出對應(yīng)的品牌、系列、色號和 id。

代碼如下:

 
 
 
 
  1. import json
  2. import getcolor
  3. import numpy as np
  4. import lipcolor
  5. #filename = 'temp.txt'
  6. ##write the temp data to file##
  7. def WtoFile(filename,RGB_temp):
  8.     num=len(RGB_temp)
  9.     with open(filename,'w') as f: 
  10.        for i in range(num):
  11.            s = str(RGB_temp[i]).replace('[','').replace(']','')
  12.            f.write(s)
  13.            f.write("\n")
  14. #operate the data #
  15. ##save the brand&series&color id&color name to sum_list##
  16. ##covert the color #D62352 to RGB_array##
  17. ##caculate the RGB difference to RGB_temp and write the value to file##
  18. def data_operate():
  19.     with open('lipstick.json', 'r', encoding='utf-8') as f:
  20.       ret_dic = json.load(f)
  21.       #print(ret_dic['brands'])
  22.       #print(type(ret_dic)) # 
  23.       #print(ret_dic['brands'][0]['name']) 
  24.       b_num=len(ret_dic['brands'])
  25.       #print(b_num)#brands number
  26.       s_list=[]
  27.       #series brands#
  28.       for i in range(len(ret_dic['brands'])):
  29.           s_num=len(ret_dic['brands'][i]['series'])
  30.           s_list.append(s_num)
  31.           #print("{0} has {1} series".format((ret_dic['brands'][i]['name']),(s_list[i])))
  32.       #the lipstick color of every brands every series#
  33.       #the first loop calculate the total color numbers
  34.       sum=0
  35.       for b1 in range(b_num):
  36.           for s1 in range(s_list[b1]):
  37.               brand_name=ret_dic['brands'][b1]['name']
  38.               lip_name=ret_dic['brands'][b1]['series'][s1]['name']
  39.               color_num=len(ret_dic['brands'][b1]['series'][s1]['lipsticks'])
  40.               sum+=color_num#calculate the total color numbers
  41.       #the second loop save the message to a list#
  42.       sum_list=np.zeros((sum,4), dtype=(str,8))
  43.       value_array=np.zeros((sum,6), dtype=int)
  44.       i=0    
  45.       for b2 in range(b_num):
  46.           for s2 in range(s_list[b2]):
  47.               brand_name=ret_dic['brands'][b2]['name']
  48.               #print(type(brand_name))
  49.               lip_name=ret_dic['brands'][b2]['series'][s2]['name']
  50.               color_num=len(ret_dic['brands'][b2]['series'][s2]['lipsticks'])
  51.               for c in range(color_num):
  52.                     color_value=ret_dic['brands'][b2]['series'][s2]['lipsticks'][c]['color']
  53.                     color_name=ret_dic['brands'][b2]['series'][s2]['lipsticks'][c]['name']
  54.                     color_id=ret_dic['brands'][b2]['series'][s2]['lipsticks'][c]['id']
  55.                     #print("{0} series {1} has {2} colors,color {3}:{4}".format(brand_name,lip_name,color_num,c+1,color_name))
  56.                     sum_list[i][0]=brand_name
  57.                     sum_list[i][1]=lip_name
  58.                     sum_list[i][2]=color_id
  59.                     sum_list[i][3]=color_name
  60.                     #value_array[i]=value_array[i][1]
  61.                     #convert "#D62352" to [13  6  2  3  5  2]#
  62.                     for l in range(6):
  63.                         temp=color_value[l+1]
  64.                         if(temp>='A'and temp<='F'):
  65.                            temp1=ord(temp)-ord('A')+10
  66.                         else:
  67.                            temp1=ord(temp)-ord('0')
  68.                         value_array[i][l]=temp1
  69.                     i+=1
  70.     #the third loop covert value_array to RGB_array#
  71.       RGB_array=np.zeros((sum,3), dtype=int)
  72.       for i in range(sum):
  73.           RGB_array[i][0]=value_array[i][0]*16+value_array[i][1]
  74.           RGB_array[i][1]=value_array[i][2]*16+value_array[i][3]
  75.           RGB_array[i][2]=value_array[i][4]*16+value_array[i][5]
  76.       #calculate the similar and save to RGB_temp
  77.       #RGB_temp=np.zeros((sum,1), dtype=int)
  78.       RGB_temp=np.zeros((sum,1), dtype=float)
  79.       for i in range(sum):
  80.           R=RGB_array[i][0]
  81.           G=RGB_array[i][1]
  82.           B=RGB_array[i][2]
  83.           RGB_temp[i]=abs(get[0]-R)+abs(get[1]*3/4-G)+abs(get[2]-B)
  84.       RGB_temp.tolist();#covert array to list
  85.       #print(RGB_temp)
  86.       filename="temp.txt"
  87.       WtoFile(filename,RGB_temp)
  88.       #sort the RGB_temp#
  89.       result=sorted(range(len(RGB_temp)), key=lambda k: RGB_temp[k])
  90.       #print(result)
  91.       #output the three max prob of the lipsticks#
  92.       print("The first three possible lipstick brand and color id&name are as follows:")
  93.       for i in range(3):
  94.           idex=result[i]
  95.           print(sum_list[idex])
  96.       print("The first three possible lipstick brand RGB value are as follows:")
  97.       for i in range(3):
  98.           idex=result[i]
  99.           R=RGB_array[idex][0]
  100.           G=RGB_array[idex][1]
  101.           B=RGB_array[idex][2]
  102.           tuple=(R,G,B)
  103.           print(tuple)
  104. if __name__ == '__main__':
  105.      #image = getcolor.Image.open(inputpath)
  106.      #image = image.convert('RGB')
  107.      #get=getcolor.get_dominant_color(image)#tuple #get=(231, 213, 211)
  108.      list=[]
  109.      color_dir="output"
  110.      count=lipcolor.load_color(color_dir,list)
  111.      get=lipcolor.Mean_color(count,list)
  112.      print("the extracted RGB value of the color is {0}".format(get))
  113.      #operate the data#
  114.      data_operat

輸出最有可能吻合番茄顏色的前三個口紅的信息,然后在 Spyder 中的運(yùn)行結(jié)果:

可以看到最有可能的三個口紅品牌色號的 RGB 值與番茄的 RGB 值是非常接近的。

提取到的番茄顏色:

'迪奧' '烈艷藍(lán)金唇膏' '080' '微笑正紅’的顏色:

'圣羅蘭' '純口紅' '56' '橙紅織錦'的顏色:

'紀(jì)梵希' '高定香榭天鵝絨唇' '325' '圣水紅'的顏色:

我已經(jīng)眼花繚亂,三個顏色……有區(qū)別嗎?!以后不如準(zhǔn)備統(tǒng)一叫它們,番茄色!

不過,這也正說明了,剛剛的提取&對比方法可行!

既然可以識別番茄的顏色,那么,可以識別人像中的口紅色號嗎?

進(jìn)入正題!人像口紅色號識別

接下來,我們需要做的是輸入一張人像圖片,可以自動識別其中的嘴唇區(qū)域,并提取出嘴唇區(qū)域中的一部分做為顏色提取的源圖像。

這里就要用到 CV 的人臉識別了,還好 Dlib 庫又幫助我們減輕一大部分的工作量。

Dlib 中有自帶的 68 個人臉的識別器,可以得到人臉部位包括眉毛、眼睛、鼻梁、面部輪廓和嘴唇區(qū)域的具體點(diǎn)的位置,到這兒,我以為很輕松就可以截到嘴唇區(qū)域了,結(jié)果有點(diǎn)尷尬.........

我們首先找到了一張小姐姐的照片:

截取到的嘴唇區(qū)域如下:

很明顯的看到上下嘴唇黑色的區(qū)域也截取到了,這對后續(xù)的提色有影響,所以不得不回到最初的 68 個檢測點(diǎn)來思考人生。

圣羅蘭官網(wǎng) #842C71 口紅

標(biāo)記的 68 個人臉檢測點(diǎn)如上圖所示,而嘴唇部位是從第 49 個標(biāo)記點(diǎn)開始的(數(shù)組的話,下標(biāo)是 48)。

為了盡可能的截取到均勻成色的嘴唇片段,剛開始是想從第 50 個標(biāo)記點(diǎn)對角線截取到第 56 個標(biāo)記點(diǎn),而這不可避免的會截取到上下嘴唇之間的縫隙,這兒的陰影也會影響后續(xù)的顏色提取準(zhǔn)確度。

考慮到下嘴唇比上嘴唇寬,所以截取到下嘴唇中間的兩個小正方形區(qū)域:

人臉識別和截取嘴唇區(qū)域的代碼如下:

 
 
 
 
  1. import numpy as np 
  2. import cv2
  3. import dlib
  4. from PIL import Image
  5. def crop(source,pos):
  6.       x1=pos[2][0]
  7.       y1=pos[2][1]
  8.       x2=pos[1][0]
  9.       y2=pos[1][1]
  10.       d=abs(x2-x1)
  11.       region = source[(int)(y1-d*0.75):y2,x1:x2]
  12.       # save the image
  13.       cv2.imwrite("output/Mouth1.jpg", region)
  14.       x1=pos[1][0]
  15.       y1=pos[1][1]
  16.       x2=pos[0][0]
  17.       y2=pos[0][1]
  18.       d=abs(x1-x2)
  19.       region = source[y1-d:y2,x1:x2]
  20.       # save the image
  21.       cv2.imwrite("output/Mouth2.jpg", region)
  22. def detect_mouth(img,pos):
  23.         gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
  24.         gray = cv2.equalizeHist(gray)
  25.         detector = dlib.get_frontal_face_detector()
  26.         #use the predictor 
  27.         predictor = dlib.shape_predictor('shape_predictor_68_face_landmarks.dat')
  28.         dets = detector(img, 1)   
  29.         print("Number of faces detected: {}".format(len(dets)))
  30.         for a in dets:    
  31.            cv2.rectangle(img,(a.left(),a.top()),(a.right(),a.bottom()),(255,0,0))
  32.         #point_list=[]#save the mouth point to point_list[]#
  33.         #Extract 68 feature points of the face and crop the lip image#
  34.         for index, face in enumerate(dets):
  35.            print('face {}; left {}; top {}; right {}; bottom {}'.format(index, face.left(), face.top(), face.right(), face.bottom()))
  36.            shape = predictor(gray, face)
  37.            for i, pt in enumerate(shape.parts()):
  38.             #print('Part {}: {}'.format(i, pt))
  39.             #print(i)
  40.              pt_pos = (pt.x, pt.y)
  41.              if i>=48 and i<=67:
  42.                 cv2.circle(img, pt_pos, 2, (255, 0, 0), 1)
  43.              if i>=56 and i<=58:
  44.                 #print(pt_pos)
  45.                 pos[i-56][0]=pt.x
  46.                 pos[i-56][1]=pt.y
  47.              #cv2.circle(img, pt_pos, 2, (255, 0, 0), 1)
  48.         return img
  49. if __name__ == "__main__": 
  50.       img = cv2.imread("test3.png")
  51.       #copy the input image for the later crop#
  52.       img_clone = np.copy(img)
  53.       cv2.imwrite("input/source.jpg",img_clone)
  54.       #save the lip position to pos array#
  55.       pos=np.zeros((3,2), dtype=int)
  56.       result=detect_mouth(img,pos)
  57.       cv2.imwrite("input/source2.jpg",result)
  58.       #crop the lip areas#
  59.       source = cv2.imread("input/source.jpg")
  60.       crop(source,pos)
  61.       # show the result
  62.       cv2.imshow('FaceDetect',result)
  63.       cv2.waitKey(0) 
  64.       cv2.destroyAllWindow

既然已經(jīng)截取到嘴唇的小矩形圖像了,接下來的工作就和前面一樣了,在數(shù)據(jù)庫中對比每個 RGB 值輸出最小誤差對應(yīng)的口紅信息,而這兒也有難到我。

單純的比對 RGB 分量對口紅色號來說并不適用,有可能每個分量相差很小,而疊加起來的顏色和提取到的顏色并不相似,在顏色的比對上需要手動調(diào)參。

幾經(jīng)波折,最后輸出的結(jié)果還是可以接受的,上圖人像中涂的口紅色號,感興趣的讀者可以查下正好是下面輸出排名第一的口紅信息。

誤差分析

對于我們測試的圖片信息,標(biāo)記了嘴唇區(qū)域的特征點(diǎn),我們提取到的 RGB 值(156,59,103)顏色如下所示:

可以看到和圖片的顏色已經(jīng)十分接近了,而數(shù)據(jù)集合 lipstick.json 中這種口紅存儲的 16 進(jìn)制顏色值為 #842C71,對應(yīng)的顏色如下:

明顯看到數(shù)據(jù)集存儲的顏色和實(shí)際照片的顏色是有些許誤差的,而在本文算法實(shí)現(xiàn)過程中,又不可避免的有以下誤差:

  • 嘴唇區(qū)域截取不可避免會截取到皮膚中的一部分顏色,雖然算法已經(jīng)將那種可能降到最低。
  • 顏色提取上,雖然截取多個嘴唇圖片求平均值,但是本身的提取算法還是和實(shí)際值稍有偏差。
  • RGB 顏色相似度比對的算法也不夠精確。
  • 最最重要的是,照片必須是原圖,而且光線要自然,加了濾鏡的圖是怎么也不可能識別出來的。

以上種種,使得讓計(jì)算機(jī)快速高效地識別不同的口紅色號還是有困難的,原來計(jì)算機(jī)有時候也會很直男。

實(shí)時人像口紅色號預(yù)測

看到這兒,可能很多讀者朋友想實(shí)時地試一下能不能讓計(jì)算機(jī)判斷自己的口紅色號,這對于 OpenCV 這一強(qiáng)大的圖形操作庫來說,不是什么問題。

它可以打開你的攝像頭,讀取每一幀的圖片,結(jié)合前文提到的人臉識別代碼,可以實(shí)時地截取到嘴唇區(qū)域的圖片,然后交給計(jì)算機(jī)預(yù)測,從此再也不怕女朋友的靈魂拷問!

最后,附上打開攝像頭的代碼,快叫女朋友過來試下吧!

 
 
 
 
  1. #coding=utf8
  2. import cv2
  3. import time
  4. print('Press Esc to exit')
  5. imgWindow = cv2.namedWindow('FaceDetect', cv2.WINDOW_NORMAL)
  6. import sys
  7. import os
  8. import dlib
  9. import glob
  10. import numpy
  11. from skimage import io
  12. def detect_face():
  13.     capInput = cv2.VideoCapture(0)
  14.     #nextCaptureTime = time.time()
  15.     faces = []
  16.     feas = [] 
  17.     if not capInput.isOpened(): print('Capture failed because of camera')
  18.     while 1:
  19.         ret, img = capInput.read()
  20.         gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
  21.         gray = cv2.equalizeHist(gray)
  22.         time=0
  23.         eTime = time.time() + 0.1
  24.         detector = dlib.get_frontal_face_detector() 
  25.         predictor = dlib.shape_predictor('shape_predictor_68_face_landmarks.dat')
  26.         dets = detector(gray, 1)  
  27.         print("Number of faces detected: {}".format(len(dets)))
  28.         for a in dets:    
  29.            cv2.rectangle(img,(a.left(),a.top()),(a.right(),a.bottom()),(255,0,0))
  30.         for index, face in enumerate(dets):
  31.            print('face {}; left {}; top {}; right {}; bottom {}'.format(index, face.left(), face.top(), face.right(), face.bottom()))
  32.            shape = predictor(gray, face)   
  33.            for i, pt in enumerate(shape.parts()):
  34.             #print('Part {}: {}'.format(i, pt))
  35.              pt_pos = (pt.x, pt.y)
  36.              cv2.circle(img, pt_pos, 2, (255, 0, 0), 1)
  37.         cv2.imshow('FaceDetect',img)
  38.         if cv2.waitKey(1) & 0xFF == 27: break
  39.     capInput.release()
  40.     cv2.destroyAllWindows()
  41. if __name__ == "__main__": 
  42.     detect_face()

好啦,佳期如夢,雙星良夜,在一個充滿愛意的日子里,定位好女神常用的口紅色號,和那個她來場華麗的邂逅吧!

福利來啦

來給大家送一波福利,包郵送 6 本 Python 技術(shù)書籍,參與方式很簡單,關(guān)注技術(shù)棧公眾號,在公眾號后臺回復(fù)「抽獎」,彈出小程序后點(diǎn)擊參與。

開獎時間是 9 月 25 日 20:00 ,一定要留意微信消息,如果你中獎了就盡快微信聯(lián)系我,告訴我想要的書和快遞信息。一天之內(nèi)沒有回復(fù),送書名額就轉(zhuǎn)給其他人了。


網(wǎng)站欄目:拿下抖音小姐姐,我寫了個口紅色號識別器!
文章位置:http://www.dlmjj.cn/article/cdcispi.html