You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey! I was interested in your project, so I tried training the model myself, and I found a very small scoping bug that might've come up from a new matlab version.
In cnn_qp1_mpii.m in the function getImageStats you try and access avg, rgbm1, rgbm2 out of the scope of the for loop. Very simple fix, you just have to declare the variables in that function before the for loop, so that they are in the functions main scope.
I can open the pull request if this actually an issue :)
Great job!
The text was updated successfully, but these errors were encountered:
Hey! I was interested in your project, so I tried training the model myself, and I found a very small scoping bug that might've come up from a new matlab version.
In
cnn_qp1_mpii.m
in the functiongetImageStats
you try and accessavg, rgbm1, rgbm2
out of the scope of the for loop. Very simple fix, you just have to declare the variables in that function before the for loop, so that they are in the functions main scope.I can open the pull request if this actually an issue :)
Great job!
The text was updated successfully, but these errors were encountered: