唠叨犀牛

文章
7
资源
1
加入时间
2年10月21天

python窗口居中显示

import tkinter  as tkroot = tk.Tk()frmLogin= tk.Frame(root)frmShow = tk.Frame(root)frmCmd = tk.Frame(root)photoopen = tk.PhotoImage(file="open.gif")photoerr = tk.PhotoI

arm 驱动进阶:lcd驱动设计过程

lcd驱动设计实现流程图:驱动代码实现:lcd.c#include <linux/module.h>#include <linux/kernel.h>#include <linux/errno.h>#include <linux/string.h>#include <linux/mm.h&gt...

OpenCV学习笔记——harris角点检测

#include #include ///This is the first program to detect the corner. using namespace cv;int main(){ //以灰度模式载入图像并显示 Mat srcImage = imread("barcode.bmp", 0); imshow("原始图", srcImage); //进

自定义View和ViewGroup之TagLayout前言TagLayout如何实现

最近几个月终于有大把时间总结这两年来所学 2019.6.1前言上一篇自己写了一个模仿微信的SlideView,主要复习了自定义View方面的一些知识点。这几天有看到自定义ViewGroup相关的知识点,于是也打算拿一个简单的自定义ViewGroup来学习一下。Github 地址TagLayout效果展示下面这个是一个个人兴趣选择界面,里面主要是各种各样的Tag。下面我选取其中一部分...

MySQL数学函数简明总结

1 ABS(x): 返回x的绝对值 复制代码 代码如下: mysql> select ABS(1), ABS(-1), ABS(0); +--------+-----