作者b92299 (vincent)
看板C_and_CPP
標題[問題] Mat轉IplImage
時間Mon May 26 19:27:28 2014
開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
GCC4.7
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
opencv
現在在測試mat轉成Iplimage
以下程式碼在vs2012上可以跑
Mat Mimg02 ;
Mimg02= imread("0.bmp", 1);
IplImage* img02 ;
img02 = &IplImage(Mimg02);
但在gcc4.7跑的時候,就會出現以下error訊息
taking address of temporary [-fpermissive]
請問有哪位大大可以告知解決方法嗎?
謝謝
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 140.114.85.110
※ 文章網址: http://www.ptt.cc/bbs/C_and_CPP/M.1401103650.A.20A.html
→ Feis:不要用指標. IplImage img02 = IplImage(Mimg02); 之類的 05/26 21:50
→ Qbsuran:IplImage img02 = Mimg02; 這樣就好了 05/27 00:23