我有这个python程序,试图在Jupyter笔记本的shell上运行。该代码在笔记本中可以完美运行,但是当我导出到外壳程序时,我总是收到此错误
'function' object has no attribute 'display_formatter'
import cv2
import numpy as np
from scipy import spatial
from IPython import get_ipython
def make_mask(b,image):
mask=np.zeros((image.shape[0],image.shape[1],1),dtype=np.unint8)
for xx,yy in enumarate(b):
mask[yy:,xx]=255
return mask
def display_mask(b,image,color=[0,0,255]):
result=image.copy()
overlay=np.full(image.shape,color,image.dtype)
display(cv2.addWeighted(cv2.bitwise_and(overlay,overlay,mask=make_mask(b,image)),1,image,1,0,result))
def display_cv2_image(image):
return cv2.imencode('.png', image)[1].tostring()
ip=get_ipython()
png_f = ip.display_formatter.formatters['image/png']
png_f.for_type_by_name('numpy', 'ndarray', display_cv2_image);
我已经明确导入了IPython,但仍然没有进展。
答案 0 :(得分:0)
我实际上解决了它。 我的get_ipython的工作是获取全局InteractiveShell实例,如果没有注册任何InteractiveShell实例,则不返回None。在笔记本中工作正常。
我找到了两种解决方法。 1.将get_ipython导入普通的外壳程序将无法正常工作,直到您通过ipython运行它会创建get_python作为全局变量
$ ipython python/myscripy.py
2。在您有一个准备就绪的python shell实例正在运行时,注释掉所有get_ipython命令
我希望这也会对某人有所帮助