上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: COneTif* pOt = new COneTif(); pOt->m_strTifPath = m_pOt->m_strTifPath; if (!pOt->Initilize()) { return; } const int nBlock = 1024; const int& nImgWidth = pOt->m_nI... 阅读全文
posted @ 2017-12-08 14:14 秋月的私语 阅读(258) 评论(0) 推荐(0)
摘要: 首先下载软件照片处理小工具三合一v1.5或者更高版本。 软件下载地址:http://pan.baidu.com/s/1eSPG4RS 运行软件 选择修改尺寸,快捷键Ctrl+W 先做好备份工作,然后拖入文件或者文件夹,单击开始即可。 阅读全文
posted @ 2017-12-08 10:26 秋月的私语 阅读(440) 评论(0) 推荐(0)
摘要: #pragma once #include #include #include "gdal.h" #include "gdal_priv.h" #include #ifdef _DEBUG #pragma comment(lib, "gdal\\x64\\gdal_i.lib") #else #pragma comment(lib, "gdal\\x64\\gdal_i.lib") #e... 阅读全文
posted @ 2017-12-08 10:19 秋月的私语 阅读(392) 评论(0) 推荐(0)
摘要: //HiperLink.H #ifndef __HYPERLINK_H__ #define __HYPERLINK_H__ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 //////////////////////////////////////////////////////////////////////////... 阅读全文
posted @ 2017-11-14 16:48 秋月的私语 阅读(355) 评论(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 秋月的私语 阅读(1536) 评论(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 秋月的私语 阅读(1129) 评论(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 秋月的私语 阅读(438) 评论(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 秋月的私语 阅读(175) 评论(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 秋月的私语 阅读(292) 评论(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 秋月的私语 阅读(414) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页