-
smithcart
通过matlab和C语言的联合编程实现了微波方面smith圆图的功能(Matlab and C language through the joint programming of the microwave aspects of the function chart smith)
- 2011-04-24 16:26:35下载
- 积分:1
-
My3DpointzsSharpGL
C#编写的隧道点云处理程序,实现点云数据的读取显示,可以旋转,缩放等。核心功能有,点云排序,断面提取等(Written in C# tunnel point cloud processing, reading point cloud data display, you can rotate, zoom and so on. Core functions, point cloud sorting section extraction)
- 2014-03-07 13:53:30下载
- 积分:1
-
cylinder
说明: 经典圆柱绕流算例,基于palabos开源软件,计算结果非常好(cylinder flow with palabos)
- 2020-05-11 10:14:35下载
- 积分:1
-
1-D Sod
通过求解黎曼问题来解决一维Sod激波管问题,没有考虑温度因素,包括对密度、速度、压强三个物理属性的计算。(Riemann solution of one dimensional Sod shock tube problem)
- 2021-01-09 21:18:56下载
- 积分:1
-
adc1_pa6_pa7_usart_stm32
利用stm32的adc1,实现规则转换,检测通道pa6和pa7的电压值,并把他们的值放在数组中。串口显示数据方便调试。(Use stm32 the adc1, implement rules conversion, detection channel pa6 and pa7 voltage value, and put their values in an array. Serial display data to facilitate debugging.)
- 2021-04-07 15:19:01下载
- 积分:1
-
录音软件
C#开发的录音程序,源码可以调试,录音程序和生成录音文件全部在bin/debug下(The recording program developed by C#)
- 2018-02-02 18:12:02下载
- 积分:1
-
Gaussian_interpolation
插值算法,具体使用方向为高斯插值,Kriging插值可以参考(Interpolation algorithm, the specific direction of the Gaussian interpolation, Kriging interpolation can refer to)
- 2010-12-08 12:42:56下载
- 积分:1
-
文件传输
socket文件传输 一主一从实现远程数据传输功能,其内容包括两个部分,一个是主站程序,一个是从站程序,经过测试,功能是可以实现的,文件在发送前先给压缩,将压缩包传输到从站,从接受文件并解压。
- 2023-03-31 03:50:04下载
- 积分:1
-
11
学分计算以及录入程序。输入excel的成绩和分数可以输出excel学分(Credit calculation and entry procedures. Enter scores and scores can excel excel export credits)
- 2014-01-13 21:59:50下载
- 积分: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