码迷,mamicode.com
首页 >  
搜索关键字:palette    ( 153个结果
canvas绘图history妙用
function palette(canvas,ctx){ //初始化画布内部元素默认样式 this.strokeColor = 'red'; //默认选中红色触发颜色 this.fillColor = 'green'; //默认选中绿色填充色 this.style = 'tablet'; //默认 ...
分类:其他好文   时间:2019-01-19 12:12:15    阅读次数:225
c# bitmap和new bitmap(bitmap)
问题情境: 给picturebox赋image属性,我用一下代码,出错: 困境辨析: 把bitmap赋给pictureBox1.Image不正确,应转为image再进行赋值。 ...
分类:Windows程序   时间:2019-01-10 14:27:40    阅读次数:356
可视化库-seaborn-调色板(第五天)
1. 基础的调色板的演示 color_palette() 设置传入的任何颜色,不传使用默认颜色,set_palette() 设置所有图的颜色# 6种主题 2. 圆形画板 # 使用sns.color_palette('hls', 8) 来设置, 'hls'表示颜色空间, 8表示颜色的个数 3. pat ...
分类:其他好文   时间:2019-01-09 14:18:48    阅读次数:736
VsCode快捷键
VsCode快捷键 [TOC] 常用 General | 按 Press | 功能 Function | | | | | Ctrl + Shift + P,F1 | 显示命令面板 Show Command Palette | | Ctrl + P | 快速打开 Quick Open | | Ctrl ...
分类:其他好文   时间:2019-01-07 21:04:39    阅读次数:291
NPOI操作创建Excel
一、下载NPOI类库 使用Nuget在线搜索NPOI,下载安装 二、代码开撸 ...
分类:其他好文   时间:2019-01-05 16:39:55    阅读次数:186
Chrome DevTools: Color tricks in the Elements Panel
to change the color format Tip one The Colour Platters are customeised for you .they show colour for: Color Palettes Material CSS Variables Custome Ti ...
分类:其他好文   时间:2018-12-28 22:08:03    阅读次数:188
JS之捕获冒泡和事件委托
一、事件流(捕获,冒泡) 事件流:指从页面中接收事件的顺序,有冒泡流和捕获流。 当页面中发生某种事件(比如鼠标点击,鼠标滑过等)时,毫无疑问子元素和父元素都会接收到该事件,可具体顺序是怎样的呢?冒泡和捕获则描述了两种不同的顺序。 DOM2级事件规定事件流包括三个阶段,如图: 假如我们点击一个div, ...
分类:Web程序   时间:2018-11-29 17:55:36    阅读次数:190
VScode-Common-Shortcut
Keyboard shortcuts for windows Keyboard Shortcut For Windows General Shortcut | Commands | Ctrl + Shift + P | Show command palette Ctrl + P | Go to fi ...
分类:其他好文   时间:2018-11-28 22:21:02    阅读次数:667
机器学习——可视化绘图matplotlib和seaborn
安装matplotlib和seaborn https://blog.csdn.net/Jia_jinjin/article/details/80428598 seaborn pairplot:特征两两对比 参数说明: data:数据。 g = sns.pairplot(data) hue:根据指定的 ...
分类:其他好文   时间:2018-11-12 23:56:35    阅读次数:223
记录一个优秀的图像二值化代码
#region 二值化02 public Bitmap binaryzation(Bitmap srcBitmap, Bitmap dstBitmap) { int threshold = 0; Byte[,] BinaryArray = ToBinaryArray(srcBitmap, out t... ...
分类:其他好文   时间:2018-10-26 10:43:13    阅读次数:215
153条   上一页 1 2 3 4 5 6 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!