自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 linux下用容器搭建nginx负载均衡

Linux 安装 Nginx - docker转载自::https://www.cnblogs.com/wangwangfei/p/13524070.htmlLinux 下安装 Nginx一、获取镜像docker pull nginx二、启动镜像docker run -p 8888:80 -d nginx验证:http://xx.xxx.xx.xxxx:8888三、配置文件外置在主机上创建目录/disk2/docker/nginx,在该目录下创建conf,lo

2021-07-02 10:56:12 6794

原创 Docker容器定时服务失效解决

网上很多方法没解决,最后摸索出下面的组合命令:crontab root && cron reload && /etc/init.d/cron reload

2021-05-08 10:49:36 426

转载 shell 判断文件夹或文件是否存在

shell 判断文件夹或文件是否存在文件夹不存在则创建if [ ! -d "/data/" ];then mkdir /data else echo "文件夹已经存在"fi文件存在则删除if [ ! -f "/data/filename" ];then echo "文件不存在" else rm -f /data/filenamefi判断文件夹是否存在if [ -d "/data/" ];then echo "文件夹存在" else ech

2021-03-31 15:36:48 1171

转载 Docker容器访问宿主机网络方法

最近部署一套系统,使用nginx作反向代理,其中nginx是使用docker方式运行: 1 $ docker run -d --name nginx $PWD:/etc/nginx -p 80:80 -p 443:443 nginx:1.15 需要代理的API服务运行在宿主机的 1234 端口, nginx.conf 相关配置如下: 1 2 3 4 5 6 7 8 server

2020-08-18 11:32:16 10112

原创 caffe install

https://blog.csdn.net/hjxu2016/article/details/70256147caffe caffe2区别https://www.cnblogs.com/carle-09/p/9033608.html深度学习课程https://github.com/kmario23/deep-learning-drizzlecaffe 加入多标签htt...

2020-08-17 16:04:06 104

原创 python 点滴

1、获取numpy安装路径import numpy as npnp.get_include()当相关路径提示找不到numpy/arrayobject.h没有那个文件或目录;可以将路径加入MakefilePYTHON_INCLUDE原因是写的CMakeLists.txt文件没有添加对C++11的支持,所以在工程目录下的CMakeLists.txt中添加以下语句:SE...

2020-08-17 16:02:25 120

原创 docker容器启动时开启定时服务dockerfile设置

注意:需将定时服务强制用前台的方式启动(默认为后台方式)CMD将是:CMD ["cron", "-f"]

2020-07-15 11:14:41 2729

原创 图像处理常用经典算法资源整理

二值化方法介绍https://www.cnblogs.com/Imageshop/p/3307308.htmlhttps://github.com/jingweizhanghuai/image图像增强方法介绍https://www.cnblogs.com/molakejin/p/5766127.htmlhttps://www.cnblogs.com/sleepwalker/p/...

2020-05-22 15:29:26 1355

原创 shell下看目录下文件个数

ls -l |grep "^-"|wc -l 或 find ./company -type f | wc -l 查看某目录下文件的个数,包括子目录里的。 ls -lR|grep "^-"|wc -l 查看某文件夹下目录的个数,包括子目录里的。 ls -lR|grep "^d"|wc -l 说明: ls -l 长列表输出该目录下文件信息(注意这里的文件,不同于一般的文件,可能是目录、链接、设备文件等) ...

2020-05-20 14:01:22 1127

原创 区块链应用示例

一是应用在死猪无害化处理理赔产业链上,降低理赔成本。根据国务院要求,在 2020 年前要完成死猪无害化处理体系建设。原来养猪户发现死猪后,需上报保险公司,保险公司派勘察员现场勘察,确认之后等无害化处理厂将死猪回收处理后,保险公司才能进行理赔,整个流程耗时费力。应用“猪脸识别”技术,可以将整个流程线上化,养殖户只需将死猪照片上传给保险公司和无害化处理厂,无害化处理厂将猪回收,处理前在传送带再对死猪进行拍照匹配,便可实现自动化理赔,每头猪的理赔成本由原来的 6 元钱降低为 6 毛钱,节省 90% 的理

2020-05-14 19:09:03 464

原创 python 客户端上传图片及图片url 并指定headers

