-
MATLABcode
包括IHS遥感图像融合算法,比较全。基于MATLAB。(IHS image merging)
- 2009-05-29 23:44:40下载
- 积分:1
-
scen
Write automatically written to a file using C + + code in order to make ns2 manual routing is used, used to set the node, which is our experimental multichannel implementation, hoping to share.
- 2014-01-03 11:03:54下载
- 积分:1
-
影像压缩的工具 JPEF2000 在 Visual c的 原始码
影像压缩的工具 JPEF2000 在 Visual c的 原始码-Image compression tools JPEF2000 source code in Visual c
- 2022-10-02 06:30:03下载
- 积分:1
-
GNSS
这本书延伸科学畅销书“全球定位系统 - 理论与实践”,以涵盖全球导航卫星系统(GNSS),包括俄罗斯GLONASS,欧洲伽利略系统,以及其他系统。书是指在一般意义到GNSS来描述各种现有参考系统的坐标和时间,卫星轨道,卫星信号,可观察,数学模型的定位,数据处理,和数据转换。本书是一本大学级入门教材,目的是作为学生的参考以及为专业人士和科学家在大地测量领域,测量工程,导航和相关学科。(This book extends the scientific bestseller GPS- Theory and Practice to cover Global Navigation Satellite Systems (GNSS) and includes the Russian GLONASS, the European system Galileo, and additional systems. The book refers to GNSS in the generic sense to describe the various existing reference systems for coordinates and time, the satellite orbits, the satellite signals, observables, mathematical models for positioning, data processing, and data transformation. This book is a university-level introductory textbook and is intended to serve as a reference for students as well as for professionals and scientists in the fields of geodesy, surveying engineering, navigation, and related disciplines.)
- 2016-09-24 16:59:09下载
- 积分:1
-
基于VC++的包过滤防火墙
说明: 本文先介绍了个人防火墙开发的研究现状、VC++6.0和MFC程序的一些技术特点,然后对基于包过滤个人防火墙的开发进行了详细的介绍和描述。通过本文可以清楚地看到一个普通个人防火墙的开发过程。本防火墙中,用户可以自行设定过滤规则,以达到对不同源和不同目标的IP地址、端口和协议的过滤。允许用户将当前规则保存为*.rul的文件格式,供下次使用时直接导入。
本防火墙由以下几个模块组成:过滤规则添加模块,过滤规则显示模块,过滤规则存储模块,文件储存模块,安装卸载规则模块,IP封包过滤驱动功能模块。用户只需要通过主界面菜单和按钮就可以灵活地操作防火墙,有效地保护Windows系统的安全。(This article first introduced the personal firewall development research present situation, VC++6.0 and MFC procedure some technical characteristics, then based on the packet filter personal firewall development carried on the detailed introduction and description.Through this article you can clearly see a common personal firewall development process.In this firewall, users can set their own filtering rules to achieve the filtering of IP addresses, ports and protocols for different sources and different targets.Allows the user to save the current rule as a *.rul file format for import next time.
This firewall consists of the following modules: filter rules add module, filter rules display module, filter rules storage module, file storage module, installation and unloading rules module, IP packet filter driver function module.Users only need to through the main interface menu and buttons can be flexible operation of the firewall, effectively protect the security of the Windows system.)
- 2020-07-08 14:28:57下载
- 积分:1
-
EF Code First简介及一个入门级实例
一、EF Code First简介 EntityFramework 代码优先 二、EF Code First第一个简单实例 1、开发环境及数据库说明 开发环境:Visual Studio 2010 Ultimate sp1 Sql Server 2008 R2 数据库:Northwind 2、实例代码结构 结构说明: App:控制台应用程序 Data:数据访问 Domain:实体类 3、安装Entity Framework 在Visual Studio编辑器中点击Tools -> Library Package Manager -> Package Manager Console,在Package Manager Console窗口中执行下面语句,安装最新版Entity Framework。 PM> Install-Package EntityFramework App层和Data层分别添加对EntityFramework的引用: 在App层安装EntityFramework之后,将自动添加App.config和packages.config文件。 App.config配置Entity Framework版本信息及数据库连接信息,修改其中数据连接信息以适应本地实际环境。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 packages.config现实当前项目使用的package: 1 2 3 4 4、实例代码 Domain中Category.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Northwind.Domain.Entities 7 { 8 public class Category 9 { 10 /// 11 /// 分类ID 12 /// 13 public int CategoryID { get; set; } 14 15 /// 16 /// 分类名称 17 /// 18 public string CategoryName { get; set; } 19 } 20 } Data中NorthwindContext.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using System.Data.Entity; 7 8 using Northwind.Domain.Entities; 9 10 namespace Northwind.Data 11 { 12 public class NorthwindContext : DbContext 13 { 14 public DbSet Categories { get; set; } 15 } 16 } App中Program.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using Northwind.Data; 7 using Northwind.Domain.Entities; 8 9 namespace Northwind.App 10 { 11 class Program 12 { 13 static void Main(string[] args) 14 { 15 Category c = new Category() { CategoryName = "电子数码" }; 16 17 using (NorthwindContext db = new NorthwindContext()) 18 { 19 db.Categories.Add(c); 20 db.SaveChanges(); 21 } 22 23 Console.WriteLine("Finish"); 24 Console.ReadKey(); 25 } 26 } 27 } 5、运行说明 由于在上面的数据库连接字符串中并未包含指定的数据库名称,运行成功之后,将在本地数据引擎中创建如下数据库和表: 数据库名称:Northwind.Data.NorthwindContext 表名称:Categories 6、示例代码附件
- 2014-04-22下载
- 积分:1
-
pid
说明: PID control texas insturement
- 2020-11-30 18:52:44下载
- 积分:1
-
Halcon Machine Vision
说明: Halcon与C#联合编程(Halcon12)(Halcon and C# joint programming (Halcon 12))
- 2020-07-02 15:37:50下载
- 积分:1
-
FSK-signal-demodulate
FSK信号鉴频的程序.This program implements the function of finding out the largest and the second largest values of the sequence of "in_buffer[10]"(FSK signal frequency of the procedure. This program implements the function of finding out the largest and the second largest values of the sequence of in_buffer [10] )
- 2007-11-14 01:25:46下载
- 积分:1
-
Contract-Management
用C++编写的企业合同管理软件,含SQL数据库及界面设计(Written in C++, enterprise contract management software, including SQL database and interface design)
- 2011-04-24 16:16:55下载
- 积分:1