摘要:
//HiperLink.H #ifndef __HYPERLINK_H__ #define __HYPERLINK_H__ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 //////////////////////////////////////////////////////////////////////////... 阅读全文
摘要:
#pragma once #include "opencv.hpp" #include "StdStrFile.h" void CurvePoly(const std::vector& vPtsInput, std::vector &curvePoint); #include "CurvePoly.h" //三次贝塞尔曲线 float bezier3funcX(float uu, ... 阅读全文
摘要:
/** @mainpage Library SimpleIni File SimpleIni.h Author Brodie Thiesfield [code at jellycan dot com] Source https://github.com/brofield/simp... 阅读全文
摘要:
#pragma once #include #define PI 3.1415926535897932384626433832795 #define DB_MAX 1.7976931348623158e+308 /* max value */ typedef struct _MyPoint { double x; double y; _MyPo... 阅读全文
摘要:
#pragma once typedef struct XPOINT32Ftag { double x; double y; XPOINT32Ftag(double _x, double _y) { x = _x; y = _y; } }POINT32F; //返回true 为相交,false为不相交 bool cx... 阅读全文
摘要:
#pragma once #include #include #include "gdal.h" #include "gdal_priv.h" #include enum _PIC_TYPE_ { Pixel_Byte = 0, Pixel_Int16 = 1, Pixel_SInt16 = 2, Pixel_Int32 = 3, Pixel_SI... 阅读全文
摘要:
#pragma once #include "opencv.hpp" //一条线段,有起点和终点 class COneSeg { public: COneSeg(); COneSeg(cv::Vec4d v4d); COneSeg(cv::Point2d p1, cv::Point2d p2); COneSeg(const double& x1, const d... 阅读全文
摘要:
#pragma once void RunCrashHandler(); #include "MiniDump.h" #include #include #include #include #pragma comment(lib, "dbghelp.lib") inline BOOL IsDataSectionNeeded(const WCHAR* pModuleName) { ... 阅读全文
摘要:
/* ******* MfcStrFile.h ********** ********* 字符串、文件、目录操作函数声明 ********** */ /* author: autumoon */ #pragma once #ifdef _X86_ #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microso... 阅读全文
摘要:
#pragma once #include #include #include #include class CStdStr { public: CStdStr(); ~CStdStr(); //字符操作 static std::string AddSlashIfNeeded(const std::string strDir, const char& ... 阅读全文