Qualcomm-AI-research / InverseForm

BSD 3-Clause Clear License
147 stars 22 forks source link

Questions about the test dataset #5

Open radiofor opened 3 years ago

radiofor commented 3 years ago

Hello! I am a novice and I have 2 questions. I would very appreciate it if you could answer.

1.Tere are many datas in https://www.cityscapes-dataset.com/downloads/, witch shoud I download.

  1. When trainning: gts = inputs['gts'] edge_gts = inputs['edge'] gts --> label data ? edge --> what data is it?
sborse3 commented 3 years ago

Hi @radiofor, thanks for your question!

  1. You could download gtfine_trainvaltest and leftimage8bit_trainvaltest as it contains the image and GT pairs.
  2. inputs['edge'] is the edge extracted from labels (you could try a basic laplacian/sobel edge on the gt map and threshold it) Best of luck!
radiofor commented 3 years ago

Hi @radiofor, thanks for your question!

  1. You could download gtfine_trainvaltest and leftimage8bit_trainvaltest as it contains the image and GT pairs.
  2. inputs['edge'] is the edge extracted from labels (you could try a basic laplacian/sobel edge on the gt map and threshold it) Best of luck!

Thank you very much. This will be of great help to my work.