Skip to content

Instantly share code, notes, and snippets.

@volkansalma
volkansalma / opencvcpp
Created March 27, 2011 08:00
OpenCV C++
#ifdef _DEBUG
#pragma comment(lib,"opencv_core220d")
#pragma comment(lib,"opencv_highgui220d")
#pragma comment(lib,"opencv_imgproc220d")
#else
#pragma comment(lib,"opencv_core220")
#pragma comment(lib,"opencv_highgui220")
#pragma comment(lib,"opencv_imgproc220")
#endif
@volkansalma
volkansalma / gist:627767
Created October 15, 2010 07:20
Naive Bayes Sınıflandırıcı. http://volkansalma.blogspot.com
#include <iostream>
#include <vector>
#include <fstream>
#include <cmath>
using namespace std;
struct FeatureVector
{