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 ce9ba3e commit 255bab5Copy full SHA for 255bab5
.github/workflows/ci.yml
@@ -16,7 +16,7 @@ jobs:
16
matrix:
17
version:
18
- '1.6'
19
- - '1.8'
+ - '1.9'
20
- 'nightly'
21
os:
22
- ubuntu-latest
src/services/CameraServices.jl
@@ -95,9 +95,9 @@ Deprecates:
95
Also see: [`project`](@ref)
96
"""
97
function backproject(
98
- model::AbstractCameraModel, # AbstractCameraModel,
99
- px_coord::Union{<:AbstractVector{<:Real}, <:PixelIndex}
100
-)
+ model::AbstractCameraModel,
+ px_coord::Union{<:AbstractVector{<:Real}, <:PixelIndex}
+ )
101
#
102
x = (px_coord[1] - c_w(model)) / f_w(model)
103
y = -(px_coord[2] - c_h(model)) / f_h(model)
0 commit comments