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
I downloaded the data from the google drive link given in another issue #11 , but now I had some problems loading the measurements and understanding which of the nine measurements is for which frequency at which phase offset.
First, I loaded the raw kinect correlations as described using the given code:
with open(filename,'rb') as f:
meas=np.fromfile(f, dtype=np.int32)
meas = np.reshape(meas,(424,512,9)).astype(np.float32)
However the correlations are not correct and looked like this: (small snippet of one image)
Could you verify whether this is the right thing to do, or how to transform the data correctly?
Also could you provide the frequencies and phase_offsets for the measurements?
I was not able to find them in the paper or the supplementary.
So far I think the first 3 are at 40MHz(T=2.5e-8s) and the last three at ~58MHz (T=1.7e-8s) .
(taken from sim/tof_class/cam_real_mult)
But the middle one (low frequency signal) I did not find the frequency in the your code.
The phase offsets I figured should be [240, 120, 0]. Is this correct?
I tried with [0, 120, 240] first, but then the ToF-depth reconstruction is off and decreases with object distance.
I would be happy if you could help matching frequency, / phase_offsets to the data.
Thanks and best regards,
The text was updated successfully, but these errors were encountered:
Hello,
I downloaded the data from the google drive link given in another issue #11 , but now I had some problems loading the measurements and understanding which of the nine measurements is for which frequency at which phase offset.
First, I loaded the raw kinect correlations as described using the given code:
However the correlations are not correct and looked like this: (small snippet of one image)
Every other line seems to have the wrong sign.
To get something that looks like the image in the paper I used this transformation:
Could you verify whether this is the right thing to do, or how to transform the data correctly?
Also could you provide the frequencies and phase_offsets for the measurements?
I was not able to find them in the paper or the supplementary.
So far I think the first 3 are at 40MHz(T=2.5e-8s) and the last three at ~58MHz (T=1.7e-8s) .
(taken from
sim/tof_class/cam_real_mult
)But the middle one (low frequency signal) I did not find the frequency in the your code.
The phase offsets I figured should be [240, 120, 0]. Is this correct?
I tried with [0, 120, 240] first, but then the ToF-depth reconstruction is off and decreases with object distance.
I would be happy if you could help matching frequency, / phase_offsets to the data.
Thanks and best regards,
The text was updated successfully, but these errors were encountered: