You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The eq (70 ) in "Lightweight and Optimized Sound Source Localization and Tracking Methods for Open and Closed Microphone Array Configurations" caculates the uniform distribution p = K_hat/(4piK) , where K_hat denotes the number of points scanned, and K the total number of points needed to discretize the entire sphere。
The line 153 in mod_sst.c is diffuse_cst = 1.0f / (4.0f * M_PI * ((float) nPointsActive) / ((float) spatialindexes->nPoints)), the value of diffuse_cst is large than 1, i think it should be diffuse_cst = (((float)nPointsActive) / (4.0f * M_PI * (float)spatialindexes->nPoints));
Please help confirm whether the above description is correct
The text was updated successfully, but these errors were encountered:
Yes you are right, this seems to be a mistake in the code. It's probably absorbed by some other hand-tuned parameters found empirically, but should be changed to what you said to match the equations in the paper.
SeanTasker
pushed a commit
to SeanTasker/odas
that referenced
this issue
Sep 3, 2024
The text was updated successfully, but these errors were encountered: