C++
Yuckfu
这个作者很懒,什么都没留下…
展开
-
opencv k-means
#include "opencv2/highgui.hpp" #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include using namespace cv; using namespace std; // static void help() // { // cout << "\nThis program原创 2016-03-20 10:53:20 · 239 阅读 · 0 评论 -
opencv笔记 RotatedRect类
int main() { Mat img(200, 200, CV_8UC3, Scalar(0)); RotatedRect rRect = RotatedRect(Point2f(100, 100), Size2f(100, 50), 30);//建立一个矩形,方向为逆时针30度 Point2f vectices[4];//定义一个2位点向量 rRect.points(vectic原创 2016-03-22 21:42:12 · 311 阅读 · 0 评论