Skip to content

Commit

Permalink
fix:getTrackbarPos() 注解对象 改为 createTrackbar()
Browse files Browse the repository at this point in the history
官方文档: https://docs.opencv.org/4.0.0/d9/dc8/tutorial_py_trackbar.html

修正官方文档 cv.getTrackbarPos()  注解,应该改为 cv.createTrackbar()
  • Loading branch information
jiangzhonglian authored Apr 21, 2023
1 parent 7caae44 commit 781b233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/4.0.0/2.5-tutorial_py_trackbar.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

这里,我们将创建用以显示指定颜色的简单程序。 你有一个显示颜色的窗口和三个轨迹栏,用来指定 B,G,R 颜色。你可以滑动轨迹栏改变窗口的颜色。默认情况下,初始颜色为黑色。

对于 **[cv.getTrackbarPos()](https://docs.opencv.org/4.0.0/d7/dfc/group__highgui.html#ga122632e9e91b9ec06943472c55d9cda8 "Returns the trackbar position. ")** 函数,第一个参数是轨迹栏名字,第二个参数是被附上的窗口名字,第三个参数是默认值,第四个是最大值,第五个是回调函数——滑条改变所执行的函数。这个回调函数也有一个默认参数,表示轨迹栏位置。我们并不关心函数做什么事,所以只是简单提一下。
对于 **[cv.createTrackbar()](https://docs.opencv.org/4.0.0/d7/dfc/group__highgui.html#gaf78d2155d30b728fc413803745b67a9b "Creates a trackbar and attaches it to the specified window. ")** 函数,第一个参数是轨迹栏名字,第二个参数是被附上的窗口名字,第三个参数是默认值,第四个是最大值,第五个是回调函数——滑条改变所执行的函数。这个回调函数也有一个默认参数,表示轨迹栏位置。我们并不关心函数做什么事,所以只是简单提一下。

轨迹栏的另一个重要应用是用作按钮或者开关。OpenCV在默认情况下没有按钮功能,因此我们用轨迹栏实现这样的功能。在我们的程序中创建了一个开关,其中程序只会在开关打开时有效,否则屏幕始终是黑色。

Expand Down

1 comment on commit 781b233

@vercel
Copy link

@vercel vercel bot commented on 781b233 Apr 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

opencv-doc-zh – ./

opencv-doc-zh.vercel.app
opencv-doc-zh-git-master-apachecn.vercel.app
opencv-doc-zh-apachecn.vercel.app

Please sign in to comment.