We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d960e0 commit d46f4c4Copy full SHA for d46f4c4
src/buildcalibrations.jl
@@ -12,7 +12,7 @@ Build a calibration object. `files` are the image files of the checkerboard. `n_
12
function fit(files, n_corners, checker_size; aspect = 1, with_distortion = true, inverse_samples = 100, plot_folder::Union{Nothing, String} = nothing)
13
14
files, objpoints, imgpointss, sz, k, Rs, ts, frow, fcol, crow, ccol = detect_fit(files, n_corners, with_distortion, aspect)
15
- objpoints .*= checker_size
+ objpoints = objpoints .* checker_size
16
intrinsic, extrinsics, scale = obj2img(Rs, ts, frow, fcol, crow, ccol, checker_size)
17
c = Calibration(intrinsic, extrinsics, scale, k, files)
18
0 commit comments