lionlai1989

Results 11 issues of lionlai1989

Hi: This project is awesome. I've encountered some issues and hope you can help. 1. I am running CARS on a pair of Pleiades stereo imagery and the result is...

Hi: I run s2p with pleiades images on my laptop and AWS server separately. However, I got error from AWS while the exact same code and configuration can run on...

I read through the commit history which said that the s2p is not using SRTM (DEM) anymore. I want to know how s2p can make the result (DSM) has the...

# Description This PR is about solving this [issue](https://github.com/centreborelli/s2p/issues/124), ie, updating `pyproj>3.0.0`. ## Type of change The changes of this PR are: - [x] Update `pyproj>3.0.0` in `setup.py`. ``` requirements...

The current `pyproj` version in s2p is under `3.0.0`. Could we please update `pyproj` to a more recent version? `pyproj==2.6` has been outdated for two years, and many bugs and...

# Description Dear the team of s2p: First, this project is awesome. It's the photogrammetry project that is thorough and comprehensive to follow for everyone who want to enter this...

In [s2p.visualisation.plot_matches_low_level](https://github.com/centreborelli/s2p/blob/master/s2p/visualisation.py#L63), it enforces images to be 3 dimensional like below. ```python if img1.ndim < 3: img1 = np.dstack([img1] * 3) if img2.ndim < 3: img2= np.dstack([img2] * 3) #...

Now I want to pre-train the RegNet with sentinel-2 and SPOT images. But I don't know how to pre-train RegNet without knowing the ground truth. In your paper, it said...

Since the new functionality, pleiades neo, is added to the package. Could you please update the package and repush to the repository? Thanks.

I am following [XTensor-python](https://github.com/xtensor-stack/xtensor-python) [tutorial](https://xtensor-python.readthedocs.io/en/latest/) to build a XTensor C++ project which has Python binding with CMake. The end goal is to create a self-contained Python package that users can...