
opencv
文章平均质量分 57
布兹学长
兔头小白
展开
-
In our last example, we drew filled rectangle. You modify the code to draw an unfilled rectangle.
文章目录前言一、last example二、modify the code to draw an unfilled rectangle.1.修改方法第一步第二步前言题目地址为:https://docs.opencv.org/4.x/db/d5b/tutorial_py_mouse_handling.html一、last example完整代码如下:import numpy as npimport cv2 as cvdrawing = False # true if mouse is pres原创 2022-02-20 20:38:56 · 144 阅读 · 0 评论 -
Create a Paint application with adjustable colors and brush radius using trackbars.
文章目录前言一、ApplicationSource CodeResult总结前言题目地址:https://docs.opencv.org/4.x/d9/dc8/tutorial_py_trackbar.html题目内容:一、ApplicationSource Code# 开发时间:2022/2/20 20:10# Create a Paint application with adjustable colors and brush radius using trackbars. For dr原创 2022-02-20 21:12:39 · 1478 阅读 · 0 评论 -
extract more than one colored object, for example, extract red, blue, and green objects simultaneous
文章目录前言Source CodeResult总结前言题目地址:https://docs.opencv.org/4.x/df/d9d/tutorial_py_colorspaces.html题目内容:Try to find a way to extract more than one colored object, for example, extract red, blue, and green objects simultaneously.Source Code# 开发时间:2022/2/2原创 2022-02-21 21:34:30 · 152 阅读 · 0 评论 -
find the Canny edge detection whose threshold values can be varied using two trackbars
文章目录前言Source CodeResult总结前言题目地址:https://docs.opencv.org/4.x/da/d22/tutorial_py_canny.html题目内容:Write a small application to find the Canny edge detection whose threshold values can be varied using two trackbars. This way, you can understand the effect o原创 2022-02-22 21:19:31 · 252 阅读 · 0 评论 -
Create a slide show of images in a folder with smooth transition between images
文章目录前言一、ApplicationSource CodeResult总结前言题目地址:https://docs.opencv.org/4.x/d0/d86/tutorial_py_image_arithmetics.html题目内容:Create a slide show of images in a folder with smooth transition between images using cv.addWeighted function一、ApplicationSource Co原创 2022-02-21 13:13:50 · 2237 阅读 · 0 评论