Skip to content

Commit

Permalink
fixed distortion for wci_viewer at short ranges (do not set x offset …
Browse files Browse the repository at this point in the history
…for backtracer)
  • Loading branch information
peter-urban committed Oct 11, 2024
1 parent 96b783d commit f98c2f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ project(
'cpp',
license: 'MPL-2.0',

version: '0.8.3',
version: '0.8.4',
default_options: ['warning_level=2', 'buildtype=release', 'cpp_std=c++20'],
meson_version: '>=1.3.2' #first version with clang-cl openmp support
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,12 @@ def make_wci(
)

# t.append(time()) # 4
# bt = gp.backtracers.BTConstantSVP(
# scaling_infos.geolocation, scaling_infos.ping_offsets.x, scaling_infos.ping_offsets.y
# )
# geolocation x is x location in image as well for now
bt = gp.backtracers.BTConstantSVP(
scaling_infos.geolocation, scaling_infos.ping_offsets.x, scaling_infos.ping_offsets.y
scaling_infos.geolocation, 0, scaling_infos.ping_offsets.y
)

# t.append(time()) # 5
Expand Down

0 comments on commit f98c2f3

Please sign in to comment.