opencv倒置图像

Code:
  1. // allocate memory for the convetr image   
  2. dst=cvCreateImage(cvSize(src->width,src->height),   
  3. src->depth,3);   
  4. cvConvertImage(src,dst,CV_CVTIMG_FLIP);//convert image   
  5. then   
  6. cvShowImage...  

 

你可能感兴趣的:(DST)