2015-07-14 王财勇
下面我们将介绍Mexopencv的使用。 首先介绍几个常用的帮助链接: MATLAB File Help: cv :这里列出了cv里的全部函数 OpenCV 2.3.2 documentation :这里可以搜索到opencv的函数 mexopencv Github主页 mexopencv主页 mex interface for opencv library more 添加Mexopencv的路径 方法一:在matlab中找到Set Path选项,添加mexopencv路径; 方法二:addpath('/path to mexopencv');如我的路径为: addpath('D:/Program Files/mexopencv 继续阅读 »
2020-11-15 ruki
xrepo is a cross-platform C/C++ package manager based on Xmake. Github Official Document It is based on the runtime provided by xmake, but it is a complete and independent package management program. Compared with package managers such as vcpkg/homebrew, xrepo can provide C/C++ packages for more platforms and architec 继续阅读 »
2020-07-29 Robin Wen
文/Robin 知名硬件钱包 Ledger 今天发布 公告,宣称电子商务和营销数据泄露,但是支付信息、加密资产是安全的。 事件经过是怎么样的呢?一位安全研究员在 Ledger 的 bounty program 提醒 Ledger 潜在的网站数据泄漏。在 2020 年 7 月 25 日,Ledger 的数据库存在未授权访问,导致数据泄漏。泄漏的数据包括电子商务和营销数据,具体的数据是客户的邮件地址、订单详情(客户的姓名、邮寄地址、邮件地址、电话号码)。至于数据库的未授权访问是怎么样实现的呢?Ledger 的公告宣称是利用了 API Key,目前这个 API Key 已经失效。 此次安全事故具体涉及到多少数据呢?大概 100 继续阅读 »
2016-07-17 ruki
主页 源码 更新内容 新特性 增加头文件依赖自动检测和增量编译,提高编译速度 在终端中进行颜色高亮提示 添加调试器支持,xmake run -d program ... 改进 增强运行shell的系列接口 更新luajit到v2.0.4版本 改进makefile生成插件,移除对xmake的依赖,并且支持windows/linux/macosx等大部分pc平台 优化多任务编译速度,在windows下编译提升较为明显 Bugs修复 修复安装目录错误问题 修复import根目录错误问题 修复在多版本vs同时存在的情况下,检测vs环境失败问题 继续阅读 »
2016-06-26 ruki
A simplest xmake.lua ```lua -- define a target with named 'demo' target("demo") -- set the target kind, .e.g 'binary' is a console program -- - static: a static library -- - shared: a shared library set_kind("binary") -- add all c source files in the directory: src add_files("src/*.c" 继续阅读 »
2016-06-16 YongHao Hu
C++
160. Intersection of Two Linked Lists Question Write a program to find the node at which the intersection of two singly linked lists begins. 继续阅读 »
2016-06-17 YongHao Hu
C++
Here is a simple example, what is the output of this program? ``` include using namespace std; int main() { float f = 0.0; int i = 5; f = (float)i; cout< 继续阅读 »