Trashhhh
Trashhhh
你好,想问下具体代码开源时间
你好,我在看您第五版的代码时,下面这段代码有点疑惑: ```C++ oid RequestData::handleConn() { if (!error) { if (events != 0) { // 一定要先加时间信息,否则可能会出现刚加进去,下个in触发来了,然后分离失败后,又加入队列,最后超时被删,然后正在线程中进行的任务出错,double free错误。 // 新增时间信息 int timeout = 2000; if (keep_alive) timeout = 5 * 60 *...
Hello, I've read your paper recently. In this paper, you mentioned that the training epoch is set as 2, 5 and 2, but the source code is set 150. I...
Hello, could you release the training code and the training details? Thank you!
Hello, I have a question about the unit of poses_bounds. I want to know the unit of the near bound and far bound in 'poses_bound.npy', mm or m? Is it...
May I know the ray directions derivation? `directions = torch.stack( [ (ii - width * 0.5) / focal_length, -(jj - height * 0.5) / focal_length, -torch.ones_like(ii), ], dim=-1, ) `...
Hello, now I have more questions. Could you tell me how to generate the spherify poses? I cannot understand the following code. ```python def spherify_poses(poses, bds): def add_row_to_homogenize_transform(p): r"""Add the...
Hello, Thanks for your source code! I've read your paper recently, and I have one question about this paper. 1. You mentioned that you **model the spatial query in the...