-
aspowx
说明: OWC是Office Web Compent的缩写,即Microsoft的Office Web组件,它为在Web中绘制图形提供了灵活的同时也是最基本的机制。在一个Intranet环境中,如果可以假设客户机上存在特定的浏览器和一些功能强大的软件(如IE6和Office 2000/XP/2003),那么就有能力利用Office Web组件提供一个交互式图形开发环境。这种模式下,客户端工作站将在整个任务中分担很大的比重。理论上说Excel能做的图都可以通过OWC画。(OWC is an acronym for Office Web Compent that Microsoft' s Office Web components, in the Web in its graphics rendering, while providing a flexible mechanism is the most basic. In an Intranet environment, if the client can assume the existence of a particular browser, and some powerful software (such as IE6 and Office 2000/XP/2003), then it would be able to take advantage of Office Web components to provide an interactive graphical development environment . This mode, client workstations will be shared throughout the task in a large part. Excel can do in theory plans are available through OWC painting.)
- 2009-08-23 17:16:17下载
- 积分:1
-
ImprovedPedestrianDetectionAlgorithminNighttime
针对夜间动态背景下的行人检测中分割算法受光照条件影响大、误识别多等问题,提出双阈值分割算法和以多目标跟踪为核心的算法框架。新的分割算法解决了行人亮度分布不均时的分割问题,同时在新的框架下可以综合多帧的处理结果进行综合判断,通过将基于支持向量机的识别算法和多目标跟踪算法的融合,降低了系统的计算量,且比一般的系统具有更高的识别率。
(At night the dynamic context of pedestrian detection segmentation algorithm affected by light conditions, and false identification of many other issues, the dual-threshold segmentation algorithm and a multi-target tracking algorithm as the core framework. New segmentation algorithm to solve the uneven distribution of brightness of pedestrians at the time of partition, while in the new framework of an integrated multi-frame can be the result of a comprehensive treatment of the judge, through the support vector machine-based recognition algorithms and multi-target tracking algorithm integration reducing system of calculating the volume, and than a typical system has a higher recognition rate.)
- 2008-08-04 16:06:29下载
- 积分:1
-
Tetris VB source code can be used to prepare the high line
俄罗斯方块 VB 编写的源代码 可用行高-Tetris VB source code can be used to prepare the high line
- 2023-04-27 08:10:04下载
- 积分:1
-
FlashForm
窗体特效,打开进度,支持不规则窗体,建任意形状的窗体(Form effects, open the progress and support the irregular form, built in the form of arbitrary shape)
- 2008-04-29 16:48:53下载
- 积分:1
-
FreeImage3154Win32
开源的FreeImage图形库的Win32平台发行包,可以方便日常的应用开发。(Win32 platform open source graphics library FreeImage distribution package, you can easily everyday application development.)
- 2013-12-28 10:04:06下载
- 积分:1
-
TestLev
说明: 可进行cosa格式水准网数据平差 ,闭合差计算, 粗差探测(It can carry out data adjustment, closure error calculation and gross error detection of cosa format leveling network.)
- 2019-03-03 14:43:29下载
- 积分:1
-
Beginning-Visual-CPP-2010
Beginning Visual C++ 2010
- 2014-10-25 22:17:13下载
- 积分:1
-
1621LCDtest
8051驱动ht1622液晶驱动器的程序(8051 driver ht1622 LCD driver program)
- 2015-09-19 18:22:33下载
- 积分:1
-
四个开关
大学老师布置的作业,第一个关于流水灯,第二个和第三个关于单向流水灯,最后是四闪。(Homework assigned by university teacher)
- 2018-10-24 20:42:05下载
- 积分:1
-
EzReportBuild 2.0报表组件源码和demo及说明
2.0版本添加了多报表页功能,每份报表可设置多页,每页可设置不同的纸张大小、数据表、页面规则等,并可对报表页次序即时调整,同时,优化了显示,报表显示更流畅。EzReportBuild 2.0报表组件,可以完成报表设计、预览、打印等功能,提供接口函数,可以将设计、预览等嵌入到自定的winform中调用,使用简单,调用灵活。在你的工程项目里,新建一个窗体,添加按钮,使用:// 单独打开报表编辑器 private void button1_Click(object sender, EventArgs e) { _Interface.independent_DesignForm(); }打开设计器设计报表,保存报表后可去掉按钮,该工程项目生成的报表,别的应用不能打开查看。如需复杂数据报表,可先生成一个临时数据库表,然后引入报表系统,由于报表数据为按行读取,所以只要能够设计出数据库各字段和内容,就能够生成相应的报表。打印规则为“内容区域”栏目无论所在位置,紧跟页头栏,所以适当调整“页头区域”、“页脚区域”位置,保证按需求输出。制作每页多行数据报表,“内容区域”为自动计算填充“页头区域”、“页脚区域”之间的空间,应适当调整“内容区域”栏目和页头页脚之间的空间,达到最佳打印效果。如需在表格内添加空行,可在生成的报表数据库表中添加空记录即可。 注意:使用时,将fontawesome-webfont.ttf字体文件与exe文件放置在一起,使用Access数据库时,注意路径,如没有安装AccessDatabaseEngine.exe,可在微软网站下载,或在本压缩文件的soft文件夹中安装。 更新关注:https://www.cnblogs.com/qiaoke/p/10365440.html 设计器截图 预览截图 嵌入程序截图 多种纸张同时预览using System;using System.Drawing;using System.Windows.Forms;namespace Demo_1{ public partial class Form1 : Form { RBuild_Interface _Interface = new RBuild_Interface(); // 新建接口 RBuild_Preview rpb = new RBuild_Preview(); // 预览窗口对象 public Form1() { InitializeComponent(); } // 单独打开报表编辑器 private void button1_Click(object sender, EventArgs e) { _Interface.independent_DesignForm(); } // 单独打开报表预览 private void button2_Click(object sender, EventArgs e) { _Interface.independent_PreviewForm(@"测试报表1.rpt", 2, "", "", "", "地址库.mdb"); } private void button3_Click(object sender, EventArgs e) { // 按钮可以使用 b1.Enabled = true; b2.Enabled = true; b3.Enabled = true; b4.Enabled = true; b5.Enabled = true; b6.Enabled = true; b7.Enabled = true; b8.Enabled = true; _Interface.embedded_PreviewForm(rpb, panel1, @"测试报表1.rpt", 2, "", "", "", "地址库.mdb", true); } private void b1_Click(object sender, EventArgs e) { _Interface.preview_FirstPage(rpb); } private void b2_Click(object sender, EventArgs e) { _Interface.preview_PreviousPage(rpb); } private void b3_Click(object sender, EventArgs e) { _Interface.preview_NextPage(rpb); } private void b4_Click(object sender, EventArgs e) { _Interface.preview_LastPage(rpb); } private void b5_Click(object sender, EventArgs e) { _Interface.preview_Search(new Point(200,200)); } private void b6_Click(object sender, EventArgs e) { _Interface.zoom_Menu(rpb,new Point(300,200)); } private void b7_Click(object sender, EventArgs e) { _Interface.print_Page(rpb); } private void b8_Click(object sender, EventArgs e) { int _now, _tol; _now = _Interface.get_NowPage(rpb); _tol = _Interface.get_TotalPage(); MessageBox.Show("当前页:" _now "--- 总页数:" _tol); } }}
- 2019-01-19下载
- 积分:1