You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run my Pleiades stereo images with s2p but encountered the following error. FAIL("/usr/bin/python3 /home/ubuntu/.local/bin/s2p tmp.json"): mprod A not finite 1 1 FAIL("/usr/bin/python3 /home/ubuntu/.local/bin/s2p tmp.json"): mprod B not finite 2 2
if (!isfinite(a[i][k]))
fail("mprod A not finite %d %d", i, k);
if (!isfinite(b[k][j]))
fail("mprod B not finite %d %d", k, j);
I actually kind of worked around this error by doing the following.
if (!isfinite(a[i][k]))
a[i][k] = 0;
//fail("mprod A not finite %d %d", i, k);
if (!isfinite(b[k][j]))
b[k][j] = 0;
//fail("mprod B not finite %d %d", k, j);
And the result looks kind of nice for me. But I don't know what I was doing, I just want to eliminate the error and generated an plausible result.
The text was updated successfully, but these errors were encountered:
I run my Pleiades stereo images with s2p but encountered the following error.
FAIL("/usr/bin/python3 /home/ubuntu/.local/bin/s2p tmp.json"): mprod A not finite 1 1
FAIL("/usr/bin/python3 /home/ubuntu/.local/bin/s2p tmp.json"): mprod B not finite 2 2
I reckon this error is probably the same as this.
I actually kind of worked around this error by doing the following.
And the result looks kind of nice for me. But I don't know what I was doing, I just want to eliminate the error and generated an plausible result.
The text was updated successfully, but these errors were encountered: