EAST
EAST copied to clipboard
Segmentation Fault : 11 in eval.py
Hello, thanks for the very nice library.
On Mac OS X 10.13.4, in Python 3.4.3 with the following g++ -v
:
configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.1.0 (clang-902.0.39.2)
Target: x86_64-apple-darwin17.5.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
I compile about just fine. Just some warning warning: 'pybind11_init' is deprecated
, warning: 'PyThread_set_key_value' is deprecated...
But running the eval.py
gives Segmentation fault: 11
. Any idea how to fix this ?
Many Thanks !
I think you need to make clean && make for the lanms.
Was this issue resolved?
did you resolved it?
I managed to execute eval.py by reversing the comments on lines 99-100, such that:
boxes = nms_locality.nms_locality(boxes.astype(np.float64), nms_thres)
# boxes = lanms.merge_quadrangle_n9(boxes.astype('float32'), nms_thres)
However I am not certain that this will resolve anyones problem.
I managed to execute eval.py by reversing the comments on lines 99-100, such that: ` boxes = nms_locality.nms_locality(boxes.astype(np.float64), nms_thres)
# boxes = lanms.merge_quadrangle_n9(boxes.astype('float32'), nms_thres)`
However I am not certain that this will resolve anyones problem.
think for you ,it's useful for me
I managed to execute eval.py by reversing the comments on lines 99-100, such that:
boxes = nms_locality.nms_locality(boxes.astype(np.float64), nms_thres)
# boxes = lanms.merge_quadrangle_n9(boxes.astype('float32'), nms_thres)
However I am not certain that this will resolve anyones problem.
this is useful for me!!!