Week 2 3.5.2020 Overview This week, we have mainly learned two parts: 1. How to match the same feature points in two images from different viewpoints. ...
分类:
其他好文 时间:
2020-05-12 00:03:20
阅读次数:
112
Python提供了re模块来支持正则表达式相关操作,下面是re模块中的核心函数。 def main(): username = input('请输入用户名: ') qq = input('请输入QQ号: ') m1 = re.match(r'^[0-9a-zA-Z_]{6,20}$', userna ...
分类:
编程语言 时间:
2020-05-11 13:29:06
阅读次数:
68
关于re模块中search()、match()、findall()的区别 首先看search()跟match()的区别 import re a = 'python Python CDpython CDPython' re1 = re.search(r'(p|P)ython',a) print(re1 ...
分类:
其他好文 时间:
2020-05-11 13:27:07
阅读次数:
50
gcc 命令的常用选项 选项 解释 -ansi 只支持 ANSI 标准的 C 语法。这一选项将禁止 GNU C 的某些特色, 例如 asm 或 typeof 关键词。 -c 只编译并生成目标文件。 -DMACRO 以字符串“1”定义 MACRO 宏。 -DMACRO=DEFN 以字符串“DEFN”定 ...
分类:
其他好文 时间:
2020-05-11 13:05:00
阅读次数:
87
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" and ...
分类:
其他好文 时间:
2020-05-10 17:11:43
阅读次数:
52
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
分类:
其他好文 时间:
2020-05-10 17:03:12
阅读次数:
54
知识点: 1、在垂直布局中,我们可以指定 layout_weight的大小,来平均分配view占据的屏幕大小,这时候要把height设置为0dp(水平的设置宽度为0) 2、gravity控制子视图的显示位置 <EditText android:layout_width="match_parent" ...
分类:
其他好文 时间:
2020-05-10 16:40:52
阅读次数:
71
莫比乌斯: 百度的下一代query-ad匹配算法 本文介绍的内容来自于百度在KDD2019上的论文[1]. 众所周知,百度、头条乃至于Google、Facebook的主要营收点在广告。广告业务的成败关系着众多互联网公司的生死。 由于广告存量的巨大,目前的需求是平均每次query需要从上亿的广告中筛选 ...
分类:
编程语言 时间:
2020-05-10 15:17:35
阅读次数:
90
db.appMsgCollection.aggregate([{$lookup:{from:"msgTypeCollection",localField:"message.templateTypeId",foreignField:"msgTypeId",as:"cname"}},{$match:{"createTime
分类:
其他好文 时间:
2020-05-09 00:48:39
阅读次数:
110
git 2 es基本查询 3 es 组合查询 python 多个条件,and ,or ,not 对到es中就是布尔查询,must,should,must_not,filter 1 组合查询之must 查询form gu和age=30的数据 GET lqz/doc/_search { "query": ...
分类:
移动开发 时间:
2020-05-08 22:43:39
阅读次数:
84