Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // opencvteste.cpp: Define o ponto de entrada para a aplicação de console.
  2. //
  3. #include<iostream>
  4. #include<opencvteste.cpp>
  5. #include "stdafx.h"
  6. using namespace std;
  7. using namespace cv;
  8. int main()
  9. {
  10. Mat img = imread("lena.jpg");
  11. namedWindow("image", WINDOW_NORMAL);
  12. imshow("image", img);
  13. waitKey(0);
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement