Articles Comments

{ Berbagi, Menulis, Dan Mengajar } Ilmu… » OpenCV

Camera Calibration

http://opencv.willowgarage.com/documentation/camera_calibration_and_3d_reconstruction.html … Read entire article »

Filed under: OpenCV

Library Wajib OpenCV

cv210.lib cxcore210.lib highgui210.lib   … Read entire article »

Filed under: OpenCV

openCV Toturial

http://www.pages.drexel.edu/~nk752/tutorials.html … Read entire article »

Filed under: OpenCV

OpenCV Camera Calibration

http://dasl.mem.drexel.edu/~noahKuntz/openCVTut10.html … Read entire article »

Filed under: OpenCV

OpenCV 1

// halo.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "cv.h" #include "cxcore.h" #include "highgui.h" int _tmain(int argc, _TCHAR* argv[]) { IplImage *img = cvLoadImage ("Image.bmp"); cvNamedWindow("Image:",1); cvShowImage("Image:",img); cvWaitKey(); cvDestroyWindow("Image:"); cvReleaseImage(&img); return 0; } … Read entire article »

Filed under: OpenCV