opencv after install characters look awkward -


this question has answer here:

good day installed vs2013 on windows 8.1 x64 trying install opencv , had alot of problems final error lnk1112: module machine type 'x86' conflicts target machine type 'x64' solve problems used code capture stream usb webcam image frame name wrong name , there window each frame should 1 window display frame stream not window each frame why happening image result , post code enter image description here

#include "stdafx.h" #include<opencv\cv.h> #include<opencv\highgui.h> using namespace cv;  int main(int argc, _tchar* argv[]) {     mat image;     videocapture cap;     cap.open(0);     namedwindow("n", 1);     while (1)     {         cap>>image;         imshow("n", image);         waitkey(33);     }      return 0; } 

thank in advance.

problem solved link had similar

opencv :: multiple unwanted window garbage name

thanks :) having 1 frame , perfect resolution


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -