ZhangZhihui's Blog |
|
||
2020年4月5日
摘要:
查看文件opencv-4.2.0/3rdparty/ippicv/ippicv.cmake,根据下载地址"https://raw.githubusercontent.com/opencv/opencv_3rdparty/${IPPICV_COMMIT}/ippicv/"和文件名手动下载ippicv文 阅读全文
2020年3月30日
摘要:
打开Pycharm后点击Tools菜单,选择Create Desktop Entry... 阅读全文
2020年3月19日
摘要:
函数 cv2.minAreaRect() 返回一个Box2D结构 rect:(最小外接矩形的中心(x,y),(宽度,高度),旋转角度)。分别对应于返回值:(rect[0][0], rect[0][1]), (rect[1][0], rect[1][1]), rect[2] 借用原博主的图片(侵即删) 阅读全文
2020年3月18日
摘要:
阅读全文
摘要:
import cv2 as cvfor item in dir(cv): if item.startswith('IMREAD'): print(item, ':', eval('{}.{}'.format('cv', item))) Output: IMREAD_ANYCOLOR : 4 IMRE 阅读全文
2020年3月16日
摘要:
很简单,生成一个窗口实时显示摄像头的内容,然后将摄像头对准这个窗口。代码如下: import cv2clicked = Falsedef onMouse(event, x, y, flags, param): global clicked if event == cv2.EVENT_LBUTTONU 阅读全文
摘要:
The supported options may include the following:0: This option is an uncompressed raw video file. The file extension should be .avi.cv2.VideoWriter_fo 阅读全文
摘要:
可分别用来根据位置获取numpy矩阵中的值和为给定位置赋新值,速度比用index快。 阅读全文
2020年3月14日
摘要:
在BIOS中开启如下两个选项: Advanced --> CPU Configuration --> Intel Vertualization Technology 设为 Enabled Advanced --> System Agent (SA) Configuration --> VT-d 设为 阅读全文
2020年3月13日
摘要:
删除 ~/baidunetdisk,重新登录就可以了。 阅读全文
|
Copyright © 2024 ZhangZhihuiAAA
Powered by .NET 9.0 on Kubernetes |