How can I plot the contents of a dictionary in a more dynamic way?

58 Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

A simple improvement would be to use a for-loop:

pos_colors = ['blue','brown','orange','azure']
neg_colors = ['slateblue','firebrick','wheat','lightcyan']

for i in range(4):
    cam_pos_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_'+str(i)]['positive_point_ids'].tolist()).points)
    cam_neg_pts = np.asarray(pcd.select_by_index(cam_points_final['cam_'+str(i)]['negative_point_ids'].tolist()).points)
    ax.scatter(cam_pos_pts[:,0], cam_pos_pts[:,1], cam_pos_pts[:,2], c = pos_colors[i], label = 'Cam '+str(i)+'_positive_dot')
    ax.scatter(cam_neg_pts[:,0], cam_neg_pts[:,1], cam_neg_pts[:,2], c = neg_colots[i], label = 'Cam '+str(i)+'_negative_dot')

plt.show()