Closed zhanghm1995 closed 2 years ago
I solved this problem.
I got the same error that.Can you tell me how to solve this problem?@zhanghm1995
Modify utils/render.py file.
def render(img, ver_lst, alpha=0.6, wfp=None, tex=None, connectivity=None):
**global tri**
if not connectivity is None:
tri = _to_ctype(connectivity.T).astype(np.int32)
I solved this problem using this way.
Hello, thank your for sharing this amazing work.
When I run the
python singleImage.py -f img
command, I got the error that:I found that it is because the
connectivity
argument is None by default, but I don't know how to set it to a correct value.