I am working on one project which should be re written, so i did not write from beginning, and there is no opportunity to ask person who wrote the code.
I have next part of code:
from ..cython.bbox import bbox_overlaps_cython
def bbox_overlaps(boxes, query_boxes):
return bbox_overlaps_cython(boxes, query_boxes)
Then this error comes out:
from ..cython.bbox import bbox_overlaps_cython
ModuleNotFoundError: No module named 'lib.rcnn.cython.bbox'
I already tried to build like python3 setup.py build_ext --inplace
in the same directory where setup.py is located, but error is the same.
The tree of folders is next:
rcnn
--cython
----bbox.pyx
----setup.py
--processing
----bbox_transform.py