我在pandas数据框内有图像的路径,如果我有它的路径,是否需要在数据框内获取图像? 我需要将图像及其路径存储在dataframe列中。 这是我尝试过的方法,但无法正常工作。图像尺寸也很小,只有50x50
from IPython.core.display import HTML
image=df['profile']
def path_to_image_html(path):
return '<img src="'+ path + '" style=height:50px;"/>'
a=HTML(df.to_html(escape=False ,formatters=dict(image=image)))
这些是数据框列中图像的路径
http://pbs.twimg.com/profile_images/797804071063343105/KPytXWtY_normal.jpg
http://pbs.twimg.com/profile_images/903374198009188353/pDuYl5Uk_normal.jpg
http://pbs.twimg.com/profile_images/1101088756432396290/5bzisDRx_normal.png