sunset1995 / pytorch-layoutnet

Pytorch implementation of LayoutNet.
MIT License
171 stars 39 forks source link

There was a problem when I run visual_ 3d_ layout.py #25

Open wanglang-12138 opened 2 years ago

wanglang-12138 commented 2 years ago

When it comes to Warp floor and ceiling,After creating the thread, there is no result or error. What is the reason? Is it just waiting for a long time? Line 87 of visual 3d layout.py

    with Pool(n_thread) as p:
        sel = p.map(functools.partial(pt_in_poly, xy_poly), floor_xyz[:, :2])

    return floor_texture[sel], floor_xyz[sel], ceil_texture[sel], ceil_xyz[sel]