ShunChengWu / SceneGraphFusion

BSD 2-Clause "Simplified" License
161 stars 26 forks source link

Q1. GraphPredictor.cpp->UpdateGCNFeature #10

Closed qorgh346 closed 3 years ago

qorgh346 commented 3 years ago

Hello! I have a question! Question 1. I understood that part idx2seg,seg2idx calculates idx2seg,seg2idx to predict the relationship between the two starting and target nodes created earlier.

If not, what does idx2seg and seg2idx mean?

q1

ShunChengWu commented 3 years ago

those two provide the mapping from/to segment ID to/from an index that stores in the temporary buffer that will be used in the prediction. The main reason for this is to allow a batch process on the network side.

qorgh346 commented 3 years ago

oh...I understand. Thank you!!