scucat
scucat
全部文章
分类
C(1)
c++(1)
flutter(1)
fuzz(1)
GUI(12)
java(5)
Linux(2)
python(13)
warnings(1)
刷题(1)
工具使用(5)
收藏夹(2)
数据库(3)
数据结构(1)
未归档(1)
机器学习(8)
杂谈(2)
算法(1)
翻译(5)
英语(1)
读书笔记(2)
逆向(1)
归档
标签
去牛客网
登录
/
注册
scucat的博客
全部文章
(共70篇)
pyimagesearch-4 聪明的女孩:计算机视觉和图像搜索引擎使用颜色直方图的指南
原文链接 It’s…it’s a histogram. – Dr. Grant 好吧,也许这不是确切的引用。但是,如果格兰特博士知道颜色直方图的力量,我认为他会同样激动。 更重要的是,当电力耗尽时,直方图不会让游客吃东西。 那么,直方图到底是什么?直方图表示图像中颜色的分布。它可...
2020-07-22
0
837
pyimagesearch-5 霍比特人和直方图 - 使用Python构建您的第一个图像搜索引擎的操作指南
原文链接 One Ring to rule them all, One ring to find them; One ring to bring them all and in the darkness bind them. 我们即将建造的图像搜索引擎将会非常棒,它可能已经摧毁了The...
2020-07-22
0
509
leetcode解题记录
难度-简单 语言-python3 1.两数之和 class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: for i in range(len(nums)): ...
2020-07-22
0
532
nowcoder解题记录
编程语言 python > 1星级
2020-07-22
0
380
book
python 高级: map filter reduce lambda匿名函数 装饰器 函数注解:也就是写明参数、返回值的类型 设计模式 接口和抽象基类 yield yield from 要会用with 协程和yiel...
2020-07-22
0
494
正则表达式
#导入正则表达式模块 import re #创建一个regex对象 Regex = re.compiler(r'\d\d\d-\d\d\d-\d\d\d\d') #进行匹配 phonenumber = Regex.search('My number is 123-456-7890') print(p...
2020-07-22
0
333
类与对象-python
__ init __ __ repr __ __ str __ 让对象支持上下文管理:__ enter __、 __ exit __ 创建可管理的属性:@property、@xx.setter、@xx.deleter ...
2020-07-22
0
341
迭代器与生成器
>>> items = [1, 2, 3] >>> # Get the iterator >>> it = iter(items) # Invokes items.__iter__() >>> # Run the iterato...
2020-07-22
0
418
元编程、装饰器
https://www.cnblogs.com/songyue/p/5196809.html
2020-07-22
0
385
linux基础入门-实验楼学习笔记
一、 Linux系统简介 二、基本概念及操作 三、用户及文件权限管理 四、Linux目录结构及文件基本操作 五、环境变量与文件查找 六、文件打包与解压缩 七、文件系统操作与磁盘管理 八、Linux下的帮助命令 九、Linux任务计划crontab 十、命令执行顺序控制与管道 十一...
2020-07-22
0
515
首页
上一页
1
2
3
4
5
6
7
下一页
末页