I am using the ASP program to create DEM with worldview-2 stereoscopic images, but I have encountered a problem that I cannot solve by myself.
bundle_adjust 15JUL24042129-P1BS_R1C1-054471964020_01_P001.TIF \ 15JUL24042233-P1BS_R1C1-054471964020_01_P001.TIF \
15JUL24042129-P1BS_R1C1-054471964020_01_P001.XML \
15JUL24042233-P1BS_R1C1-054471964020_01_P001.XML \
onegcp.gcp -t dg --datum WGS_1984 --use-lon-lat-height-gcp-error \
-o p1/run_ba/run --num-passes 2
mapproject -t rpc --t_srs "+proj=utm +units=m +k=0.9996 +zone=46 +datum=WGS84" \
--tr 0.5 dem-adj.tif \
15JUL24042129-P1BS_R1C1-054471964020_01_P001.TIF \
--bundle-adjust-prefix p1/run_ba/run \
p1/left_mapped_ba.tif
mapproject -t rpc --t_srs "+proj=utm +units=m +k=0.9996 +zone=46 +datum=WGS84" \
--tr 0.5 dem-adj.tif \
15JUL24042233-P1BS_R1C1-054471964020_01_P001.TIF \
--bundle-adjust-prefix p1/run_ba/run \
p1/right_mapped_ba.tif
In order to execute the stereo_gui command, after running the mapproject command, I renamed the "run-15JUL24042129-P1BS_R1C1-054471964020_01_P001.adjust" and "run-15JUL24042233-P1BS_R1C1-054471964020_01_P001.adjust" in the bundle_adjust run result to "run-mapped_baped_ba. adjust" and "run-right_mapped_ba.adjust"
stereo_gui --alignment-method none \
--stereo-algorithm 1 \
--sgm-collar-size 512 \
--corr-tile-size 1024 \
--corr-memory-limit-mb 13000 \
--threads 12 \
--cost-mode 4 --corr-kernel 7 7 \
--subpixel-mode 7 \
p1/left_mapped_ba.tif p1/right_mapped_ba.tif \
--bundle-adjust-prefix p1/run_ba/run \
p1/run_pc/out dem-adj.tif
The above process can run successfully on one workstation, but when the stereo_gui is executed on another computer, the error shown in the picture appears
Is my data processing process correct? ? If it is correct, where did it go wrong?
Hope someone can solve my problem, thanks