http://cafe.naver.com/opencv.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=2562 ARToolKit -> // 4채널(RGBA)로 초기화된 IplImage 구조체의 imagData에 프레임의 주소를 대입한다. 참고로, 저는 OpenCV에서 영상 처리를 해서 다시 ART한테 넘겨주는 방법을 구현해봤습니다...^^ ... ART 캡쳐(dsvl이용) -> openCV에서 처리 -> ART 가 영상을 화면에 보여줌 -> ART가 처리된 영상에서 마커를 찾음. ... ... dataPtr = (ARUint8 *)arVideoGetImage(); //ART가 캡쳐한 한 프레임의 주소를 dataPtr에 넣는다. image->imageData = (char *..
http://alumni.media.mit.edu/~cwren/interpolator/
http://www.marcad.com/cs584/Tracking.html http://translate.google.co.kr/translate?u=http%3A%2F%2Fwww.marcad.com%2Fcs584%2FTracking.html&sl=en&tl=ko&hl=ko&ie=UTF-8 ---------------------------------------------------------------------- http://cafe.naver.com/opencv.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=3401 http://cafe.naver.com/opencv.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=1647 http:/..
http://qrcode.sourceforge.jp/\ http://reader.kaywa.com/ http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=04343507
http://sunyzero.egloos.com/4227785
opencv 시작하기 http://opencv.willowgarage.com/wiki/VisualC%2B%2B templatematching http://opencv.willowgarage.com/wiki/TemplateMatching // OpenCV 에서 동영상으로 input 받기 http://cafe.naver.com/opencv/7458 OpenCVLibrary 수정해야하는것 http://www.conv2.com/spboard/board.cgi?id=opencv_errta&action=print_view&gul=11
Liveboard http://www.youtube.com/results?search_query=Liveboard&search_type=&aq=f http://www.youtube.com/watch?v=34e8XEg8DL8 http://www.youtube.com/watch?v=Y7n8hwr7P1k http://www.liveboard.biz/cms/index.php/ge_home.html 재료 http://www.liveboard.biz/internetdemo/InternetDemo.html
http://blog.naver.com/goodlife2235?Redirect=Log&logNo=50038151805 // 영상회전 http://www.newtypeunion.com/28?TSSESSIONnewtypeunioncom=7695a75549a64e4d1b2ebe76164b1109 http://cafe.naver.com/opencv.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=706 http://blog.naver.com/winispirit/30023895414 http://martinblog.tistory.com/786 // 라벨링 http://blog.naver.com/piccoro77.do?Redirect=Log&logNo=100045649991 CVIm..
숫자를 문자로 변경해줍니다! #include //_gcvt ():숫자를 문자로 바꿈. char *_gcvt( double value, int digits, char *buffer );
// 팩토리얼 http://blog.naver.com/wook1379?Redirect=Log&logNo=150006457013 http://cafe.naver.com/rnjstpdufsla.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=151 http://cafe.naver.com/ithack.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=2648 http://cafe.naver.com/rnjstpdufsla.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=121 포인터 밸류, 메모리주소 http://cafe.naver.com/neosafe.cafe?iframe_url=/ArticleRead.nhn%3Fa..
How do I convert an integer to a string? The simplest way is to use a stringstream: #include #include #include using namespace std; string itos(int i) // convert int to string { stringstream s; s
소켓으로 html 연결하기 소스코드가 꽤 길다. #include #include #include void main() { SOCKET skSocket; sockaddr_in saServerAddress; int iPort=80,iStatus; //포트번호 WSADATA wsaData; WORD wVersionRequested; LPHOSTENT lpHost; char szHost[128]; char szSendBuffer[256]; // char szDataBuffer[32768]; char szRecvBuffer[32768]; int iBytesSent; int iBytesReceived; int i; sprintf(szHost,"www.empas.com"); //서버 주소. wVersionReques..