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
In line 29 of your 'main_extraction.py' I noticed that you've made a typo with the variable name.
Currently the code reads:
try:
QF = jpeg_qtableinv(strimgfilenameeam)
I believe the line of code should read:
try:
QF = jpeg_qtableinv(stream=imgfilename) #or just 'imgfilename'
As such, your try/except clause always hits your except as there is no variable named 'strimgfilenameeam'. This results in QF always being set to 200, and the model for your noiseprint always being 'net_jpg101'.
Hope this is helpful.
The text was updated successfully, but these errors were encountered:
In line 29 of your 'main_extraction.py' I noticed that you've made a typo with the variable name.
Currently the code reads:
I believe the line of code should read:
As such, your try/except clause always hits your except as there is no variable named 'strimgfilenameeam'. This results in QF always being set to 200, and the model for your noiseprint always being 'net_jpg101'.
Hope this is helpful.
The text was updated successfully, but these errors were encountered: