Xelawk

Results 16 comments of Xelawk
trafficstars

> Textures are not considered yet in `sample_point_cloud_*`. It shouldn't be hard to implement. Would you be interested in contributing a PR with our guidance? I also really need this...

> > Hi, > > I need to generate a point cloud from a textured obj, I can generate it but without colors. > > Can I generate a sample...

> > > Hi, > > > I need to generate a point cloud from a textured obj, I can generate it but without colors. > > > Can I...

Feel free to the repo: https://github.com/Xelawk/mesh_utils If it does help you, pls star it, Thanks

问题找到了,你的ECABlock有个channel的入参是无效的,导致我在重构后错误传给了k_size ```python class ECABlock(nn.Module): """Constructs a ECA module. Args: channel: Number of channels of the input feature map k_size: Adaptive selection of kernel size """ def __init__(self, channel, k_size=3): super(ECABlock,...