单项选择题
OpenCV的全称是什么?()
A.Open Visual Computing
B.Open Source Computer Vision Library
C.Open Vision Library
D.Open Computing Vision
相关考题
-
单项选择题
在OpenCV中,以下哪个代码片段用于绘制一条直线?()
A.cv2.line(image,(0,0),(100,100),(255,0,0),2)
B.cv2.drawLine(image,(0,0),(100,100),(255,0,0),2)
C.cv2.plotLine(image,(0,0),(100,100),(255,0,0),2)
D.cv2.paintLine(image,(0,0),(100,100),(255,0,0),2) -
单项选择题
在OpenCV中,以下哪个代码片段用于查找图像的轮廓?()
A.cv2.findContours(image,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
B.cv2.detectContours(image,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
C.cv2.getContours(image,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
D.cv2.contourDetection(image,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE) -
单项选择题
以下哪个代码片段用于在OpenCV中进行图像的Canny边缘检测?()
A.cv2.Canny(image,100,200)
B.cv2.edgeDetect(image,100,200)
C.cv2.findEdges(image,100,200)
D.cv2.detectEdges(image,100,200)
