Skip to content

Commit 255bab5

Browse files
committed
merge changes
1 parent ce9ba3e commit 255bab5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
version:
1818
- '1.6'
19-
- '1.8'
19+
- '1.9'
2020
- 'nightly'
2121
os:
2222
- ubuntu-latest

src/services/CameraServices.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ Deprecates:
9595
Also see: [`project`](@ref)
9696
"""
9797
function backproject(
98-
model::AbstractCameraModel, # AbstractCameraModel,
99-
px_coord::Union{<:AbstractVector{<:Real}, <:PixelIndex}
100-
)
98+
model::AbstractCameraModel,
99+
px_coord::Union{<:AbstractVector{<:Real}, <:PixelIndex}
100+
)
101101
#
102102
x = (px_coord[1] - c_w(model)) / f_w(model)
103103
y = -(px_coord[2] - c_h(model)) / f_h(model)

0 commit comments

Comments
 (0)