程序提示ValueError: operands could not be broadcast together with shapes (177,326) (177,),def reconstruct_3d_skeleton(filename): # 读取二维骨架图像 skeleton_img = cv2.imread('skeleton_gaussian.bmp', cv2.IMREAD_GRAYSCALE) # 读取含有高度信息的图像 height_img = cv2.imread('median_high.bmp', cv2.IMREAD_GRAYSCALE) # 将二维骨架图和高度信息图像沿着Z轴堆叠,得到一个三维数组 skeleton_3d = np.zeros((skeleton_img.shape[0], skeleton_img.shape[1], height_img.shape[1]), dtype=np.uint8) for i in range(height_img.shape[1]): skeleton_3d[:, :, i] = skeleton_img skeleton_3d[:, :, i] = skeleton_3d[:, :, i] * height_img[:, i] # 获取骨架线路径上的所有点,以及它们在三维数组中的坐标和宽度 skeleton_points = [] contours, hierarchy = cv2.findContours(skeleton_img, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) cnt = contours[0] for i in range(len(cnt) - 1): p1 = cnt[i][0] p2 = cnt[i + 1][0] rr, cc, zz = line_nd(p1 + (0,), p2 + (height_img.shape[1] - 1,)) for j in range(len(rr)): skeleton_points.append([rr[j], cc[j], zz[j], 1]) # 将每个点的坐标和宽度映射到三维数组中,得到一个三维点云 point_cloud = [] for point in skeleton_points: x, y, z, width = point point_cloud.append([x, y, z, width * 0.1]) point_cloud = np.array(point_cloud) # 使用Marching Cubes算法进行三维重建 verts, faces, _, _ = measure.marching_cubes(skeleton_3d, 0.1) # 返回三维点云 return point_cloud
时间: 2024-03-21 16:44:05 浏览: 78
ValueError: Could not find a format to read the specified file in mode ‘i’
这个错误通常是由于在使用广播(broadcasting)操作时,两个数组的形状(shape)不兼容导致的。在这个例子中,出现这个错误的原因可能是在点云的width属性乘以0.1时,导致了数组的形状不兼容。
你可以尝试修改代码,将这一行:
```python
point_cloud.append([x, y, z, width * 0.1])
```
改成这样:
```python
point_cloud.append([x, y, z, width])
```
然后再运行程序,看看是否还会出现这个错误。如果还有其他错误,可以给我反馈。
阅读全文