本地数据import requestsurl = "localhost:8888"payload = {'top': '3'}files = [ ('image_file', open('/data/test.jpg','rb'))]headers= {}response = requests.request("POST", url, headers=headers, data = payload, files = files)print(response.text.enc.

2020-05-13 11:18:51 451

原创 linux下监控程序并崩溃重启

if test $( pgrep -f $1 | wc -l ) -eq 0 then echo "进程不存在" else echo "存在进程" fi 执行 crontab -e里面输入 */1 * * * * /bin/bash /home/automonitor.sh 代表一分钟执行一次脚本!/bin/shserverpid=`ps -aux|grep -v 'grep'|grep -c '/servertest'`ulimit -c unlimite...

2020-05-12 20:06:05 682

转载 Ubuntu添加和设置开机自动启动程序的方法

一、Ubuntu添加开机自动启动程序的方法1. 开机启动时自动运行程序Linux加载后, 它将初始化硬件和设备驱动, 然后运行第一个进程init。init根据配置文件继续引导过程,启动其它进程。通常情况下,修改放置在/etc/rc或/etc/rc.d 或/etc/rc?.d目录下的脚本文件,可以使init自动启动其它程序。例如:编辑/etc/rc.d/rc.local 文件(该文件通常是系统最后启动的脚本),在文件最末加上一行“xinit”或“startx”,可以在开机启动后直接进入

2020-05-12 19:12:01 1501

原创 超时退出异常捕获

//超时中断boost::thread api_caller(::api_function, arg1, arg2);if (api_caller.timed_join(boost::posix_time::milliseconds(500))){//API call returned within 500ms}else{//API call timed out}//采用bind ,ref使其用引用的方式进行值传递void ReceiveMessage(int msgID,..

2020-05-12 15:57:40 556

转载 图像纹理特征——基于灰度共生矩阵

图像局部纹理特征——GLCM(Grey-Level Co-occurrence Matrix)潘凌昀关注0.0782017.06.02 12:38:57字数 891阅读 4,692本文参考自OpenCV22(灰度共现矩阵/灰度共生矩阵)一、什么是灰度共生矩阵(Grey-Level Co-occurrence Matrix)一种描述图像局部区域或整体区域的某像素与相邻...

2019-12-04 11:51:04 3036

原创 python 调用系统命令os

一、获取环境变量import osenv_dist = os.environ# 打印所有环境变量,遍历字典for key in env_dist: print key + ' : ' + env_dist[key]二、os.system(cmd)与os.popen(cmd)的区别os.system(cmd)返回结果为0(成功) 1,2os.popen(cmd)返回...

2019-11-29 17:22:03 314

原创 ubuntu 中文乱码

一、查看当前系统字符设置localeroot@7898u998:~/home/test/# localeLANG=LANGUAGE=LC_CTYPE="zh_CN.UTF-8"LC_NUMERIC="zh_CN.UTF-8"LC_TIME="zh_CN.UTF-8"LC_COLLATE="zh_CN.UTF-8"LC_MONETARY="zh_CN.UTF-8"LC_ME...

2019-11-19 17:14:43 160

转载 薄板样条插值——转载(记录)

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。本文链接:https://blog.csdn.net/VictoriaW/article/details/70161180插值假设已知函数y=f(x)y=f(x)在N+1N+1个点x1,x2,⋯,xN+1x1,x2,⋯,xN+1处的函数值y1,y2,⋯,yN+1y1,y2,⋯,yN+1,但...

2019-11-01 14:32:04 998

原创 手写字体生成

风格迁移在图像应用https://github.com/LDOUBLEV/style_transfer-perceptual_loss基于风格迁移的手写字体生成http://www.dataguru.cn/article-11281-1.html论文:http://www.doc88.com/p-8058499366708.html...

2019-10-28 16:37:25 2347

原创 交叉编译

一、交叉编译环境安装sudo apt-get install gcc-5-powerpc64le-linux-gnusudo apt-get install g++-5-powerpc64le-linux-gnusudo apt-get install g++-5-multilib-powerpc64le-linux-gnu二、修改powerpc交叉编译cmake...

2019-10-26 09:46:36 342 1

转载 ROC与AUC

转自:https://www.jianshu.com/p/8abf429bf587ROC的全名叫做Receiver Operating Characteristic,其主要分析工具是一个画在二维平面上的曲线——ROC 曲线。平面的横坐标是false positive rate(FPR),纵坐标是true positive rate(TPR)。对某个分类器而言,我们可以根据其在测试样本上的表现得...

2019-10-16 13:50:06 121

转载 shell脚本截取字符串

测试字符串var=1234567890abcedef12031、使用#截取0以后的内容echo ${var#*0}结果:abcedef1203#表示操作符,*0表示从左往右找到第一个0,截取0之后的所有字符echo ${var##*0}结果:3#表示操作符,*0表示从右往左找到第一个0,截取0之后的所有字符...

2019-09-04 19:58:46 386

转载 Shell脚本逐行读取文件

转自:https://www.cnblogs.com/mgzc-1508873480/p/7866915.html方法1:while循环中执行效率最高,最常用的方法。while read linedoecho $linedone < filename注释:这种方式在结束的时候需要执行文件,就好像是执行完的时候再把文件读进去一样。方法2 : 管道法: cat $F...

2019-09-04 19:56:29 662

转载 Shell脚本判断文件是否存在

转自::https://www.cnblogs.com/weijiangbao/p/7862278.html#shell判断文件夹是否存在#如果文件夹不存在,创建文件夹if [ ! -d "/Top" ]; thenmkdir -p /Topfi#shell判断文件,目录是否存在或者具有权限folder="/Top"file="/Top/test.txt"# -...

2019-09-04 19:54:40 14095

转载 ubuntu安装包查找及安装

转自:https://www.cnblogs.com/the-tops/p/7600985.html官方包源: http://packages.ubuntu.com/ubuntu下当前安装的包保存在在:/var/cache/apt/archivesubuntu下当前安装的运用: /usr/share/applications包查找安装的命令形式,有两种为:apt 和 dpkg...

2019-05-09 11:27:16 1358

转载 error: there are no arguments to ‘H5Fis_hdf5’ that depend on a template parameter

### Issue summaryI know this is a build issue that is not supposed to be here, but it relates to the merge verification procedures that did not catch this **build error**Merge pull request #6346 fr...

2019-02-09 11:14:39 3437 2

原创 阿里云OCR识别服务python3调用及批量测试

#!/usr/bin/env python# -*- coding: utf-8 -*-import sys,osimport base64import timeimport jsonimport urllib.parseimport urllib.requestfrom com.aliyun.api.gateway.sdk import clientfrom com.al...

2018-12-14 18:10:27 2399 1

转载 C++排序索引 vector

c++中sort算法只能数据进行排序,不能像matlab那样返回索引排序,可以使用下列方法解决使用c++11:template &lt; typename T&gt; vector&lt; size_t&gt; sort_indexes(const vector&lt; T&gt; &amp; v) { // initialize original index locat...

2018-12-03 09:03:06 2165

转载 C++里将string类字符串(utf-8编码)分解成单个字(可中英混输)

最近在建词典,使用Trie字典树,需要把字符串分解成单个字。由于传入的字符串中可能包含中文或者英文,它们的字节数并不相同。一开始天真地认为中文就是两个字节,于是很happy地直接判断当前位置的字符的ASCII码是否处于0~127之间,如果是就提取一个字符,否则提取两个。在测试分字效果的时候,这种方法出了问题。比如我传一个“abcde一二三四五”进去,abcde可以正常分解成 a b c d e,而...

2018-11-05 15:29:01 1580 1

转载 string 全角转半角

string ToHalf1(string str) { string result = ""; unsigned char tmp; unsigned char tmp1; for (unsigned int i = 0; i &lt; str.length(); i++) { tmp = str[i]; tmp1 = str[i + 1...

2018-08-29 19:31:18 1051

转载 shell脚本命令字符串

转自:https://www.jb51.net/article/31233.htm工作中字符串操作举例 filename='/home/admin/jobs/CnClickstat/DFSLoader/loader.cfg' #下面是使用shell字符串操作 buName1=${filename#*/jobs/} #去除'/home/admin/jobs/CnClickstat/DFS...

2018-08-27 17:23:06 1927

转载 linux convert 常用命令

mogrify -format png *.jpg上面命令将会把目录下面所有的jpg文件转化为png格式。 convert还可以把多张照片转化成pdf格式:convert *.jpg foo.pdf大小缩放比如我们要为一个普通大小的图片做一个缩略图,我们可以这样convert -resize 100x100 foo.jpg thumbnail.jpg你也可以用百分比,这样显的更为直...

2018-08-04 10:57:01 6234

转载 pdf 去水印

转自:http://yuting-lv.iteye.com/blog/1887365遇到加密/带水印/无书签目录的pdf文件,不好编辑,不易导航 解密pdf文件:用的DecrptPDF去除文件密码,类似的软件有不少 pdf加书签:原始pdf文件src.pdf用pdf补丁丁“自动生成书签”功能,自动提取标题信息生成书签信息文件info.xml,补丁丁手册里有例子pdf补丁丁“处理/制作PDF文件”,...

2018-07-04 08:51:01 3279

原创 source ~/.bashrc 语法错误: 未预期的文件结尾错误 解决

运行命令source ~/.bashrc 在第三步修改环境变量时,执行source ~/.bashrc时出现bash: /home/fin/.bashrc: 行 117: 语法错误: 未预期的文件结尾错误我恢复了几次.bashrc文件后,现在一打开终端就出现bash: /home/fin/.bashrc: 行 117: 语法错误: 未预期的文件结尾这种错误。注册: 2008-08-13 8:48帖...

2018-05-21 10:06:32 19633 13

原创 linux xorg占用显存过大解决

一、通过Ctrl + Alt +F1~F6任意一个进入文字界面;登录,nvidia-smi查看显存占用二、回到图形界面:Ctrl + Alt + F7再次nvidia-smi查看显存占用,可发现显存已经明显降了下来...

2018-04-26 14:25:15 16801 9

转载 std::shared_ptr 与普通指针的转换

转自 https://blog.csdn.net/northeastsqure/article/details/77962393shared_ptr 是一个类,用模板支持很多类型。1.shared_ptr到普通指针shared_ptr&lt;int&gt;shared_a(10);int *b=NULL;b = &amp;*shared_a;//*share_a 拷贝shared_a里面值创建临时...

2018-03-28 15:19:10 6561

转载 Linux shell 之 提取文件名和目录名的一些方法总结

转自:https://blog.csdn.net/ljianhui/article/details/43128465很多时候在使用Linux的shell时,我们都需要对文件名或目录名进行处理,通常的操作是由路径中提取出文件名,从路径中提取出目录名,提取文件后缀名等等。例如,从路径/dir1/dir2/file.txt中提取也文件名file.txt,提取出目录/dir1/dir2,提取出文件后缀tx...

2018-03-28 08:47:31 11670

原创 LSTM CTC ocr

参考资料:1.linux下: https://github.com/fendaq/Caffe-OCR2.windows下: https://github.com/senlinuc/caffe_ocr3.LSTM C++ : https://github.com/dlunion/CaffeLSTM-OCR4. warp CTC :   https://github.com/kasyoukin/caf...

2018-02-09 17:59:56 1643

转载 [Ubuntu] 安装 BeyondCompare 文件比较软件

转自:http://blog.csdn.net/dearsq/article/details/51487878Beyond Compare 4.1 and newer require matching package and OS architecture (amd64.deb or i386.deb). Beyond Compare 3 - 4.0.7 require the i386.

2018-01-18 14:07:13 829

转载 bat命令

转自:http://blog.csdn.net/zmken497300/article/details/51814817第一章 批处理基础第一节 常用批处理内部命令简介批处理定义:顾名思义,批处理文件是将一系列命令按一定的顺序集合为一个可执行的文本文件,其扩展名为BAT或者CMD。这些命令统称批处理命令。小知识:可以在键盘上按下Ctrl+C组合键来强行终止一个批处理的执行过程。

2017-12-04 18:11:05 967

CVPR2019-ocr.zip

Online handwritten Chinese text recognition (OHCTR) is a challenging problem as it involves a large-scale character set, ambiguous segmentation, and variable-length input sequences. In this paper, we exploit the outstanding capability of path signature to translate online pen-tip trajectories into informative signature feature maps using a sliding window-based method, successfully capturing the analytic and geometric properties of pen strokes with strong local invariance and robustness. A multi-spatial-context fully convolutional recurrent network (MC-FCRN) is proposed to exploit the multiple spatial contexts from the signature feature maps and generate a prediction sequence while completely avoiding the difficult segmentation problem. Furthermore, an implicit language model is developed to make predictions based on semantic context within a predicting feature sequence, providing a new perspective for incorporating lexicon constraints and prior knowledge about a certain language in the recognition procedure. Experiments on two standard benchmarks, Dataset-CASIA and Dataset-ICDAR, yielded outstanding results, with correct rates of 97.10% and 97.15%, respectively, which are significantly better than the best result reported thus far in the literature.

2020-05-28

基于深度学习的文字识别技术现状及发展趋势.pdf

为线上查找到的金莲文老师演讲ppt资源;主要讲述了深度学习下文字的识别现状,应用场景、发展趋势。主要讲述了深度学习下文字的识别现状,应用场景、发展趋势。主要讲述了深度学习下文字的识别现状,应用场景、发展趋势。主要讲述了深度学习下文字的识别现状,应用场景、发展趋势。

2020-05-28

人脸识别、行人ReID图像分割

Human parsing has been extensively studied recently (Yamaguchi et al. 2012; Xia et al. 2017) due to its wide applications in many important scenarios. Mainstream fashion parsing models (i.e., parsers) focus on parsing the high-resolution and clean images. However, directly applying the parsers trained on benchmarks of high-quality samples to a particular application scenario in the wild, e.g., a canteen, airport or workplace, often gives non-satisfactory performance due to domain shift. In this paper, we explore a new and challenging cross-domain human parsing problem: taking the benchmark dataset with extensive pixel-wise labeling as the source domain, how to obtain a satisfactory parser on a new target domain without requiring any additional manual labeling? To this end, we propose a novel and efficient crossdomain human parsing model to bridge the cross-domain differences in terms of visual appearance and environment conditions and fully exploit commonalities across domains. Our proposed model explicitly learns a feature compensation network, which is specialized for mitigating the cross-domain differences. A discriminative feature adversarial network is introduced to supervise the feature compensation to effectively reduces the discrepancy between feature distributions of two domains. Besides, our proposed model also introduces a structured label adversarial network to guide the parsing results of the target domain to follow the high-order relationships of the structured labels shared across domains. The proposed framework is end-to-end trainable, practical and scalable in real applications. Extensive experiments are conducted where LIP dataset is the source domain and 4 different datasets including surveillance videos, movies and runway shows without any annotations, are evaluated as target domains. The results consistently confirm data efficiency and performance advantages of the proposed method for the challenging cross-domain human parsing problem. Abstract—This paper presents a robust Joint Discriminative appearance model based Tracking method using online random forests and mid-level feature (superpixels). To achieve superpixel- wise discriminative ability, we propose a joint appearance model that consists of two random forest based models, i.e., the Background-Target discriminative Model (BTM) and Distractor- Target discriminative Model (DTM). More specifically, the BTM effectively learns discriminative information between the target object and background. In contrast, the DTM is used to suppress distracting superpixels which significantly improves the tracker’s robustness and alleviates the drifting problem. A novel online random forest regression algorithm is proposed to build the two models. The BTM and DTM are linearly combined into a joint model to compute a confidence map. Tracking results are estimated using the confidence map, where the position and scale of the target are estimated orderly. Furthermore, we design a model updating strategy to adapt the appearance changes over time by discarding degraded trees of the BTM and DTM and initializing new trees as replacements. We test the proposed tracking method on two large tracking benchmarks, the CVPR2013 tracking benchmark and VOT2014 tracking challenge. Experimental results show that the tracker runs at real-time speed and achieves favorable tracking performance compared with the state-of-the-art methods. The results also sug- gest that the DTM improves tracking performance significantly and plays an important role in robust tracking.

2020-05-27

对抗学习-图像生成Gan.zip

几篇gan论文。We investigate conditional adversarial networks as a general-purpose solution to image-to-image translation problems. These networks not only learn the mapping from input image to output image, but also learn a loss func- tion to train this mapping. This makes it possible to apply the same generic approach to problems that traditionally would require very different loss formulations. We demon- strate that this approach is effective at synthesizing photos from label maps, reconstructing objects from edge maps, and colorizing images, among other tasks. As a commu- nity, we no longer hand-engineer our mapping functions, and this work suggests we can achieve reasonable results without hand-engineering our loss functions either

2020-05-25

人流统计及视频人流属性分析相关监控专利.zip

安防监控相关的,人流统计、人脸属性分析专利。一种人群跟踪及人流量统计的方法及装置;人流量统计的方法及装置;一种基于人脸属性的人群分析方法及装置。

2020-05-21

单向准连通的表格线检测算法_彭绍湖.pdf

针 对 表 格 框线存 在 倾 抖 破 裂 断裂及 字符 与 表线 粘 连 等情 况 对 表格 框 线的 检 浏 方 法 进行 了 深入 研 究了 表格 框 线 检 浏 与处 理 相 结 合 的 方 法获 取 表 线。采 用在表 格框线 检 浏 中 提 出 基 于 单 向 准 连 通 的 检 浏 方 法 有 效 地 克 服 了框 线 的 倾 料 破裂及 拈连 等情 况 在 表 格 框线 的 处 理 中 采 用 对 检 浏 线 的 连 接 和 筛 选 的 方 法 有 效 解 决 了 表 格 框 线 断 裂的 问 题。通过 大 1 的 实 脸 表 明 该 方 法 能 取 得 较好 的 检 浏 效果

2020-05-20

handwriting.zip

OCR相关的一些论文 At present, text orientation is not diverse enough in the existing scene text datasets. Specifically, curve-orientated text is largely out-numbered by horizontal and multi-oriented text, hence, it has received minimal attention from the community so far. Motivated by this phenomenon, we collected a new scene text dataset, Total-Text, which emphasized on text orientations diversity. It is the first relatively large scale scene text dataset that features three different text orientations: horizontal, multi- oriented, and curve-oriented. In addition, we also study several other important elements such as the practicality and quality of ground truth, evaluation protocol, and the annotation process. We believe that these elements are as important as the images and ground truth to facilitate a new research direction. Secondly, we propose a new scene text detection model as the baseline for Total-Text, namely Polygon-Faster-RCNN, and demonstrated its ability to detect text of all orientations.

2020-05-20

tiplog.odt

要进行准确的人流密度估计,面临了如下的难点 1.低分辨率:可以看看UCF Crowd Counting 50这个数据集,在很多密集的情况下,一个人头的pixel可能只有5*5甚至更小,这就决定了基于检测的很多方法都行不通; 2.遮挡严重:在人群中,头肩模型都难以适用更不用说人体模型,头部之间的遮挡都挺严重; 3.透视变换:简而言之就是近大远小,什么尺度的头部都可能出现。

2020-05-19

paper——crf,attention

一些深度学习论文;senet ,east,pixel-anchor,face-detection 等;senet ,east,pixel-anchor,face-detection 等;senet ,east,pixel-anchor,face-detection 等;senet ,east,pixel-anchor,face-detection 等;senet ,east,pixel-anchor,face-detection 等;senet ,east,pixel-anchor,face-detection 等;senet ,east,pixel-anchor,face-detection 等论文。

2020-05-18

大数运算c++

大数运算代码;写了大数运算基本的加减乘除、矩阵求逆运算及矩阵加减乘除。采用字符数组的方式实现,可以通过宏来设定所需要的精度,包括小数点后的位数。

2016-07-31

vs10.0助手

vs10.0助手

2016-07-31

vs6.0 助手

VS6.0助手

2016-07-31

QT opencv camera

QT调用opencv操作摄像头,并上传拍摄图像到服务器获取相应结果。

2016-02-05

C编程指南及面试逻辑题与答案

C语言深度剖析教程,c,c++编程指南教程,计算机面试逻辑题及答案(word版)

2014-04-17

VC2010,opencv,matlab2012混合编程方法总结

介绍了VC调用matlab的方法,及相关配置;并给出了示例;给出了opencv中CvMat,Mat,IPlimage以及Matlab中mexArray的相互转换方法。转换后即可对其中的函数进行相互的调用和传递综合。

2013-01-11

计算机绘图片书中的源代码

《VC++绘图程序实例及典型习题》一书中的源代码,有打开图像,绘图,三维图形,动画图形绘制方面的代码。

2012-11-30

空空如也

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

TA关注的人

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