開發平台(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]
請問有哪位大大可以告知解決方法嗎?
謝謝