Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <iostream>
  3. #include <string>
  4. #include </home/vlad/Рабочий стол/opencv-3.2.0/include/opencv2/opencv.hpp>
  5. #include </home/vlad/Рабочий стол/opencv-3.2.0/include/opencv/highgui.h>
  6. #include <stdlib.h>
  7. #include <math.h>
  8. #include <vector>
  9.  
  10. using namespace std;
  11.  
  12. int main(int argc, char **argv)
  13. {
  14. IplImage *image ;
  15. image = cvLoadImage("/home/vlad/Рабочий стол/lab4.jpg");
  16. cvNamedWindow("base");
  17. cvShowImage("base", image);
  18. cvWaitKey(0);
  19.  
  20. cout<<"3232n"<<endl;
  21. cvDestroyAllWindows();
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement