Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - www.v3.5
Search - www.v3.5 - List
《MATLAB 6.5辅助图像处理》 本书是基于MATLAB 6.5的图像处理工具箱v3.2 (Image Processing Toolbox)编写的,较全面系统地介绍了图像处理工具箱v3.2函数在有噪和退化图像的恢复、图形绘制、图像几何变换、图像增强、二值分析、小波分析和分形几何用于图像处理,以及图形用户界面设计等方面的工程实际应用。全书侧重于图像处理工具箱在工程中的具体应用,通过具体的分析和详细的实例,读者不仅可以对MATLAB图像处理工具箱函数的强大功能有一个深刻了解,更能学会正确运用它快速解决实际问题的方法,从而提高分析问题和解决问题的能力。飞思在线http://www.fecit.com.cn“下载专区”提供书中范例源代码。 本书内容全面新颖、针对性强,理论与实际紧密结合,可供从事图像处理相关工作的教师、高年级本科生、研究生和广大科研人员参考。 -"MATLAB 6.5 support image processing," the book is based on MATLAB 6.5 of Image Processing Toolbox v3.2 (Image Processing Toolbox) Prepare, a more comprehensive system to introduce the Image Processing Toolbox v3.2 function in a noisy and the restoration of degraded images, graphics rendering, Image geometry transform, image enhancement, value analysis, wavelet analysis and fractal geometry for image processing, and the graphical user interface design, so the practical application of engineering. The book focused on Image Processing Toolbox works in the concrete application, through specific and detailed analysis of the examples, readers can not only on MATLAB Image Processing Toolbox function of the powerful have a deep understanding, better learn how to correctly apply it quick
Update : 2008-10-13 Size : 46373 Publisher : xinxin

DL : 1
驱动开发环境搭建vs6.0+ddk 2600+windows xp+Driver Studio 3.2 2010-07-07 09:35 驱动开发环境之Windows XP DDK2600,VC++ 6.0, Driver Studio 3.2 神秘的驱动开发,神秘的WINDOWS内核,是什么把这些搞得这么神秘呢? 搭Windows驱动开发平台. 要安装的东西都有这些:在Windows XP的基础上,先装上VC++6.0,再装DDK2600(也就是DDK的XP版),最后装 Driver Studio 3.2。 1.首先装VC++ 6.0, 要装VC++6.0那是因为这个IDE式的环境你已经很熟悉,编译和连接的时候不要用各种命令行的命令,只要鼠标点点,就可以(当然啦,一些参数还是要填的)。具体怎么装我就不介绍了。 2.安装XP系统的DDK, DDK全称是叫Driver Development Kit,它提供4种驱动程序的编译环境,我们这种初学者一般是选Win XP Checked Build Enviorment。 ftp://202.113.29.4/ISO/M$/WinDDK/winxp_ddk.rar 这个是下载地址,我写这篇文章的时候这个链接还是通的,不知你看的时候通不通了,如果不通你可以联系我,我可以发给你。 安装的时候就没什么特别要注意的地方,唯一要记得的是记住要完整安装,把那些什么Samples全装上,对于我们这些初学者会很有用的。 3.安装Driver Studio, DriverStudio 是一套用来简化微软Windows 平台下设备驱动程序的开发,调试和测试的工具包。 对于学过Windows 编程的人我可以打个形象的比喻: DriverStudio中的DriverWorks,本质是“DDK类库”,使用C++类库封装的方法简化了NT Driver或者WDM驱动程序的开发,使用DriverWorks代替DDK开发,类似于使用MFC代替SDK开发Windows应用程序。 http://download2.77169.com/soft/Source/debug/200801/20071229SoftICExlDS3.2.1.zip 这个是下载地址。这个需要序列号和注册文件: http://www.4x4y.com/10257_CrackDown_Compuware.DriverStudio.v3.2.iNTERNAL.html 这个是序列号生成器和注册文件打包下载的地址。 2.安装和配置   软件的安装顺序:Windows XP --> VC6.0 --> WinXP_DDK -> DriverStudio3.2,如果顺序装错了,那么把DriverStudio3.2删除再重装就OK了。从网上找到库文件ntstrsafe.lib+csq.lib.rar,把解压出来的两个库文件拷贝到WinXP_DDK的安装目录下的库目录中(我的是C:WINDDK2600libwxpi386)。启动vc6,然后进行简单的配置:菜单DriverStudio菜单下的DDK Build Settings,在弹出的对话框中选择已经安装的DDK目录(比如我的是C:WINDDK2600),在Windows DDK compiler Options中选择"Enable only for Driver Studio"。 VC6.0-->Tools-->Options,点击"Directories"选项卡: 1)"“Show directories for:"下选择Include files,然后检查有没有包含ddk的头文件目录(我的是C:WINDDK2600incwxp),如果没有则加上; 2)"“Show directories for:"下选择Library files,然后检查有没有包含ddk的库文件目录(我的是C:WINDDK2600libwxpi386),如果没有则加上;    注意:安装DDK时一定要把例子安装(建议你安装全部的模块),否则编译vdwlibs.dsw时会报如下的错: vdw_wdm.lib - 1 error(s), 0 warning(s) 然后打开引起错误的文件,发现: #error The file is from the DDK at srcwdmhidinc. Install DDK HID samples to install hidport.h. Or update INCLUDE path for hidport.h in the DDK! 这表明安装WinXP_DDK的时候没有安装实例。 3.编译适合本机使用的库文件   (1).启动VC6.0。开始-->所有程序-->Compuware DriveStudio-->Develop-->DDK Building Settings,确保“DDK Root Directory”下方的内容是ddk的安装目录(比如我的是C:WINDDK2600),然后点击下方的"Luanch Program"正式启动vc6的开发环境。   (2).进入菜单File-->Open Workspace(打开位于DriverStudio3.2安装目录的DriverWorksSourcevdwlibs.dsw)-->进入菜单Build-->batch Build,点击“Select x86"按钮只选中全部的32位库(我的电脑是32位的。注意:对于32位的电脑一定不要选中64位的库,否则后面编译会出错)-->点击按钮"Rebuild AlL”开始编译。   注:如果出现无法打开文件这类的错误,一般都是DDK Build Settings指向不对,或安装顺序有误,或者你在32位机器上选中了64位库。 4.编译一个DriverStudio自带的实例   (1)"启动vc6,点击菜单File-->Open Workspace,打开项目文件C:Program FilesCompuwareDriverStudioDriverWorksExampleswdmhellowdmHelloWdm.dsw,然后编译,如果没有报错,那说明安装和配置成功。但请你别高兴的太早,开发环境安装配置成功只是万里长城的第一步,剩下的你就是要理解驱动模块的架构和具体的代码编写了。 5.使用Driver wizard生成驱动程序框架   (1).在VC6.0的界面下,点击菜单DriverStudio-->Driver wizard,此后系统会一步一步引导你完成设置,最后自动生产的驱动程序框架。   (2).设置好后将生成驱动文件,然后用VC6.0进行编译:进行Build菜单,Rebuild AlL将生成.sys文件,说明驱动模块编译成功!   注:如果出现无法打开ntstrsafe.lib的错误,说明系统缺少这个库文件,参照上面的方法补上这个库文件,或者进入菜单Project-->Settings,鼠标点击左边方框里的最上面一行,然后右边"Project Option"下的ntstrsafe.lib并删除它。 本文是转来的,经过我的验证可以搭建成功。有些软件下载可能需要到其他地方下载。希望各位开发的兄弟姐妹Enjoy yourself.
Update : 2011-04-22 Size : 64512 Publisher : cdliqu@163.com

《MATLAB 6.5辅助图像处理》 本书是基于MATLAB 6.5的图像处理工具箱v3.2 (Image Processing Toolbox)编写的,较全面系统地介绍了图像处理工具箱v3.2函数在有噪和退化图像的恢复、图形绘制、图像几何变换、图像增强、二值分析、小波分析和分形几何用于图像处理,以及图形用户界面设计等方面的工程实际应用。全书侧重于图像处理工具箱在工程中的具体应用,通过具体的分析和详细的实例,读者不仅可以对MATLAB图像处理工具箱函数的强大功能有一个深刻了解,更能学会正确运用它快速解决实际问题的方法,从而提高分析问题和解决问题的能力。飞思在线http://www.fecit.com.cn“下载专区”提供书中范例源代码。 本书内容全面新颖、针对性强,理论与实际紧密结合,可供从事图像处理相关工作的教师、高年级本科生、研究生和广大科研人员参考。 -"MATLAB 6.5 support image processing," the book is based on MATLAB 6.5 of Image Processing Toolbox v3.2 (Image Processing Toolbox) Prepare, a more comprehensive system to introduce the Image Processing Toolbox v3.2 function in a noisy and the restoration of degraded images, graphics rendering, Image geometry transform, image enhancement, value analysis, wavelet analysis and fractal geometry for image processing, and the graphical user interface design, so the practical application of engineering. The book focused on Image Processing Toolbox works in the concrete application, through specific and detailed analysis of the examples, readers can not only on MATLAB Image Processing Toolbox function of the powerful have a deep understanding, better learn how to correctly apply it quick
Update : 2024-05-09 Size : 46080 Publisher : xinxin

aa1、上手容易: FeitecCMS 解压后即可投入使用,基本设置可在后台搞定,同时也有管理员帮助系统,使您快速掌握本系统。 2、建站迅速:本系统采用ASP+FSO+ACESS,建站成本低廉、快速,可以快速建立一个界面好、功能强、安全性高的中小型WEB站点。 3、个性设置:本系统设置有许多贴心设计,助您轻松、愉悦掌握系统操作;全站风格模板化,便于风格交流,满足个性要求。 4、改造容易:本系统采用开放式设计,每个文件皆有相应说明,助你轻松改造。 V3.0 Build 08.1210 1.修正个别风格显示错误 2.修正1209之前已发现的错误 3.重新编辑电影频道数据 4.本次更新直接覆盖数据库即可 5.数据库更新情况:新闻238篇、文章1953篇、电影动漫248部、教程154篇 后台登陆:admin/admin_login.asp 用户名和密码:www.40t.cn -err
Update : 2024-05-09 Size : 4691968 Publisher : XIONGLIANG

DL : 0
飘易影视娱乐系统 v3.0 程序功能: 1、以图片为主,同时支持任何视频格式、FLASH、压缩文件。 2、生成全站最新JS,热门JS,推荐JS,加速网页打开速度。 3、数据库和密码采用特殊处理,防恶意下载。 4、可以生成影视地图,并自动分页(根目录下map.html)。 5、自由分类,后台可编辑更改! 6、初始用户:admin ,初始密码:www.cn-pn.com,后台可在线更新! 7、统计点击率,系统可按点击率进行排行。 8、支持 gif,jpg,png,rm,rmvb,avi,wma,wmv,mpeg,mpe4,mp3,swf,zip,rar等若干格式。 9、支持影片报错处理,方便用户及时地将已经失效的地址报告给站长。
Update : 2024-05-09 Size : 454656 Publisher : 流浪者

