public void myOPENCV_value_int() { myOPENCV_value[(int)myOPENCV.cvt_color, 0] = 11;//颜色空间转换 参数一 转换标识符 myOPENCV_value[(int)myOPENCV.cvt_color, 1] = 0;/ ...
分类:
其他好文 时间:
2020-12-14 13:43:12
阅读次数:
4
1、Frame的基本属性 # -*- encoding=utf-8 -*- import tkinter from tkinter import * if __name__ == '__main__': win = tkinter.Tk() # 窗口 win.title('南风丶轻语') # 标题 ...
分类:
编程语言 时间:
2020-12-14 13:42:12
阅读次数:
6
void Widget::on_actFontBold_triggered(bool checked) { QTextCharFormat fmt; fmt = ui->txtEdit->currentCharFormat(); if(checked) fmt.setFontWeight(QFont ...
分类:
其他好文 时间:
2020-12-10 11:26:33
阅读次数:
4
OpenCV-颜色通道的分离、合并 颜色通道的分离:split() c++: void split(const mat& src, mat* mvbegin); c++: void split(inputarray m, outputarrayofarrays mv); 第一个参数,inputarr ...
分类:
其他好文 时间:
2020-12-09 11:55:02
阅读次数:
6
通过数据改变样式 点击文字切换颜色 1. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1 ...
分类:
其他好文 时间:
2020-12-07 11:57:27
阅读次数:
4
Label 一些参数 font:"24px Helvetica" //先字号再字体 fillColor: new Cesium.Color(0.6, 0.9, 1.0) //填充颜色 outlineColor:Cesium.Color.BLACK //边框颜色 outlineWidth:2 //边框 ...
分类:
其他好文 时间:
2020-12-03 11:40:32
阅读次数:
4
void dfs(int** image, int imageSize, int colsize, int r, int c, int newColor, int initColor){ if(r<0 || r>=imageSize || c<0 || c>=colsize || image[r][ ...
分类:
其他好文 时间:
2020-12-02 12:24:45
阅读次数:
6
实验任务一: assume cs:code, ds:data data segment db 'Nuist' db 5 dup(2) data ends code segment start: mov ax, data mov ds, ax mov ax, 0b800H mov es, ax mov ...
分类:
其他好文 时间:
2020-12-02 12:04:50
阅读次数:
3
Function cc() Dim rng As Range For Each rng In Range("A1:G10") If rng.Interior.Color = RGB(255, 255, 0) Then cc = 1 + cc End If Next rng End Function ...
分类:
编程语言 时间:
2020-12-01 12:44:41
阅读次数:
22
RoundShadowImageView RoundShadowImageView 是1个为圆形图片的ImageView添加阴影的自定义控件. GitHub RoundShadowImageView 为什么写这个库 Android未提供现成的工具,自定义控件阴影的颜色 开源社区中现有的库,使用了Vi ...
分类:
其他好文 时间:
2020-11-30 15:32:07
阅读次数:
6