我正在使用OpenCV
進行圖像處理。其中,我得到這些錯誤請建議做什麼,下面是我的代碼:OpenCV + Python - NameError:未定義名稱'imSize'
import dicom
import Image
import ImageOps
meta=dicom.read_file("E:\A_SHIVA\ANANADAN\IM_0.dcm")
imHeight=meta.Rows
imWidth=meta.Columns
imSize=(imWidth,imHeight)
TT=Image.frombuffer("L",imSize,meta.PixelData,"raw","L",0,1)
TT.save("testOUTPUT.tiff","TIFF",compression="none")
的誤差小於:
Traceback (most recent call last):
File "C:\Users\sairamsystem\AppData\Local\Enthought\Canopy\User\lib\site-packages\IPython\core\interactiveshell.py", line 3066, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "<ipython-input-8-640c37dc4648>", line 1, in <module>
TT=Image.frombuffer('L',imSize,meta.PixelData,"raw","L",0,1)
NameError: name 'imSize' is not defined
歡迎來到StackOverflow!請將您的問題更改爲「使用OpenCV進行圖像處理時發生錯誤」,並添加一個像「我收到以下錯誤{錯誤}」的句子。我怎麼解決這個問題?謝謝!'。這可以提高您的帖子的質量。 –