摘要: //HiperLink.H #ifndef __HYPERLINK_H__ #define __HYPERLINK_H__ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 //////////////////////////////////////////////////////////////////////////... 阅读全文
posted @ 2017-11-14 16:48 秋月的私语 阅读(340) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include "opencv.hpp" #include "StdStrFile.h" void CurvePoly(const std::vector& vPtsInput, std::vector &curvePoint); #include "CurvePoly.h" //三次贝塞尔曲线 float bezier3funcX(float uu, ... 阅读全文
posted @ 2017-10-20 16:21 秋月的私语 阅读(1515) 评论(0) 推荐(0) 编辑
摘要: /** @mainpage Library SimpleIni File SimpleIni.h Author Brodie Thiesfield [code at jellycan dot com] Source https://github.com/brofield/simp... 阅读全文
posted @ 2017-07-27 09:32 秋月的私语 阅读(1073) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include #define PI 3.1415926535897932384626433832795 #define DB_MAX 1.7976931348623158e+308 /* max value */ typedef struct _MyPoint { double x; double y; _MyPo... 阅读全文
posted @ 2017-07-27 09:27 秋月的私语 阅读(423) 评论(0) 推荐(0) 编辑
摘要: #pragma once typedef struct XPOINT32Ftag { double x; double y; XPOINT32Ftag(double _x, double _y) { x = _x; y = _y; } }POINT32F; //返回true 为相交,false为不相交 bool cx... 阅读全文
posted @ 2017-07-27 09:25 秋月的私语 阅读(169) 评论(0) 推荐(0) 编辑
摘要: #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... 阅读全文
posted @ 2017-06-28 09:43 秋月的私语 阅读(279) 评论(0) 推荐(0) 编辑
摘要: #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... 阅读全文
posted @ 2017-06-28 09:34 秋月的私语 阅读(390) 评论(0) 推荐(0) 编辑
摘要: #pragma once void RunCrashHandler(); #include "MiniDump.h" #include #include #include #include #pragma comment(lib, "dbghelp.lib") inline BOOL IsDataSectionNeeded(const WCHAR* pModuleName) { ... 阅读全文
posted @ 2017-06-27 09:01 秋月的私语 阅读(558) 评论(0) 推荐(0) 编辑
摘要: /* ******* MfcStrFile.h ********** ********* 字符串、文件、目录操作函数声明 ********** */ /* author: autumoon */ #pragma once #ifdef _X86_ #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microso... 阅读全文
posted @ 2017-06-27 09:00 秋月的私语 阅读(337) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include #include #include #include class CStdStr { public: CStdStr(); ~CStdStr(); //字符操作 static std::string AddSlashIfNeeded(const std::string strDir, const char& ... 阅读全文
posted @ 2017-06-27 08:59 秋月的私语 阅读(394) 评论(0) 推荐(0) 编辑