Searched refs:cimg (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/samples/cpp/ |
D | houghcircles.cpp | 29 Mat cimg; in main() local 31 cvtColor(img, cimg, COLOR_GRAY2BGR); in main() 41 circle( cimg, Point(c[0], c[1]), c[2], Scalar(0,0,255), 3, LINE_AA); in main() 42 circle( cimg, Point(c[0], c[1]), 2, Scalar(0,255,0), 3, LINE_AA); in main() 45 imshow("detected circles", cimg); in main()
|
D | stereo_calib.cpp | 121 Mat cimg, cimg1; in StereoCalib() local 122 cvtColor(img, cimg, COLOR_GRAY2BGR); in StereoCalib() 123 drawChessboardCorners(cimg, boardSize, corners, found); in StereoCalib() 125 resize(cimg, cimg1, Size(), sf, sf); in StereoCalib() 304 Mat img = imread(goodImageList[i*2+k], 0), rimg, cimg; in StereoCalib() local 306 cvtColor(rimg, cimg, COLOR_GRAY2BGR); in StereoCalib() 308 resize(cimg, canvasPart, canvasPart.size(), 0, 0, INTER_AREA); in StereoCalib()
|
/external/opencv3/samples/python2/ |
D | houghcircles.py | 23 cimg = src.copy() # numpy function variable 28 …cv2.circle(cimg, (circles[0][i][0], circles[0][i][1]), circles[0][i][2], (0, 0, 255), 3, cv2.LINE_… 29 …cv2.circle(cimg, (circles[0][i][0], circles[0][i][1]), 2, (0, 255, 0), 3, cv2.LINE_AA) # draw cent… 32 cv2.imshow("detected circles", cimg)
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_houghcircles/ |
D | py_houghcircles.markdown | 28 cimg = cv2.cvtColor(img,cv2.COLOR_GRAY2BGR) 36 cv2.circle(cimg,(i[0],i[1]),i[2],(0,255,0),2) 38 cv2.circle(cimg,(i[0],i[1]),2,(0,0,255),3) 40 cv2.imshow('detected circles',cimg)
|