abduallahmohamed/Social-STGCNN

Question on the dataset

JacobYuan7 opened this issue · 7 comments

Hello author, I am new to trajectory prediction so I get an easy question... Are ETH and UCY dataset containing any images? I don't find any but notice that there is a background image in the main paper (i.e. in Figure 4). Where does it come from?

Hi,
The ETH images can be found here: https://data.vision.ee.ethz.ch/cvl/aem/ewap_dataset_full.tgz , this is the main website https://icu.ee.ethz.ch/research/datsets.html

The UCY images: For some reasons i can't find a source for the images, https://graphics.cs.ucy.ac.cy/research/downloads/crowd-data it's kinda down. Thus we used a fixed background to illustrate the results. More details can be found here: http://trajnet.stanford.edu/data.php?n=1

What does the number of the txt file in datasets mean? How to generate visual results? Thank you

@hxy-tech
The text is: <frame_id> <ped_id>
For visual results: #9

@hxy-tech
The text is: <frame_id> <ped_id>
For visual results: #9
Excuse me. I am also new to trajectory prediction, I saw that ETH has such a website, https://data.vision.ee.ethz.ch/cvl/aess/dataset/ . I don't know if it is the same, but its annotation is the target bbox, but your datasets is x,y, then what does x,y stand for, how did you get it ?

@abduallahmohamed Sorry, I mainly work in computer vision, so I don't know how the coordinates are calculated in meters. In computer vision, targets in an image are usually marked with bboxes (for example, upper left and lower right coordinates). I only have the coordinates of the target in the image (the upper left corner and the lower right corner are marked). Can I calculate the center point of the target Bbox (whether normalization is required) by the coordinates of these two points instead of the coordinates in meters in your data set? Or how to get the coordinates of the target in meters? Thank you for your answer.