
opencv
Coder小谢
专注Java后端校招。
展开
-
python学员管理系统
python学员管理系统原创 2022-01-16 16:19:42 · 222 阅读 · 0 评论 -
python公共方法之运算符*
python公共方法之运算符*原创 2022-01-12 15:17:07 · 183 阅读 · 0 评论 -
python公共方法之运算符+
python公共方法之运算符+原创 2022-01-12 15:15:55 · 146 阅读 · 0 评论 -
python集合操作增删查
python集合操作增删查原创 2022-01-12 15:10:33 · 112 阅读 · 0 评论 -
python字典key、value和item
python字典key、value和item原创 2022-01-12 15:00:32 · 1053 阅读 · 0 评论 -
三分钟搞懂python字典及其删除操作
三分钟搞懂python字典及其删除操作原创 2022-01-10 19:49:39 · 538 阅读 · 0 评论 -
python元组修改笔记
python元组修改笔记原创 2022-01-10 19:21:33 · 216 阅读 · 0 评论 -
python元组实战,两分钟搞懂
python元组实战,两分钟搞懂原创 2022-01-10 19:16:44 · 305 阅读 · 0 评论 -
python元组一看就懂笔记
python元组一看就懂笔记原创 2022-01-10 19:12:03 · 85 阅读 · 0 评论 -
python修改的常用方法
python修改的常用方法原创 2022-01-08 15:42:35 · 827 阅读 · 0 评论 -
python字符串的修改
python字符串的修改原创 2022-01-08 15:41:00 · 231 阅读 · 0 评论 -
python字符串的查找
python字符串的查找:原创 2022-01-08 15:30:05 · 4312 阅读 · 0 评论 -
python字符串切片笔记(详细)
python字符串切片笔记(详细)原创 2022-01-08 15:22:07 · 119 阅读 · 0 评论 -
python字符串的下标
python字符串的下标原创 2022-01-08 15:16:38 · 1359 阅读 · 0 评论 -
python字符串的输入
python字符串的输入原创 2022-01-08 15:13:41 · 209 阅读 · 0 评论 -
python字符串的两种输出格式
python字符串的两种输出格式原创 2022-01-08 15:11:15 · 163 阅读 · 0 评论 -
认识python的字符串
认识python的字符串原创 2022-01-08 15:08:29 · 196 阅读 · 0 评论 -
python循环之九九乘法表
python循环之九九乘法表原创 2022-01-07 14:43:34 · 160 阅读 · 0 评论 -
python的三目运算符
python的三目运算符原创 2022-01-07 14:41:11 · 78 阅读 · 0 评论 -
python综合案例---猜拳游戏
python综合案例---猜拳游戏原创 2022-01-07 14:39:16 · 2433 阅读 · 0 评论 -
python的逻辑运算符
python的逻辑运算符原创 2022-01-07 14:36:37 · 139 阅读 · 0 评论 -
python的格式化输入输出
python的格式化输出原创 2022-01-07 14:33:02 · 355 阅读 · 0 评论 -
python的数据类型
python的数据类型原创 2022-01-07 14:29:37 · 207 阅读 · 0 评论 -
python的变量(详解)
python的变量详解原创 2022-01-07 14:22:45 · 127 阅读 · 0 评论 -
python的注释(详解)
python的注释原创 2022-01-07 14:19:25 · 250 阅读 · 0 评论 -
2020-12-10
opencv入门实例(3)话不多说,拿去跑就完事,show my code:代码一:import cv2import numpy as npimg = cv2.imread("D:\photos\lixian.JPG") width = 250height = 350pts1 = np.float32([[111,219],[287,188],[154,482],[352,440]])pts2 = np.float32([[0,0],[width,0],[0,height],[widt原创 2020-12-10 23:13:51 · 100 阅读 · 0 评论 -
2020-12-06
import cv2img = cv2.imread("D:\photos\lixian.JPG")imgGray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)imgBlur = cv2.GaussianBlur(imgGray,(7,7),0)imgCanny = cv2.Canny(img,150,200)cv2.imshow("Gray Image",imgGray)cv2.imshow("Blur Image",imgBlur)cv2.imshow原创 2020-12-08 21:03:34 · 114 阅读 · 0 评论