自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 资源 (9)
  • 收藏
  • 关注

原创 go mod 遇上 gitlab

go mod是官方推行的包依赖管理工具,用这个来管理项目几乎是铁板钉钉的事了。 下面说一下我在公司的gitlab背景条件下,使用go mod 遇到的问题。 一个简单的二级项目,如 gitlab.com/server/service_turnover,即使作为私有项目,也不会遇到问题。 但当go的包层级增加,如 gitlab.com/server/group_apple/go/service_...

2019-08-27 18:33:53 3924

原创 后台开发杂记

工作近一年,觉得应该记录一些东西来帮助自己提高了。这一年基本上是业务需求的开发,涉及无非c++服务器、go服务器、python脚本还有mq、mongo和redis的使用。代码方面没有什么特别值得说的地方。所以暂时先拿一些小问题开刀。(补充一句,c++11标准的引入从理论上提高了程序的性能,但是为这门静态语言引入了更多的细节,使得程序员苦不堪言。)问题1 如何让服务尽可能地分散?这个问题其实很大,但...

2018-04-08 13:03:42 192

原创 【opencv 官方教程】后续1 关于Mat CvMat IplImage

今天根据网友的示例程序,想做一个能显示摄像头fps的实时画面。大概就像下面这个图 结果发现了和官方(opencv 3.2)中完全不相同的类型 IplImage,而且用的是指针(难道还要动态管理内存么)。 这一下把我愁坏了,因为前面的介绍只有Mat类型而非CvMat 或是IplImage,至于CvArr根本就不知道是什么。 好在有网友的总结,让我在多次尝试未果之后终于放弃了使用官方教程的做

2016-12-28 23:19:02 456

原创 【opencv 官方教程】翻译9 GPU加速

Squeeze out every little computation power from your system by using the power of your video card to run the OpenCV algorithms. Similarity check (PNSR and SSIM) on the GPU Compatibility: > OpenC

2016-12-26 19:05:07 677

原创 【opencv 官方教程】翻译8 进阶图像操作--HDR

Use OpenCV for advanced photo processing. High Dynamic Range Imaging Compatibility: > OpenCV 3.0 Author: Fedor Morozov Learn how to create and process high dynamic range images.

2016-12-26 18:22:40 1458

原创 【opencv 官方教程】翻译7 机器学习

机器学习 Machine Learning (ml module) Use the powerful machine learning classes for statistical classification, regression and clustering of data. 这章的东西我实在是能力有限,只能提供一个svm的简介和使用流程: Support

2016-12-26 16:35:42 341

原创 【opencv 官方教程】翻译6 Background Subtraction 和级联分类器

本底扣除Background Subtraction How to Use Background Subtraction Methods Compatibility: > OpenCV 2.4.6 Author: Domenico Daniele Bloisi We will learn how to extract foreground masks from both vid

2016-12-26 15:29:29 1462

原创 【opencv 官方教程】翻译5 视频输入输出

This section contains tutorials about how to read/save your video files. Video Input with OpenCV and similarity measurement Compatibility: > OpenCV 2.0 Author: Bernát Gábor You will learn how

2016-12-26 13:45:06 294

原创 【opencv 官方教程】翻译4 highgui module

本章唯一内容: 添加一个滚动条 Adding a Trackbar to our applications! Compatibility: > OpenCV 2.0 Author: Ana Huamán We will learn how to add a Trackbar to our applications 还记得前面的线性变换Adding (blending)

2016-12-26 13:23:04 245

原创 【opencv 官方教程】翻译3 图像处理 下

Image Processing (imgproc module) In this section you will learn about the image processing (manipulation) functions inside OpenCV. 边缘检测 Canny Edge Detector Compatibility: > OpenCV 2.0 Au

2016-12-26 13:19:27 473

原创 【opencv 官方教程】翻译3 图像处理 上

图像处理 Image Processing (imgproc module) In this section you will learn about the image processing (manipulation) functions inside OpenCV.  平滑处理 Smoothing Images Compatibility: > Open

2016-12-25 23:24:12 411

原创 【opencv 官方教程】翻译2 核心功能 下 傅里叶分离变换 XML格式IO

核心功能 The Core Functionality (core module) Here you will learn the about the basic building blocks of the library. A must read and know for understanding how to manipulate the images on a pixel

2016-12-25 22:30:36 339

原创 【opencv 官方教程】翻译2 核心功能 中 图像操作 线性变换 亮度调整 简单绘图

核心功能 The Core Functionality (core module) Here you will learn the about the basic building blocks of the library. A must read and know for understanding how to manipulate the images on a pixel

2016-12-25 21:31:25 633

原创 【opencv 官方教程】翻译1 基本安装使用 编译工程 读取、显示、保存图片

由于毕设,需要opencv,又没能看到比较合适的教程,所以这里自己进行部分翻译。 我的操作系统:ubuntu16.04,没有使用集成IDE。 官方最新教程 3.2.0-dev 前面其实有编辑过一份翻译,但是又长又不好看,所以决定以要点方式进行总结性翻译,每篇翻译包含以下内容: 本篇总标题 官方原始链接 小节标题1 官方原始链接 小节内容 小节标题2 官方原始

2016-12-25 21:00:25 511 1

原创 【opencv 官方教程】翻译2 核心功能 上

LUT(I, lookUpTable, J); The Core Functionality (core module) Here you will learn the about the basic building blocks of the library. A must read and know for understanding how to manipulate the

2016-12-25 18:52:17 440

原创 文章标题

表层数据传递工具套? socket 工具 程序io重定向 io十字路口

2016-08-28 02:11:03 356

linux双进程交互工具

自己写的一个重定向工具。给出两个程序的path和参数,中间用---隔开,可以将程序从与bash交互改为两程序相交互。注意,这里用到的方法是重定向,遇到的读写问题与本程序无关。如果出现问题,程序一定自行调整过io位置。

2016-08-26

RedirectIO

一个重定向io的代码。以重定向输入输出流的方式启动两个程序,使其从人机交互变为程序交互。

2016-08-26

仿nc(netcat) 简单socket 工具 源码(2016-08-26修正版)

修复了无法显示远程发送数据/关闭连接后无法正常显示的bug;处理了缓冲区满之后的操作。

2016-08-26

xcap 1.0.3【转】

一款网络数据包的抓包、发包工具。支持使用tcl脚本编写脚本。

2016-08-26

仿nc(netcat) 简单socket 工具 源码

一个自己写的仿nc软件。\\\\ 支持记录输入数量、发送数量和接受数量;日志信息错开标准输出流(使用cerr); 支持缓存多行内容一起发送; windows/linux跨平台 直接编译。

2016-08-26

网络包发送工具 网络协议测试器

支持从底层编写网络数据包,支持设计收发规则。

2016-08-25

网络调试助手

比普通的发送助手多一个文件读写功能

2016-08-25

网络协议编写器

可以编写并发送数据包(任意协议层),或者添加规则 验证网络协议。

2016-08-25

Socket tool \ tcp tool \tcp实验工具 \ 仿nc工具

一个自己写的仿nc软件。 支持记录输入字符数量和发送字符数量; 支持缓存多行内容一起发送; windows/linux跨平台。

2016-08-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除