摘要: CxImage的功能 Constructors 构造函数 Initialization 初始化 File 文件操作,主要是编解码 Generic 图像基本变化 DSP 图像处理操作 Painting 绘图操作 Multiple Images 多帧图像操作 Transparency 透明层操作 Pal 阅读全文
posted @ 2022-10-30 08:55 leochan007 阅读(69) 评论(0) 推荐(0)
摘要: #include <iostream> #define new_fun(parm) print##parm("this is a printf\r\n"); int main() { //new_fun(oh); //无法编译通过 new_fun(f); getchar(); return 0; } 阅读全文
posted @ 2022-10-26 17:32 leochan007 阅读(48) 评论(0) 推荐(0)
摘要: 以b为中心轴,求a的对称点 阅读全文
posted @ 2022-10-26 11:43 leochan007 阅读(26) 评论(0) 推荐(0)
摘要: //Minidump.h #pragma once class CMinidump { public: CMinidump(); ~CMinidump(); static void CreateDumpFile(LPCSTR lpstrDumpFilePathName, EXCEPTION_POIN 阅读全文
posted @ 2022-10-23 14:38 leochan007 阅读(76) 评论(0) 推荐(0)
摘要: typedef struct tag_ExifInfo { char Version [5]; //EXIF 信息版本 char CameraMake [32]; //DC 制造商 char CameraModel [40]; //DC 型号 char DateTime [20]; //JPG 文件 阅读全文
posted @ 2022-10-15 21:47 leochan007 阅读(22) 评论(0) 推荐(0)
摘要: #include <iostream> #define JMETHOD(type,methodname,arglist) type (*methodname) arglist JMETHOD(int, test_func, (int a, int b)); int add(int a, int b) 阅读全文
posted @ 2022-10-15 21:35 leochan007 阅读(28) 评论(0) 推荐(0)
摘要: 使用流程可参考: https://blog.csdn.net/wxc237786026/article/details/41171079 BOOL CDemoApp::InitInstance() { // 多文档描述 int m_nDocCount; //number of documents C 阅读全文
posted @ 2022-10-15 09:50 leochan007 阅读(33) 评论(0) 推荐(0)
摘要: package main import ( "encoding/json" "fmt" "log" "net/http" ) //<link rel="stylesheet" href="media/index.css"> func indexHandler(w http.ResponseWrite 阅读全文
posted @ 2022-10-11 20:30 leochan007 阅读(21) 评论(0) 推荐(0)
摘要: // 简单实现 cv::namedWindow("Example 2-3", cv::WINDOW_AUTOSIZE); cv::VideoCapture cap; cap.open(0); cout << "Opened file: " << argv[1] << endl; cv::Mat fr 阅读全文
posted @ 2022-09-25 21:16 leochan007 阅读(240) 评论(0) 推荐(0)
摘要: int main(int argc, char** argv) { cv::namedWindow("Example 2-3", cv::WINDOW_AUTOSIZE); cv::VideoCapture cap; cap.open(0); cout << "Opened file: " << a 阅读全文
posted @ 2022-09-25 20:55 leochan007 阅读(92) 评论(0) 推荐(0)