2023年9月6日 星期三

好用工具 colorgram, 根據提供圖片中選出最常出現的N個GRB顏色和HSL顏色

 


import colorgram
#從照片中提取30種顏色

colors=colorgram.extract('C:\\Users\\K\\OneDrive\\桌面\\100天訓練營\\D18\\fate.jpg',30)
# extract(照片路徑,需要選出幾個顏色)
print(colors)
#[<colorgram.py Color: Rgb(r=18, g=56, b=243), 0.0004280874858612216122165%>,....]
rgb_colors=[]
for color in colors:
    print(f'color={color}')
   
    print(f'其中的RGB={color.rgb}')
    #...其中的RGB=Rgb(r=18, g=56, b=243)...
    r=color.rgb.r
    #r=18, int
    g=color.rgb.g
    #g=56, int
    b=color.rgb.b
    #b=243, int
    new_color=(r,g,b)
    rgb_colors.append(new_color)
print(f'顏色={rgb_colors}')
try_color=[]
for color in colors:
    try_color.append(color.rgb)
print(f'不特別提取, try_color={try_color}')
-----------------------
.
.
.
color=<colorgram.py Color: Rgb(r=66, g=105, b=102), 0.0013793930099972697%> 其中的RGB=Rgb(r=66, g=105, b=102) color=<colorgram.py Color: Rgb(r=73, g=162, b=159), 0.00047565276206802405%> 其中的RGB=Rgb(r=73, g=162, b=159) color=<colorgram.py Color: Rgb(r=18, g=56, b=243), 0.00042808748586122165%>
其中的RGB=Rgb(r=18, g=56, b=243) 顏色=[(117, 75, 118), (78, 69, 119), (27, 16, 66), (54, 51, 102), (186, 141, 173),
(51, 19, 57), (145, 144, 191), (158, 105, 147), (88, 106, 200), (227, 203, 216),
(81, 45, 95), (243, 221, 204), (220, 172, 194), (211, 215, 233), (182, 177, 221),
(205, 163, 155), (213, 253, 252), (228, 174, 167), (79, 235, 252), (3, 2, 2),
(77, 253, 253), (41, 162, 196), (116, 93, 89), (8, 17, 15), (19, 79, 99),
(125, 183, 180), (212, 191, 166), (66, 105, 102), (73, 162, 159), (18, 56, 243)]
不特別提取, try_color=[Rgb(r=117, g=75, b=118), Rgb(r=78, g=69, b=119),
Rgb(r=27, g=16, b=66), Rgb(r=54, g=51, b=102), Rgb(r=186, g=141, b=173),
Rgb(r=51, g=19, b=57), Rgb(r=145, g=144, b=191), Rgb(r=158, g=105, b=147),
Rgb(r=88, g=106, b=200), Rgb(r=227, g=203, b=216), Rgb(r=81, g=45, b=95),
Rgb(r=243, g=221, b=204), Rgb(r=220, g=172, b=194), Rgb(r=211, g=215, b=233),
Rgb(r=182, g=177, b=221), Rgb(r=205, g=163, b=155), Rgb(r=213, g=253, b=252),
Rgb(r=228, g=174, b=167), Rgb(r=79, g=235, b=252), Rgb(r=3, g=2, b=2),
Rgb(r=77, g=253, b=253), Rgb(r=41, g=162, b=196), Rgb(r=116, g=93, b=89),
Rgb(r=8, g=17, b=15), Rgb(r=19, g=79, b=99), Rgb(r=125, g=183, b=180),
Rgb(r=212, g=191, b=166), Rgb(r=66, g=105, b=102), Rgb(r=73, g=162, b=159),
Rgb(r=18, g=56, b=243)]


標籤:

0 個意見:

張貼留言

訂閱 張貼留言 [Atom]

<< 首頁