-
DataString
ASCII数据块显示(ASCII data block shows)
- 2005-01-13 22:16:11下载
- 积分:1
-
摄像头主板采集项目例程
实现摄像头在oled上 显示
参数能够在FLAS里村存储(Implementation of the camera on OLED
Parameters can be stored in the village of FLAS)
- 2018-03-19 20:41:30下载
- 积分:1
-
cimage_pixel_access_opt
將bitmap存取速度加快,減少記憶體存取所占用的時間,以方便做影像的演算法(Faster access to the bitmap to reduce the occupied memory access time in order to facilitate the algorithm to do image)
- 2009-10-14 18:11:20下载
- 积分:1
-
pigeSort.tar
通过鸽巢排序实现对于数字在10000以内的排列。(For the realization of the arrangement within the digital pigeonhole sort through 10,000.)
- 2016-03-17 17:23:30下载
- 积分:1
-
bestFitDecrease
本代码,直接编译可用,解决NP难问题使用的是局部最优BFD算法,其中用到了链表以及大顶堆排序算法(This code can be compiled directly, and it can solve the NP hard problem. It uses the local optimal BFD algorithm, which uses the linked list and the big stack sort algorithm.)
- 2018-07-19 11:23:22下载
- 积分:1
-
超声波测距(LCD1602显示)
说明: 51单片机超声波测距lcd1602显示,可用于制作避障小车系列,(The LCD display of 51 single chip microcomputer ultrasonic distance measurement can be used to make the series of obstacle avoidance cars)
- 2020-05-09 15:21:18下载
- 积分:1
-
日期控件,单击文本框后,出现日期控件
日期控件,单击文本框后,出现日期控件
-Date of controls, click the text box after the date of the control appears
- 2022-11-19 00:40:04下载
- 积分:1
-
wave
小波学习资料
供初学者和小波爱好者参考用()
- 2007-08-13 17:14:24下载
- 积分:1
-
Birch
这是birch C语言的源代码。里面有详细的代码注释方便学习birch算法(birch c)
- 2012-05-08 09:00:44下载
- 积分:1
-
C#在图片格式转换时设置JPEG压缩级别的实现源码
C#在转换图像格式时设置JPEG压缩级别,运行程序在窗口上单击按钮后,会生成多个版本不同压缩级别的图片,图片大小字节都不一样,如下代码是实现本功能的核心代码:
Bitmap MyBitmap = new Bitmap(@"J001.jpg");
ImageCodecInfo MyDecoder = null;
ImageCodecInfo[] MyDecoders = ImageCodecInfo.GetImageDecoders();
foreach (ImageCodecInfo MyFormat in MyDecoders)
{
if (MyFormat.FormatID == ImageFormat.Jpeg.Guid)
{
MyDecoder = MyFormat;
}
}
System.Drawing.Imaging.Encoder MyEncoder =
System.Drawing.Imaging.Encoder.Quality;
EncoderParameters MyEncoderParameters = new EncoderParameters(1);
//以50中级压缩图像
EncoderParameter MyEncoderParameter = new EncoderParameter(MyEncoder, 50L);
MyEncoderParameters.Param[0] = MyEncoderParameter;
MyBitmap.Save("J50L.jpg", MyDecoder, MyEncoderParameters);
//以100高级压缩图像
MyEncoderParameter = new EncoderParameter(MyEncoder, 100L);
MyEncoderParameters.Param[0] = MyEncoderParameter;
MyBitmap.Save("J99L.jpg", MyDecoder, MyEncoderParameters);
//以0低级压缩图像
MyEncoderParameter = new Enc
- 2022-05-18 00:19:47下载
- 积分:1