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
The quick fix to it is to change L47 in FaceBoxes\utils\build.py
from extra_compile_args=["-Wno-cpp", "-Wno-unused-function"],#
to extra_compile_args={'gcc': ['/Qstd=c99']},#["-Wno-cpp", "-Wno-unused-function"],
The text was updated successfully, but these errors were encountered:
This is a fantastic package!
I noted that trying to build_cpu_nms on Windows system will throw an compilation error about '/Wno-cpp'
This is related to this issue mentioned in
cocodataset
cocodataset/cocoapi#51
The quick fix to it is to change L47 in
FaceBoxes\utils\build.py
from
extra_compile_args=["-Wno-cpp", "-Wno-unused-function"],#
to
extra_compile_args={'gcc': ['/Qstd=c99']},#["-Wno-cpp", "-Wno-unused-function"],
The text was updated successfully, but these errors were encountered: