cszn / SRMD

Learning a Single Convolutional Super-Resolution Network for Multiple Degradations (CVPR, 2018) (Matlab)

Home Page:http://openaccess.thecvf.com/content_cvpr_2018/papers/Zhang_Learning_a_Single_CVPR_2018_paper.pdf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Undefined function or variable 'vl_simplenn_tidy'

akafen opened this issue · comments

When I used the function Demo_bicubic_degradation_SRMD,it had the following message:
Undefined function or variable 'vl_simplenn_tidy'.
Error in Demo_bicubic_degradation_SRMD (line 59)
net = vl_simplenn_tidy(net);
Could you help me to solve it?

The function "vl_simplenn_tidy" is included in Matconvnet, so you should install Matconvnet first.

You can also test the model without Matconvnet by using the following but with much slower speed.

%res = vl_srmd_matlab(net, input); % you should also set "useGPU = 0;" and comment "net = vl_simplenn_tidy(net);"

The function "vl_simplenn_tidy" is included in Matconvnet, so you should install Matconvnet first.

You can also test the model without Matconvnet by using the following but with much slower speed.

%res = vl_srmd_matlab(net, input); % you should also set "useGPU = 0;" and comment "net = vl_simplenn_tidy(net);"

thank you very much