Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upTraining on DEM SRTM dataset #451
Open
Labels
Comments
|
Hi htn274 Thanks in advance |
|
@htn274 Thanks for your detailed feedback and that's exactly our community needs! I will keep this issue in the front page. Regarding your question:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for your great work. I have been applying your research to my problem now.
Here is my problem:
SRTM is a globally DEM dataset. However, with a reservoir or a lake, SRTM showed the elevation of surface water at the time it collected (in 2000). Now I want to recover DEM below surface water of a lake or a reservoir.
Here is my step-by-step process:
My training set is 15k DEM images.
I generated masks correspond to input image. An input image has a specific mask. My mask is an connected area which has elevation lower than a random number. So it can describe a reservoir or a lake, I think so. Some of my masks with the input:
So I customized your code to read my input:

I also customized data_from_fnames in neuralgym toolkit to read '.tif' files. Then I used min-max normalize DEM image to 0-255 in order to pass it to your model.
Some first rows in my train.flist:
My losses are not converging
Some of generated validation images:
Questions
Thanks a lot! <3