摘要:
1. 取边界拟合四线交点取中 这个是个人感觉自由度最大的,应该也是可以达到的精度上限最高的,也支持图像的旋转,如果筛选直线的方法得当对于线的相交角度也没特殊要求,但是手动计算量也较大;本人实现的取四条直线的方法具有局限性,这里只写思路 图片转灰度图cv::Canny取边界cv.HoughLinesP 阅读全文
摘要:
1. 创建C#类库项目 2. 设置项目属性 3. 添加接口以及类源代码 using System; using System.Runtime.InteropServices; namespace AddCom { [Guid("8F5710FD-528A-4474-A673-47717F93EA88 阅读全文
摘要:
尝试zip压缩包密码 实测在五位时就很吃力了 import multiprocessing import zipfile import time import os # 字母数字表 table = [chr(i) for i in range(97, 123)] num = [chr(i) for 阅读全文
摘要:
官方示例 https://github.com/edenhill/librdkafka/blob/master/examples/rdkafka_example.cpp 生产者 #include <iostream> #include <string> #include <cstdlib> #inc 阅读全文
摘要:
关键代码 #include "mainwindow.h" #include "ui_mainwindow.h" #include <QToolBar> #include <QMessageBox> class QMenuBar; class QToolBar; MainWindow::MainWin 阅读全文
摘要:
思路:时间戳取(24*60*60)余,得出时间戳在当日的第多少秒,根据起始与终止时间先后顺序,进行判断 /** * 判断跨天时间段 */ public static boolean isCrossDay(long date, long startTime, long endTime) throws 阅读全文
摘要:
原文 头文件定义 #pragma once #include "framework.h" #include <map> #include <tuple> class CScaleWnd : public CDialogEx { public: // 标准构造函数 CScaleWnd(); CScal 阅读全文
摘要:
原文 实现与测试 #include <vector> #include <string_view> #include <iostream> using namespace std; std::vector<std::string_view> Split(std::string_view sv, ch 阅读全文
摘要:
原文 实现XDLine.hpp #pragma once #include <vector> #include <tuple> #include <algorithm> #include <cmath> namespace DDMath { /** * @brief 最小二乘法,根据三维坐标拟合出一 阅读全文
摘要:
首发 一个简单的OpenGL显示十字坐标系小示例 源码地址:https://github.com/WindSnowLi/XDAxis 主要函数声明 #pragma once #include "QExpandOpenGLWidget.h" class XDAxis : public QExpandO 阅读全文