wenguanwang / DHF1K

Revisiting Video Saliency: A Large-scale Benchmark and a New Model (CVPR18, PAMI19)
139 stars 28 forks source link

Gaussian blurring of fixation map of Hollywood2 and UCFSports #5

Closed kylemin closed 6 years ago

kylemin commented 6 years ago

I checked that the fixation map of DHF1K is blurred by width 30 gaussian kernel. Did you use the same width for the Hollywood2 and UCFSports dataset?

wenguanwang commented 6 years ago

I use this function for blurring the fixations in DHF1K.

[x,y]=find(fixations); densityMap= make_gauss_masks(y,x,[video_res_y,video_res_x]); make_gauss_masks.zip

kylemin commented 6 years ago

Thank you!