my issue is the following, I am typing a script to scatter plot some points but I think my code can be written in a more dynamic or pythonic way.
cam_0_pos_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_0']['positive_point_ids'].tolist()).points)
cam_1_pos_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_1']['positive_point_ids'].tolist()).points)
cam_2_pos_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_2']['positive_point_ids'].tolist()).points)
cam_3_pos_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_3']['positive_point_ids'].tolist()).points)
cam_0_neg_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_0']['negative_point_ids'].tolist()).points)
cam_1_neg_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_1']['negative_point_ids'].tolist()).points)
cam_2_neg_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_2']['negative_point_ids'].tolist()).points)
cam_3_neg_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_3']['negative_point_ids'].tolist()).points)
ax.scatter(cam_0_pos_pts[:,0], cam_0_pos_pts[:,1], cam_0_pos_pts[:,2], c = 'blue', label = 'Cam 0_positive_dot')
ax.scatter(cam_1_pos_pts[:,0], cam_1_pos_pts[:,1], cam_1_pos_pts[:,2], c = 'brown', label = 'Cam 1_positive_dot')
ax.scatter(cam_2_pos_pts[:,0], cam_2_pos_pts[:,1], cam_2_pos_pts[:,2], c = 'orange', label = 'Cam 2_positive_dot')
ax.scatter(cam_3_pos_pts[:,0], cam_3_pos_pts[:,1], cam_3_pos_pts[:,2], c = 'azure', label = 'Cam 3_positive_dot')
ax.scatter(cam_0_neg_pts[:,0], cam_0_neg_pts[:,1], cam_0_neg_pts[:,2], c = 'slateblue', label = 'Cam 0_negative_dot')
ax.scatter(cam_1_neg_pts[:,0], cam_1_neg_pts[:,1], cam_1_neg_pts[:,2], c = 'firebrick', label = 'Cam 1_negative_dot')
ax.scatter(cam_2_neg_pts[:,0], cam_2_neg_pts[:,1], cam_2_neg_pts[:,2], c = 'wheat', label = 'Cam 2_negative_dot')
ax.scatter(cam_3_neg_pts[:,0], cam_3_neg_pts[:,1], cam_3_neg_pts[:,2], c = 'lightcyan', label = 'Cam 3_negative_dot')
plt.show()
can anyone suggest a better way to write this?
A simple improvement would be to use a for-loop: