-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem compiling FaceBoxes #29
Comments
Just the same for me |
@RichestYoo I am pretty sure I have solved the problem adding this line of code: |
@pepeballesterostel I put that in FaceBoxes/utils/build.py like the following failed: And "TRUE", instead of True seems to say that it's not a python source. |
@RichestYoo |
@pepeballesterostel |
@RichestYoo |
@pepeballesterostel |
@RichestYoo |
@pepeballesterostel |
@RichestYoo i have added |
Thank you for your help, but I'm transferred to another job and is not working on this any more. |
After trying a couple of times, I find impossible to correctly compile the file ./build_cpu_nms.sh. The error is:
I am not sure if this could be related to the operating system. I am running the code in Visual Studio Code on Windows 11.
Looking after the error I found this. So I changed in build.py inside FaceBoxes/utils the line of code 47:
from
extra_compile_args=["-Wno-cpp", "-Wno-unused-function"]
toextra_compile_args={'gcc': ['/Qstd=c99']}
After running this, I get the following warnings:
From where I assume that is basically not compiling the extra modules, but ignoring it. So, it does not show and error, but as expected, the code does not work. The error raises in FaceBoxes\utils\nms_wrapper.py :
I also tried commenting line 47 - in build.py inside FaceBoxes/utils - and uncommenting line 46, which raises the same error.
Any ideas how to solve this?
Many thanks.
The text was updated successfully, but these errors were encountered: