-
gpcpp4
遗传规划问题的C源程序,里面有详细的说明,我就是看这个才懂的(Genetic Programming C source code, which is described in detail, I can understand this is to see the)
- 2008-06-10 21:30:57下载
- 积分:1
-
单片机gpio初始化 gpio.c
#include "GPIO.h"u8 GPIO_Inilize(u8 GPIO, GPIO_InitTypeDef *GPIOx){ if(GPIO > GPIO_P5) return 1; //¿Õ²Ù×÷ if(GPIOx->Mode > GPIO_OUT_PP) return 2; //´íÎó if(GPIO == GPIO_P0) { if(GPIOx->Mode == GPIO_PullUp) P0M1 &= ~GPIOx->Pin, P0M0 &= ~GPIOx->Pin; //ÉÏÀ׼˫Ïò¿Ú if(GPIOx->Mode == GPIO_HighZ) P0M1 |= GPIOx->Pin, P0M0 &= ~GPIOx->Pin; //¸¡¿ÕÊäÈë if(GPIOx->Mode == GPIO_OUT_OD) P0M1 |= GPIOx->Pin, P0M0 |= GPIOx->Pin; //¿ªÂ©Êä³ö if(GPIOx->Mode == GPIO_OUT_PP) P0M1 &= ~GPIOx->Pin, P0M0 |= GPIOx->Pin; //ÍÆÍìÊä³ö } if(GPIO == GPIO_P1) { if(GPIOx->Mode == GP
- 2022-03-01 23:33:04下载
- 积分:1
-
temperature-monitoring
1-Wire总线器件ROM搜索与多点温度监测(1-Wire Bus device ROM search and multi-point temperature monitoring)
- 2013-03-18 22:43:44下载
- 积分:1
-
嵌入式程序设计的文档
该程序设计文档讲诉了有关linux之间即时通信的编写,以及管道通信,对文件的操作,共享队列的创建,对与那些零基础linux的人很有帮助。这些文档浅显易懂,基本初学者都能看懂,除了那些特别笨的的人。
- 2022-10-18 19:35:04下载
- 积分:1
-
zhudianfa
利用逐点法绘制出图形,图形的绘制其实都是由折线组成的,只是每条折线的误差太小了,肉眼根本分辨不出来(use of the point-by-point drawing graphics, the graphics are actually drawn from the composition of the dogleg, only broken each of error is too small, the human eye can not be seen)
- 2006-12-19 10:38:22下载
- 积分:1
-
四参数随机生长法生成多孔介质代码
利用四参数随机生成法生成三维多孔介质,以研究黏土、页岩等的微观流动机制(Using QSGS to construct 3D porous media)
- 2021-03-29 17:29:10下载
- 积分:1
-
C#实现图片中文识别成文本文字,已应用项目中
C#将图片里中文识别成文本文字,中文识别,.net 实现中文识别 支持*.bmp; *.jpg; *.gif; *.jpeg;*.png等图片格式上的中文,文字 识别 【核心代码】 public Form1() { InitializeComponent(); //ocr = new TesseractEngine("./tessdata", "eng", EngineMode.TesseractAndCube);//设置语言 英文 ocr = new TesseractEngine("./tessdata", "chi_sim");//设置语言 中文 // ocr = new TesseractEngine("./tessdata", "jpn");//设置语言 日语 } private void button1_Click(object sender, EventArgs e) { OpenFileDialog filename = new OpenFileDialog(); filename.Filter = "All files(*.*)|*.*|image files(*.bmp)|*.bmp; *.jpg; *.gif; *.jpeg;*.png"; filename.FilterIndex = 2; if (filename.ShowDialog() == DialogResult.OK) { Bitmap bit = new Bitmap(Image.FromFile(filename.FileName.ToString())); Page page = ocr.Process(bit); string str = page.GetText();//识别后的内容 page.Dispose(); pictureBox1.Image = bit; richTextBox1.AppendText(str); } } /// /// 图片颜色区分,剩下白色和黑色 /// /// ///
- 2020-04-24下载
- 积分:1
-
IT
说明: 详细介绍了一种新的仿真软件IT++ 比matlab有更快的执行效率 (Introduced a new simulation software IT++ faster than the efficiency with matlab)
- 2010-05-31 10:05:41下载
- 积分:1
-
chess
局域网内的五子棋游戏,WIN32编程,可以很好的学习windows消息机制(Backgammon games, WIN32 programming LAN can be a good learning windows message mechanism)
- 2015-06-24 15:52:06下载
- 积分:1
-
calibration-3-cameras
C++和halcon结合,用于图形处理时进行三相机标定(C++ and halcon combined for three camera calibration)
- 2013-09-09 10:12:10下载
- 积分:1