CSRNet-pytorch icon indicating copy to clipboard operation
CSRNet-pytorch copied to clipboard

Is the predicted map the same size as the input image?

Open Rayholle opened this issue 6 years ago • 2 comments

hello, there is a problem when i run jupyter notebook val.ipynb i try to see the sizes of output and groundtruth and find that the size of output is 1/8 of the input image just like : (704,1024) (88,128) So my problem is Do i need to 8 Bilinear the output of the model before counting it? Thanks a lot

Rayholle avatar Apr 28 '19 03:04 Rayholle

I have the same question as well. I was wondering if the output image from the model is not the same size as the ground truth GAM then during training how is it able to compute the different. Please advice

datduyng avatar May 10 '19 21:05 datduyng

Yes you should, upsample by factor of 8 and divide pixel by 64

Cli98 avatar Jan 16 '20 03:01 Cli98