muses0229

Results 36 comments of muses0229

![22](https://github.com/boycehbz/CHOMP/assets/132911839/98d44825-ff4b-47b8-9630-1617c7e71c27)

Here is my code to project points,the R,T,K are all cameras' parameters. RT = torch.cat([torch.tensor(data.R.transpose()), torch.tensor(data.T).reshape(3,1)], -1)[None, None].cuda() xyz = torch.repeat_interleave(world_3d_pts.squeeze(0)[None, None], repeats=RT.shape[1], dim=1) xyz = torch.matmul(RT[:, :, None, :,...

The result is still not right..., I'd like to know is R,T in smpl coordinate or world coordinate?

Here is the projected image I get now: ![bb](https://github.com/boycehbz/CHOMP/assets/132911839/5299190f-e06f-4fd0-a37c-3f2b1b6a2353)

sorry for bothering again,but my projection result still seems a bit wrong: ![22](https://github.com/boycehbz/CHOMP/assets/132911839/f836e621-d212-428b-9b0c-8869be0d12d7) I'm pretty sure my projection code is right because I get the same result using your code....

I check my code and found I add wrong transpose on camera.R,now my projection result is like that: ![F2N%KB SG13W$JUTBBEK~5L](https://github.com/tiangexiang/OccNeRF/assets/132911839/33a19623-4a5e-4b96-98ec-0b1ca1049de5) Is this looks right now?

kaolin version:0.10.0 torch1.11.0+cu11.5

I have solve this problem,thank you so much. But when I validate the model using this script:python validate.py --novel-view --num-workers 4 ${path_to_config},I encounter CUDA out of memory,I am using a...

Is it because the memory was not cleaned during validating?