登录
首页 » C# » 这是源代码贝叶斯分类器进行纹理识别过程

这是源代码贝叶斯分类器进行纹理识别过程

于 2022-01-24 发布 文件大小:75.42 kB
0 107
下载积分: 2 下载次数: 1

代码说明:

这是一种基于贝叶斯定理的简单概率分类。该项目包含可包含在任何C#项目源文件。贝叶斯分类器能够计算取决于输入的最可能的输出。因此能够在运行时添加新的原始数据,并有更好的概率分类。甲朴素贝叶斯分类假定一类的特定特征的存在(或不存在)是无关的任何其它特征的存在(或不存在),给出的类变量。例如,水果可被认为是一个苹果,如果它是红色的,圆的,并且约4“的直径。即使这些功能依赖于彼此或之上的其他特征的存在,一个朴素贝叶斯分类器考虑了所有这些性能独立作出贡献.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • imhist
    opencv里面像matlab那样显示直方图,解决了opencv没有显示直方图的缺陷。(opencv as it shows as histogram matlab to solve opencv histogram did not show defects.)
    2009-04-25 14:18:48下载
    积分:1
  • Pso-LSsvm
    该程序可用于LSSVM分类和预测,利用PSO进行参数优化,具有较好的预测效果(This program can be used LSSVM classification and prediction, use PSO for parameter optimization, better predict the effects of)
    2020-09-13 10:27:58下载
    积分:1
  • vgfzw269
    基于vc6环境下开发,实现了打开文件操作,利用了fltk图形开发包,(Based on the vc6 environment, the open file operation is realized, and the fltk graphics development kit is used.)
    2018-10-10 06:08:30下载
    积分:1
  • TestStudent
    TestStudentѧ
    2009-07-30 20:27:21下载
    积分:1
  • QGIS--qt
    qgis 地图二次开发,为初学者尽快掌握地图开发。对大家有很大帮助(Two the development of QGIS map, for beginners to quickly master the map development. There is a great help to you)
    2015-01-09 11:57:54下载
    积分:1
  • OSAL-API
    OSAL学习资料,可以了解OSAL系统的工作原理以及相关API(OSAL learning materials, you can understand the working principle of the OSAL system and related API)
    2016-07-12 11:10:17下载
    积分:1
  • IOaUART
    利用单片机IO口模拟UART程序,系统用了一个定时器和一个外部中断,外部中断主要是用来检测串口起始位的到来。(IO mouth simulation UART program, microcontroller system with a timer and an external interrupt, external interrupt is mainly used to detect the arrival of the start bit serial port.)
    2016-12-30 08:38:34下载
    积分:1
  • printersettings_demo
    vc修改打印设置代码,可以修改打印的基本设置,例如纸张大小(vc revised set code can be amended Print the basic setup, such as paper size, etc.)
    2007-03-07 09:32:08下载
    积分:1
  • daffodil-number
    求1000以内的水仙花数(例如:一个数是abc,如果abc=a*a+b*b+c*c,那么abc就是水仙花数)(For less than 1000 of the number of daffodils (for example: a number is ABC, if abc=a*a+b*b+c*c, then ABC is a daffodil number) )
    2014-11-16 02:39:06下载
    积分: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
  • 696518资源总数
  • 106222会员总数
  • 14今日下载