摘要: #include "opencv.hpp" class Histogram1D{ private: int histSize[1]; //项的数量 float hranges[2]; //像素的最小及最大值 const float *ranges[1]; int channels[1]; //仅用到一个通道 publ... 阅读全文
posted @ 2017-06-26 09:28 秋月的私语 阅读(624) 评论(0) 推荐(0) 编辑
摘要: /* ******* GdiplusUserU.h ********** ********* GDI+图像操作函数声明 ********** */ /* author: autumoon */ #pragma once #include //Cstring #include using namespace Gdiplus; #include "StrDirFileU.h"... 阅读全文
posted @ 2017-06-26 09:26 秋月的私语 阅读(268) 评论(0) 推荐(0) 编辑
摘要: /* ******* DemReader.h ********** ********* DemReader常用操作函数声明 ********** */ /* author: autumoon */ #pragma once #include "StrDirFileU.h" #include "gdalUser.h" #include #define NoData -99999 type... 阅读全文
posted @ 2017-06-22 15:36 秋月的私语 阅读(285) 评论(0) 推荐(0) 编辑
摘要: #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... 阅读全文
posted @ 2017-06-22 15:35 秋月的私语 阅读(292) 评论(0) 推荐(0) 编辑
摘要: #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; ... 阅读全文
posted @ 2017-06-22 14:42 秋月的私语 阅读(670) 评论(0) 推荐(0) 编辑
摘要: //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 _... 阅读全文
posted @ 2017-06-22 14:38 秋月的私语 阅读(297) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include <direct.h> #include <io.h> #include <string> #include <vector> size_t getFiles(std::string path, std::vector<std::string>& files 阅读全文
posted @ 2017-06-22 14:36 秋月的私语 阅读(170) 评论(0) 推荐(0) 编辑
摘要: int CalcGrade(cv::Mat& src, cv::Mat& grad, int scale/* = 1*/, int delta/* = 0*/, int ddepth/* = CV_16S*/) { cv::Mat src_gray; if (!src.data) { return -1; } cv::GaussianB... 阅读全文
posted @ 2016-10-17 15:57 秋月的私语 阅读(2607) 评论(0) 推荐(0) 编辑
摘要: #include #include //----------- Error Handling Function ------------------- void error(LPSTR lpszFunction) { CHAR szBuf[80]; DWORD dw = GetLastError(); sprintf(szBuf, "%s failed: GetLa... 阅读全文
posted @ 2016-09-08 11:03 秋月的私语 阅读(10433) 评论(0) 推荐(0) 编辑
摘要: //View类 int m_nDCHeight; int m_nDCWidth; HBITMAP m_hBmp; HBITMAP m_hOldBmp; CDC m_memDC; BYTE *m_pFrontBuffer; // 内存buffer =============================== //OnSiz... 阅读全文
posted @ 2016-08-10 10:30 秋月的私语 阅读(433) 评论(0) 推荐(0) 编辑