DL : 0
1.用户留言以后,留言要经过审核才可以显示出来 2.管理员有权删除,修改,回复留言,并审核是否显示出来 3.v3.1版本中,密码用md5加密技术,其安全性更高. 4.自定义Banner等,支持在线上传,修改Banner,即您几乎无任何修改即可使用. 5.v3.1版本留言簿代码更简洁,功能更强大.欢迎大家使用 6.自定义留言开通或者关闭功能 7.自定义手机短信接收留言功能 8.自定义是否使用邮箱接收留言功能 9.自定义是否接显示留言者ip功能 10.添加手机接收留言内容功能 11.邮箱接收留言功能 后台操作/admin/login.asp 管理员用户名和密码都是www.nbhtml.com -1. User message, the message should be vetted before they can be displayed 2. Administrators have the right to delete, modify, return messages, and examine whether or not displayed 3.v3.1 version, md5 password encryption techniques used, the higher the security. 4. Custom Banner and so on, to support the online upload, modify Banner, that is, almost without any modification you can use. 5.v3.1 more concise version of the code book and more powerful. Welcome to use 6. Custom messages to open or close the function 7. Custom SMS message function to receive 8. Since the definition of whether or not to use the mailbox to receive message function 9. Since then the definition of whether or not to display messages from ip function 10. Add phone functionality to receive messages 11. E-mail message function to receive Background operations/admin/login.asp Administrator user name and password are www.nbhtml.com
Update : 2024-05-09 Size : 1130496 Publisher : ljl

任务管理系统 源码天下,[www.pccode.net] ║  ║ ASP,PHP,CGI,ASP.NET代码下载,建站素材下载 ║ ║ 给你最好的免费代码下载, ║ ║ 国内原创的商业代码推广及商业注册! ║  ║声明: ║ ║ 1) 本站不保证所提供软件或程序的完整性和安全性。 ║ ║ 2) 请在使用前查毒。 ║ ║ 3) 转载本站提供的资源请勿删除本说明文件。 ║ ║ 4) 本站提供的程序均为网上搜集,如果该程序涉及或侵害到您║ ║ 的版权请立即写信通知我们。 ║ ║ 5) 本站提供代码只可供研究使用,请在下载24小时内删除, ║ ║ 切勿用于商业用途,由此引起一切后果与本站无关。 ║ ║ 6) 推荐使用:WinRAR V3.2以上版本解压本站软件 ║  ║-Task Management System
Update : 2024-05-09 Size : 602112 Publisher : mj

DL : 0
动科企业网站管理系统DKCMS自由定制导航栏、支持排序、打开方式、外联等操作,支持批量删除,按照分类查看等操作,信息支持独立关键字,支持简短和详细内容。 动科企业网站管理系统DKCMS v3.1更新情况 一、更新一套蓝色模板。 二、优化部分执行效率。 三、修正后台订单管理的BUG。 四、安全性提高,后台操作更简单。 五、支持IE9 要求环境:微软IIS5.1+(不支持小旋风、netbox等) 管理地址:您的网址+admin 如:www.xxxxxxxx.com/admin (请尽量修改admin文件夹名称,增强安全性) 默认账户: 用户名:admin 密码:admin 功能介绍: 一、控制导航 自由定制导航栏、支持排序、打开方式、外联等操作。 二、控制分类 自由添加分类、支持指定分类的类型(免费版支持单页、新闻、产品三种)支持二级分类,支持简短和详细介绍,支持独立关键字,支持控制信息显示条数。 三、管理信息 支持批量删除,按照分类查看等操作,信息支持独立关键字,支持简短和详细内容。 四、管理留言、招聘等交互信息。 支持留言审核和回复、支持在线应聘 -Animal Section enterprise Web site management system DKCMS freedom to customize the navigation bar, supports sorting, Open, outreach, and other operations to support bulk delete, in accordance with the classification of view, information to support the independent keyword, support short and details. Operations Division enterprise website management system DKCMS v3.1 updates First, the update of a blue template. Second, optimizing the efficiency of part of the implementation. Third, the amendment back-end order management BUG. Fourth, improve security, background operation is more simple. 5, support IE9 Demanding environments: Microsoft IIS5.1+ (small whirlwind, netbox) Management Address: Your URL+ admin: www.xxxxxxxx.com/admin (please try to modify the admin folder name, enhanced security) Default Account: User Name: admin Password: admin Features: One, control navigation Freedom to customize the navigation bar to support t
Update : 2024-05-09 Size : 970752 Publisher : storm123

