06 2017 档案
摘要:#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& ...
阅读全文
摘要:#include "opencv.hpp" class Histogram1D{ private: int histSize[1]; //项的数量 float hranges[2]; //像素的最小及最大值 const float *ranges[1]; int channels[1]; //仅用到一个通道 publ...
阅读全文
摘要:/* ******* GdiplusUserU.h ********** ********* GDI+图像操作函数声明 ********** */ /* author: autumoon */ #pragma once #include //Cstring #include using namespace Gdiplus; #include "StrDirFileU.h"...
阅读全文
摘要:/* ******* DemReader.h ********** ********* DemReader常用操作函数声明 ********** */ /* author: autumoon */ #pragma once #include "StrDirFileU.h" #include "gdalUser.h" #include #define NoData -99999 type...
阅读全文
摘要:#pragma once #include #include "ximage.h" #include "ximagif.h" #include "xiofile.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file #ifdef _DEBUG #pragma com...
阅读全文
摘要:#include #include #include #include #include #include #include #include #include #define BUF_SIZE 256 int copyFile(const char * pSrc, const char *pDes) { FILE *in_file, *out_file; ...
阅读全文
摘要://2015.11.23 #include #include #include #include "Defines.h" #include "OneSeg.h" //定义点 typedef struct _MyPoint { bool flag; double x; double y; _MyPoint(double _x = 0.0, double _...
阅读全文
摘要:#pragma once #include <direct.h> #include <io.h> #include <string> #include <vector> size_t getFiles(std::string path, std::vector<std::string>& files
阅读全文