opencv倒置图像

前端之家收集整理的这篇文章主要介绍了opencv倒置图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Code:
  1. //allocatememoryfortheconvetrimage
  2. dst=cvCreateImage(cvSize(src->width,src->height),
  3. src->depth,3);
  4. cvConvertImage(src,dst,CV_CVTIMG_FLIP);//convertimage
  5. then
  6. cvShowImage...
原文链接:https://www.f2er.com/javaschema/287367.html

猜你在找的设计模式相关文章