-
coordinate_system20060324-14=50
说明: 本程序适用于Gps坐标系和北京54或西安坐标系的转换,也可以应用与Gps坐标系和Cgs2000坐标系的坐标转换。(the procedures applicable to the PON coordinates and Beijing or Xi'an 54 coordinate system conversion, and the application can also coordinates and PON Cgs2000 coordinates the coordinate transformation.)
- 2006-03-29 13:41:04下载
- 积分:1
-
图像配准源码(ncc)
说明: matlab的图像配准源码,对图像处理理解有帮助(The source code of image registration in MATLAB is helpful for the understanding of image processing)
- 2020-03-25 13:40:16下载
- 积分:1
-
MMS_20100911
it维修管理系统+网站,原创,接修、派工、更正、返修,维修记录,客户管理,客户网站查询维修情况等。(it maintenance management system+ site, the original, then repair, dispatching, correction, repair, maintenance records, customer management, customer website maintenance and so on.)
- 2011-06-14 22:26:30下载
- 积分:1
-
vc-zhuru
一段注入代码,简单易用,适合研究
用外挂的可以看看(Inject code section, easy to use, suitable for research)
- 2013-03-26 22:21:43下载
- 积分:1
-
滤波算法代码
一阶低通滤波算法,用于做传感器算法,非常实用(First-order low-pass filtering algorithm)
- 2020-06-23 13:40:02下载
- 积分:1
-
触摸屏
void gui_fill_circle(u16 x0,u16 y0,u16 r,u16 color)
{
u32 i;
u32 imax = ((u32)r*707)/1000+1;
u32 sqmax = (u32)r*(u32)r+(u32)r/2;
u32 x=r;
gui_draw_hline(x0-r,y0,2*r,color);
for (i=1;isqmax)// draw lines from outside
{
if (x>imax)
{
gui_draw_hline (x0-i+1,y0+x,2*(i-1),color);
gui_draw_hline (x0-i+1,y0-x,2*(i-1),color);
}
x--;
}
// draw lines from inside (center)
gui_draw_hline(x0-x,y0+i,2*x,color);
gui_draw_hline(x0-x,y0-i,2*x,color);
}
}
//两个数之差的绝对值
//x1,x2:需取差值的两个数
//返回值:|x1-x2|
u16 my_abs(u16 x1,u16 x2)
{
if(x1>x2)return x1-x2;
else return x2-x1;
}
//画一条粗线
//(x1,y1),(x2,y2):线条的起始坐标
//size:线条的粗细程度
//color:线条的颜色
void lcd_draw
- 2022-08-08 02:20:29下载
- 积分:1
-
3.13
读一组整数到vector对象,计算并输出每对相邻元素的和。如果读入元素个数为奇数,则提示用户最后一个元素没有求和,并输出其值。(Read a set of integers to vector objects, calculate and output, and each pair of adjacent elements. If you read an odd number of elements, the last element of the user is prompted no summation, and output its value.)
- 2015-03-04 15:13:14下载
- 积分:1
-
fyp-rs232
rs232 communication for PIC 16f877 using ccs compiler
- 2011-11-01 15:37:14下载
- 积分:1
-
单次多通道adc程序
MSP430F552x Demo - ADC12, Repeated Single Channel Conversions
//
// Description: This example shows how to perform repeated conversions on a
// single channel using "repeat-single-channel" mode. AVcc is used for the
// reference and repeated conversions are performed on Channel A0. Each
// conversion result is moved to an 8-element array called results[]. Test by
// applying a voltage to channel A0, then running. Open a watch window in
// debugger and view the results. Set Breakpoint1 in the index increment line
// to see the array value change sequentially and Breakpoint to see the entire
// array of conversion results in "results[]" for the specified Num_of_Results.
// This can run even in LPM4 mode as ADC has its own clock
//
// MSP430F552x
// &nb
- 2022-01-25 14:37:15下载
- 积分:1
-
一个模拟交易的简单系统
模拟交易的简单服务 基于linux C++ +mysql 数据库 开发而成。
- 2023-08-12 20:35:05下载
- 积分:1