-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How are ground truth saliency maps generated from recorded fixations? #2
Comments
I use the code from https://github.com/remega/video_database/blob/master/make_gauss_masks2.m |
Thank you. I assume this means you used the same parameters as in that code, For future reference if others are thinking about this: In the meantime I wanted to generate some more ground truth frames in the same format as yours, so I fitted a Gaussian to a few dots in your saliency frames to determine the parameters. Using this example for fitting I found that the Gaussian width was 12.9 pixels, then I defined a new Gaussian function using code in the same example to blur my own fixation maps with the same parameters. (But upscaled Gaussian because I needed higher resolution saliency maps). The resulting saliency maps looked like the DHF1K maps. |
@wenguanwang Did you use the same code to blur the fixation map of Hollywood2 or UCFSports dataset? |
For Hollywood2 and UCF, I directly use following function to blur the fixation map: densityMap = imfilter(fixations,fspecial('gaussian',150,20),'replicate'). |
I use this function for blurring the fixations in DHF1K. |
Thank you, I appreciate it. |
Hi, all, the data of Hollywood-2 and UCF have been uploaded. The code (ACLNet) and dataset (DHF1K with raw gaze records, UCF-sports are new added!) can be downloaded from: Google disk:https://drive.google.com/open?id=1sW0tf9RQMO4RR7SyKhU8Kmbm4jwkFGpQ Baidu pan: https://pan.baidu.com/s/110NIlwRIiEOTyqRwYdDnVg The Hollywood-2 (74.6G) can be downloaded from: Google disk:https://drive.google.com/open?id=1vfRKJloNSIczYEOVjB4zMK8r0k4VJuWk |
Thank you for the processed datasets, it's very helpful. The Hollywood-2 link requires extra permissions from you to download. I sent an access request via Google drive but perhaps you want to make it public like the other links. As a friendly suggestion for others downloading such large files from Google drive or similar onto a remote server, this Firefox extension was very helpful for me. |
@wjakobw thanks for your remind. It is public accessable now. https://drive.google.com/file/d/1vfRKJloNSIczYEOVjB4zMK8r0k4VJuWk/view?usp=sharing |
@wenguanwang Thank you! |
In your data collection you gather a set of discrete fixation maps (P in the paper). From this, continuous saliency maps (Q in the paper) are generated. I found no details about how this is done, could you elaborate? I would guess that it involves gaussians centered on the spot of fixation, I am interested in the exact parameters, how you combine fixations from different test subjects and so on.
Thanks again for providing the dataset!
The text was updated successfully, but these errors were encountered: