Hi, I have a small question about the calculation of the posterior.
In the paper, it contains a prior of Dirichlet Process, and the likelihood of object detection.
In the code,
the original DP, prior is proportional to the number of observations. p(n) ~ n/(N+alpha), where N is the total number of observations so far, and alpha is a factor. Since (N+alpha) is a constant multiplier for all classes, it does not affect the max-posterior calculation, so the calculation could be simplied.
Hi, I have a small question about the calculation of the posterior. In the paper, it contains a prior of Dirichlet Process, and the likelihood of object detection. In the code,
dp_prior = p(obj.measurements.label(k),:); sq_dist = sum((obj_poses - repmat(pos,1,N)).^2,1); posterior = exp(-4sq_dist).dp_prior; [prob, I]=max(posterior);
I just read your paper. I'm wondering if I understood it right. Thanks for your help!