软件介绍:UNFOXALL v3.00 专业注册版 FoxPro反编译工具。可以完整的从FOX所有版本(FoxBase, FoxPro2.x for DOS/Windows, VFP3.0/5.0/6.0)开发的EXE,.APP,.FOX,.SPX, .MPX, .QPX, .PJT及其 他文件中完整反编译出所有源程序及其他文件。 使用说明: 安装原版后,运行原版选择关于,输入用户姓名,邮件,单位,后确定退出再解压注册机至原版目录下运行注册机,可以得到正确注册码,复制;打开原版目录 下的unfoxall.ini文件,可看到: [UserInfo] UserFlag=A001 UserName=winzheng UserEmail=shengxu@china.com UserCompany=www.winzheng.com UserKey=3ABFA835 SerialNumber=[Not Registered] 自己更改SerialNumber=[Not Registered],将刚刚注册机得到的注册码替换[Not Registered]即可!-The software tool to decompile: UNFOXALL the V3.00 professional registered version of FoxPro. Can complete from the FOX version (FoxBase, FoxPro2.x for DOS/Windows, VFP3.0/5.0/6.0) developed by EXE, APP, FOX, SPX, MPX, QPX, PJT and other documents in full decompile all source code and other files. Instructions for use: after the original installation, run the original selection, enter a user name, e-mail, units, determined after running Fillmore exit then decompression RI to the original directory, you can get the correct registration code, copy the unfoxall open the original directory. ini files, see: [UserInfo] UserFlag = A001 UserName = winzheng UserEmail = shengxu@china.com UserCompany = www.winzheng.com UserKey = 3ABFA835 SerialNumber = [Not Registered] change SerialNumber = [Not Registered] will just RI registration code can replace [Not Registered]!
Update : 2024-05-09 Size : 1029120 Publisher : mtjs

DL : 0
欢迎使用中环留言版V3.2版。。。   修正了IIS各别IIS无法留言问题,还有一些小小问题,该版本如果没其他大问题将不再作修改。。      首次安装   V3版将采用的是UTF-8格式,前面两个版本都是gb2312。   使用本留言版前提是您的数据库必须支持MYSQLI,关于怎么开启MYSQLI扩展请到百度搜.   请将留言版放到你的WWW目录,然后运行http://你的域名/index.php 将会进入安装。      后台登陆地址:http://你的域名/admin.php      安装完成后请进入后台进行你所需要的相关设置。。。   如果在使用过程中遇到任何问题欢迎到官网提出你的问题。。。   这次V3采用oop开发。不管是代码方面,还是数据库方面,都做了大量优化。安全性更高。   感谢你的使用-Welcome to the central message version of V3.2 version... Fixed IIS individual IIS cannot questions, there are some small problems, this version if no other big problems will no longer be modified.. The first installation Will use the V3 version of the format is UTF-8, the previous two version is gb2312. The use of the message board is the premise of your must support MYSQLI, on how to open MYSQLI to Baidu extended search. Please send the message boards on your WWW directory, and then run http:// your domain name /index.php will enter the installation. Backgrounds landing address: http:// your domain name /admin.php After the installation is complete please enter the background related settings you need... If the use of any problems encountered in the welcome to the official website of your questions... The V3 developed by oop. No matter is the code, or , have done a lot of optimization. Higher security. Thank you for your use
Update : 2024-05-09 Size : 1017856 Publisher : LEE

1.这个版本的UCGUI提供了模拟器的源码(早知我不用那么辛苦反编译出模拟器源码了,不过大家可以比较一下看). 2.还有JPEG图版支持 3.ListView控件支持. 4.Menu菜单支持. 5.ScrollBar滚动条支持. 6.multi-controller多控制器支持. UCGUI3.90版源码下载 http://www.ucgui.com/ucgui/uC-GUI-V3-90a.rar 另外源码上还有很多的调整, 将控件的功能分开到各个文件当中更易于将来扩充, 大家仔细看看.-Source of ucgui3.90
Update : 2024-05-09 Size : 3433472 Publisher : 李斌
« 1 2»
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.