歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

用OpenCV設置圖像拷貝和覆蓋

用OpenCV設置圖像拷貝和覆蓋

  1. int  imageClone(IplImage* pi,IplImage** ppo)  //  復制 IplImage 位圖   
  2. {  
  3.     if (*ppo) {  
  4.         cvReleaseImage(ppo);                //  釋放原來位圖   
  5.     }  
  6.     (*ppo) = cvCloneImage(pi);              //  復制新位圖   
  7.     return(1);  
  8. }  
  9.   
  10. int  imageReplace(IplImage* pi,IplImage** ppo)  //  位圖替換   
  11. {  
  12.     if (*ppo)   
  13.         cvReleaseImage(ppo);                //  釋放原來位圖   
  14.     (*ppo) = pi;                            //  位圖換名   
  15.     return(1);  
  16. }  
Copyright © Linux教程網 All Rights Reserved