摘要:
#include /* @param o The customer origin @param x The customer x @Note The return matrix include translation */ cv::Mat ZRotationMatrix(const cv::Point2d o, const cv::Point2d x) { cv::Mat Rz = ... 阅读全文
摘要:
std::vector> fillContour(const std::vector> & _contours) { // sort as x descent y descent. std::vector> contours(_contours); for(size_t i = 0; i sub(contours[i]); std::sort(sub.begin(), sub.end(... 阅读全文
摘要:
#include using namespace cv; struct mouse_para { cv::Mat org; cv::Mat img; std::string winName = ""; // todo: you can add your own members here. }; void on_mouse(int event, int x, int y, i... 阅读全文
摘要:
@echo off echo add current path into environmet... set regpath=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment set evname=BAT_HOME set batpath=c:\bat reg add "%regpath... 阅读全文