Skip to content

Commit

Permalink
feat: add a new input json file with variable disparity grids
Browse files Browse the repository at this point in the history
  • Loading branch information
duzelis committed Sep 12, 2024
1 parent b1c23ca commit 7ea1686
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions data_samples/json_conf_files/a_variable_disparity_pipeline.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"input": {
"left": {
"img": "./maricopa/left.tif",
"nodata": -9999
},
"right": {
"img": "./maricopa/right.tif",
"nodata": -9999
},
"col_disparity": {"init": "./maricopa/init_col_disparity_grid.tif", "range": 5},
"row_disparity": {"init": "./maricopa/init_row_disparity_grid.tif", "range": 5}
},
"pipeline": {
"matching_cost": {
"matching_cost_method": "zncc",
"window_size": 5
},
"disparity": {
"disparity_method": "wta",
"invalid_disparity": "NaN"
},
"refinement": {
"refinement_method": "dichotomy",
"iterations": 2,
"filter": {"method": "bicubic"}
}
}
}

0 comments on commit 7ea1686

Please sign in to comment.