自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 opencv2 图片相似度比较

from skimage.measure import compare_ssimimport cv2class CompareImage(): def compare_image(self, path_image1, path_image2): print() TT = cv2.imread(path_image2, 0) (W, H) = TT.shape imageA = cv2.imread(path_image1).

2022-02-23 00:45:58 3617

转载 线程池python,mysql

#!/usr/python/bin/python3# -*- coding:utf-8 -*-import loggingimport queueimport pymysqlLOG = logging.getLogger(__name__)class ConnectionPool(object): def __init__(self, **kwargs): self.size = kwargs.get('size', 10) self.kwargs

2020-12-23 22:31:01 175

原创 python 输入一个英文句子,翻转句子中单词的顺序,但单词内字符的顺序不改变

import reteststr = 'i am a man, my name is xxx! you can call me dad. understand everyone?'def testexchange(teststr): print(teststr) strsearch = re.search(".*?[,.?!]", teststr) it = re.finditer('.*?[,.?!]', teststr) resultlist =[] fo

2020-10-26 22:01:38 1414

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除