作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从数据框中创建词云,其中有一列单词和一列代表它们各自的频率。我还下载了一张我想用作 mask 的图像,例如:cloud image
我无法让 wordcloud 适合 mask - 尽管遵循了所示示例。这是我的代码:
from PIL import Image
import pandas as pd
import numpy as np
from wordcloud import WordCloud
import matplotlib.pyplot as plt
df = pd.DataFrame({'word':['time', 'car', 'Peter\'s', 'sky',
'something', 'computer', 'brain', 'plants',
'trees', 'Alien\'s', 'gun', 'eat'],
'freq':[24, 16, 16, 15,
14, 13, 12, 10,
9, 9, 5, 3]})
words = ' '.join(df['word'])
cloud_image = r"C:\Users\L\Documents\Python Scripts\cloud.png"
mask = np.array(Image.open(cloud_image))
wordcloud = WordCloud(max_words=2000,
width=1280,
height=720,
mask=mask)
wordcloud.generate_from_frequencies()
fig, ax = plt.subplots(figsize=(8, 6))
ax.imshow(wordcloud, interpolation='bilinear')
ax.axis("off")
ax.imshow(mask, interpolation='bilinear')
plt.show()
最佳答案
我知道这个问题很老了,但我刚刚花了一个小时试图让一张特定的图像用作 mask 。我面临的主要问题是我想用作我的 wordcloud 蒙版的图像没有白色 (RGB 255,255,255) 背景。我最终得到的解决方案:
结果是带有白色 (RGB 255,255,255) 背景的原始图像。 wordcloud 的蒙版现在将按照您的预期处理您的图像!
关于python - wordcloud 词不适合掩码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50435433/
我是一名优秀的程序员,十分优秀!