pull/2980/merge
Yakir Luc Gagnon 1 month ago committed by GitHub
commit 6ec7f61bf5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      modules/julia/samples/chessboard_corners.jl

@ -2,9 +2,8 @@ using OpenCV
const cv = OpenCV
# chess1.png is at https://raw.githubusercontent.com/opencv/opencv_extra/master/testdata/cv/cameracalibration/chess1.png
img = cv.imread("chess1.png",cv.IMREAD_GRAYSCALE)
file = download("https://raw.githubusercontent.com/opencv/opencv_extra/master/testdata/cv/cameracalibration/chess1.png")
img = cv.imread(file,cv.IMREAD_GRAYSCALE)
climg = cv.cvtColor(img, cv.COLOR_GRAY2BGR)
# Find the chess board corners

Loading…
Cancel
Save