摘要: MySQL 入门教程 转http://www.cnblogs.com/mr-wid/archive/2013/05/09/3068229.html MySQL的相关概念介绍 MySQL 为关系型数据库(Relational Database Management System), 这种所谓的"关系型 阅读全文
posted @ 2016-08-26 09:35 lhuan 阅读(373) 评论(0) 推荐(0)
摘要: “创建数组”函数 一、位置:“函数”-“编程”-“数组”-“创建数组” 其图标为: 图1 图标 二、简介: “创建数组”函数有两种模式,一种是“连接模式”,一种是“添加模式”。 如需切换两种模式,可右键单击“创建数组”函数,切换连接输入菜单项。 “创建数组”函数默认输入端数量为1。如需添加输入,可右 阅读全文
posted @ 2016-08-20 21:21 lhuan 阅读(6968) 评论(0) 推荐(0)
摘要: 转:http://blog.csdn.net/xiao_lxl/article/details/43307993 火焰检测小程序 前几天,偶然看到了An Early Fire-Detection Method Based on Image Processing ,The Author is:Thou 阅读全文
posted @ 2016-08-11 21:47 lhuan 阅读(8055) 评论(1) 推荐(0)
摘要: 已知两点坐标和半径求圆心坐标程序 #include <iostream> #include <fstream> #include <cmath> using namespace std; ofstream fout; typedef struct { double x; double y; }Poi 阅读全文
posted @ 2016-08-09 16:53 lhuan 阅读(3950) 评论(0) 推荐(0)
摘要: 问题: 已知圆上三个点坐标分别为(x1,y1)、(x2,y2)、(x3,y3) 求圆半径R和圆心坐标(X,Y) X,Y,R为未知数,x1,y1,x2,y2,x3,y3为常数 则由圆公式:(x1-X)²+(y1-Y)²=R² (1)式(x2-X)²+(y2-Y)²=R² (2)式(x3-X)²+(y3 阅读全文
posted @ 2016-08-07 15:46 lhuan 阅读(18519) 评论(1) 推荐(2)
摘要: 英文原文:C++ 11 Threading: Make your (multitasking) life easier 转载:http://www.oschina.net/translate/cplusplus-11-threading-make-your-multitasking-life 介绍 阅读全文
posted @ 2016-08-07 13:00 lhuan 阅读(1634) 评论(0) 推荐(0)
摘要: 一、软件准备 NI LabVIEW软件视觉开发必备软件 1、开发平台:LabVIEW 2015Chinese 32位中文版 链接:http://pan.baidu.com/s/1eRGmFVc 2、NI视觉图像处理函数库:NI Vision Development Module (VDM)视觉开发包 阅读全文
posted @ 2016-07-30 17:33 lhuan 阅读(3020) 评论(1) 推荐(0)
摘要: 回调函数定义:函数作为参数,而发起的函数调用过程称为回调函数。 // _回调函数C++.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include"stdlib.h"#include <stdio.h>using namespace std;int myCm 阅读全文
posted @ 2016-07-29 11:51 lhuan 阅读(313) 评论(0) 推荐(0)
摘要: [摘要]本文是对STL--迭代器(iterator)的讲解,对学习C++编程技术有所帮助,与大家分享。 原文:http://www.cnblogs.com/qunews/p/3761405.html 1 头文件 所有容器有含有其各自的迭代器型别(iterator types),所以当你使用一般的容器 阅读全文
posted @ 2016-07-26 10:54 lhuan 阅读(33336) 评论(1) 推荐(5)
摘要: 转自 http://www.cnblogs.com/tiandsp/archive/2012/01/07/2316006.html 感谢Dsp tianclearclc;img = imread('124.jpg'); % Read image from graphics file [m n t] ... 阅读全文
posted @ 2015-08-04 13:29 lhuan 阅读(2260) 评论(0) 推荐(0)