登录
首页 » matlab » Colourmaps

Colourmaps

于 2019-04-25 发布 文件大小:224KB
0 119
下载积分: 1 下载次数: 1

代码说明:

  该算法用于彩色图像的预处理,为后续图像识别做准备(Preprocessing of color image)

文件列表:

Colourmaps, 0 , 2019-04-01
Colourmaps\.DS_Store, 6148 , 2014-09-17
Colourmaps\cmap.m, 58184 , 2018-11-21
Colourmaps\colorcet.m, 566562 , 2018-11-21
Colourmaps\colourblind.m, 7475 , 2018-11-21
Colourmaps\colourblindlabspace.m, 9164 , 2018-11-21
Colourmaps\colourblindlmsspace.m, 8565 , 2018-11-21
Colourmaps\colourmappath.m, 11197 , 2018-11-21
Colourmaps\equalisecolourmap.m, 18069 , 2018-11-21
Colourmaps\generatelabslice.m, 2213 , 2018-11-21
Colourmaps\geosofttbl2map.m, 1313 , 2018-11-21
Colourmaps\labmaplib.m, 57246 , 2014-10-07
Colourmaps\linearrgbmap.m, 882 , 2018-11-21
Colourmaps\makecolorcet.m, 15090 , 2018-11-21
Colourmaps\map2actfile.m, 741 , 2018-11-21
Colourmaps\map2ermapperlutfile.m, 1797 , 2018-11-21
Colourmaps\map2geosofttbl.m, 1634 , 2018-11-21
Colourmaps\map2imagejlutfile.m, 946 , 2018-11-21
Colourmaps\map2lutfile.m, 754 , 2014-08-15
Colourmaps\map2qgisstyle.m, 3266 , 2018-11-21
Colourmaps\pseudogrey.m, 3667 , 2018-11-21
Colourmaps\readermapperlutfile.m, 3143 , 2018-11-21
Colourmaps\readimagejlutfile.m, 1122 , 2018-11-21
Colourmaps\ternarycolours.m, 4004 , 2014-09-17
Colourmaps\ternaryimage.m, 4009 , 2018-11-21
Colourmaps\ternarymaps.m, 2033 , 2018-11-21
Colourmaps\writecolourmapfn.m, 1354 , 2018-11-21

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

发表评论

0 个回复

  • 违约概率计算
    运用KMV模型来计算债券违约概率matlab程序(Program for calculating default probability)
    2021-03-08 01:19:28下载
    积分:1
  • gray_picture
    说明:  超宽带探地雷达回波形成双曲线,对双曲线灰度图进行matlab仿真,模拟回波图象(自己写的,很水)(The echo of UWB GPR forms hyperbola. The hyperbola gray-scale image is simulated by MATLAB to simulate the echo image)
    2020-05-12 15:38:08下载
    积分:1
  • mstm-manual-2011-v2.1
    介绍如何用T矩阵来计算多颗粒的散射问题以及电场分布。有程序代码。(This is the instruction manual for the MSTM Fortran–90 code. The code was originally released in January 2011. Code elements will be revised in response to bug fi xes, user suggestions, and modifi cations/extensions the revision date will appear in comment lines at the top of each module and/or subroutine of the code.)
    2021-01-07 10:48:52下载
    积分:1
  • sxnb
    基于simulink搭建了一个简易的三相电压型逆变器模型, 仿真结果验证了三相电压型逆变器的工作原理。(A simple three-phase voltage source inverter model is built based on simulink. The simulation results verify the working principle of the three-phase voltage source inverter.)
    2019-06-19 22:36:12下载
    积分:1
  • K线包含处理
    缠论K线包含处理dll,顶分型和底分型的判断,无笔和线段的编写(Free good stock index source code, although this version is not strong DLL version, but it is also very accurate)
    2020-12-14 00:39:15下载
    积分:1
  • VC++写的关于键盘的程序
    VC++写的关于键盘的程序-keyboard
    2022-01-26 19:33:53下载
    积分:1
  • xfh
    说明:  在fluent里添加udf可监测测点压力,点可移动或者静止。(Monitor point pressure)
    2020-11-06 19:09:50下载
    积分:1
  • attendance
    This is a sample project that I am working on
    2019-07-06 11:49:16下载
    积分:1
  • 塔防类游戏代码类似王国保卫战
    应用背景塔防类游戏,总共三个关卡,每个关卡三个批次。怪物有两条移动路径,随机选择一条路径移动,怪物有分种类,不同类型怪物属性不同。炮塔有两种,一种是发子弹,一种是射箭。可以升级,出售。游戏主要类有:怪物管理器,英雄管理器,子弹管理器,移动控制器等。代码量大概3000左右。关键技术主要是各种配置文件的读取与解析,包括怪物类型文件,路线文件,炮塔位置文件,xml、json文件等。其次是整个游戏逻辑的理解。
    2023-02-25 18:20:03下载
    积分:1
  • Visual C# 使用键盘控制窗体的移动
    Visual C#使用键盘控制窗体的移动,创建窗体对象,设置窗体接收按键事件,定义一个标识窗体的变量,判断按键类型,判断后关闭本窗体。   private void Form1_Load(object sender, EventArgs e)   {    Frm_Main form1 = new Frm_Main();//创建窗体对象    form1.KeyPreview = true;//设置窗体接收按键事件   }   private void Form1_KeyDown(object sender, KeyEventArgs e)   {    Point point = this.Location;//定义一个标识窗体的变量    switch (e.KeyData)//判断按键类型    {    case Keys.Up://当按键为上方向键时    point.Y -= 2;    break;    case Keys.Down://当按键为下方向键时    point.Y += 2;    break;    case Keys.Right://当按键为右方向键时    point.X += 2;    break;    case Keys.Left://当按键为左方向键时    point.X -= 2;    break;    case Keys.Escape://当按键为Esc键时    this.Close();//关闭本窗体    break;    default: break;    }    this.Location = point;   }
    2022-03-13 23:48:13下载
    积分:1
  • 696518资源总数
  • 104384会员总数
  • 26今日下载