摘要:
“单纯来源于CHATGPT” 一 在 C++ 中,& 符号具有多重用途,主要包括以下几种情况: 1. 地址运算符 当 & 用于变量前面时,它作为一种一元运算符,用来获取该变量在内存中的地址。例如: int a = 5; int* p = &a; // p 存储 a 的内存地址 这里 &a 表示变量 阅读全文
摘要:
原来还可以用数组切数组,我算是长见识了。不多说了,直接上代码应该可以明白 import numpy as np xyz = np.arange(36).reshape(3, 4, 3) B, N, C = xyz.shape farthest = np.random.randint(0, N, si 阅读全文
摘要:
#1 浅浅记录一下model的复现,之后做好完整的工程放到github上 PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation #2 import torch.nn as nn import torc 阅读全文