码迷,mamicode.com
首页 >  
搜索关键字:column color extjs    ( 188124个结果
OpenCV实现素描效果
一、概述 实现素描效果的步骤: 1.将输入图像转换为灰度图像 2.使用滤波(中值滤波、高斯滤波)去除图像噪声 3.使用拉普拉斯算子进行边缘描述 4.使用二值分割去除无用噪声 5.输出图像并展示 二、源码示例 /** * 素描 * @param inputImagePath */ void showS ...
分类:其他好文   时间:2021-06-03 18:12:26    阅读次数:0
Data truncation: Incorrect datetime value: '' for column 'create_time' at row 1 问题
//取当前时间 Date nowdate=new Date(); //转换时间格式 SimpleDateFormat simpleDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); order.setCreateTime(Timestamp.val ...
分类:其他好文   时间:2021-06-03 18:06:12    阅读次数:0
centos 安装composer
1、使用命令下载 curl -sS https://getcomposer.org/installer | php 2.下载之后设置环境变量 mv composer.phar /usr/local/bin/composer 3.修改权限,否则执行会出错 chmod -R 777 /usr/local ...
分类:其他好文   时间:2021-06-03 18:05:24    阅读次数:0
程序打开一个文本文件,文件中添加内容文字
1、主体代码 #region [ 启动记事本 ] System.Diagnostics.Process Proc; try { // 启动记事本 Proc = new System.Diagnostics.Process(); Proc.StartInfo.FileName = "notepad.e ...
分类:其他好文   时间:2021-06-02 20:53:03    阅读次数:0
2021.6.1.20:41
静态定位 <style> .parent{ width: 300px; height: 300px; background-color: aqua; } .child{ width: 100px; height: 100px; background-color: pink; /* 静态定位 posi ...
分类:其他好文   时间:2021-06-02 20:33:41    阅读次数:0
shell script
#ping whole local domainfor ip in {1..255};do ping -c 3 192.168.110.$ip >> ping.log;done grep '3 ttl' ping.log |awk '{print $4}' | sed 's\:\\g' |while ...
分类:系统相关   时间:2021-06-02 20:19:59    阅读次数:0
解决Element中table文字过多换行问题-亲测有效
1.直接上代码 <el-table :data="data" border stripe style="width: 100%;" class="tableLimit" :height="height"> <el-table-column label="排序" type="index" align= ...
分类:其他好文   时间:2021-06-02 20:01:44    阅读次数:0
[flutter-06] Column
1. Column 垂直组件排版 组件内小控件间距可以通过SizedBox设置 整个组件内的间距可以通过padding设置 Widget build(BuildContext context) { return Container( // 通过Container包裹起来 padding: const ...
分类:其他好文   时间:2021-06-02 20:01:04    阅读次数:0
外边距塌陷原理
都知道解决 外边距塌陷 有多种方法 其中一种 是给父盒子加个overflow:hiden;例如 <style> p { color: #f55; background: #fcc; width: 200px; line-height: 100px; text-align:center; margin ...
分类:其他好文   时间:2021-06-02 19:54:48    阅读次数:0
git reset --soft --mixed --hard
git reset --soft HEAD^ git reset --soft HEAD~1 –soft不删除工作空间改动代码,撤销commit,不撤销git add . –mixed意思是:不删除工作空间改动代码,撤销commit,并且撤销git add . 操作这个为默认参数,git reset ...
分类:其他好文   时间:2021-06-02 19:42:32    阅读次数:0
188124条   上一页 1 ... 17 18 19 20 21 ... 18813 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!