Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

INPUT_MEAN and INPUT_STD, how the values come? #34

Open
chunhuaqiushi1989 opened this issue Jan 11, 2019 · 2 comments
Open

INPUT_MEAN and INPUT_STD, how the values come? #34

chunhuaqiushi1989 opened this issue Jan 11, 2019 · 2 comments

Comments

@chunhuaqiushi1989
Copy link

hello, all my friends,
in the code:
norm_lidar = (lidar - self._mc.INPUT_MEAN) / self._mc.INPUT_STD

x, y, z, intensity, distance

mc.INPUT_MEAN = np.array([[[10.88, 0.23, -1.04, 0.21, 12.12]]])
mc.INPUT_STD = np.array([[[11.47, 6.91, 0.86, 0.16, 12.32]]])

And I don't understand how the values(INPUT_MEAN and INPUT_STD) are from?

@Meranre
Copy link

Meranre commented May 16, 2019

i think it's mean of {x,y,z,intensity , distance } and variance of the same data , you can calculate them with your own data if you want , here they have already calculate them i think

@Zhen-ao
Copy link

Zhen-ao commented Oct 29, 2020

i think it's mean of {x,y,z,intensity , distance } and variance of the same data , you can calculate them with your own data if you want , here they have already calculate them i think

@Meranre Hi~ I also have this problem. This is the value I calculated:

#x, y, z, intensity, distance
mc.INPUT_MEAN = np.array([[[-0.1023, 0.4952, -1.0545, 0.2877, 11.7127]]])
mc.INPUT_STD = np.array([[[12.2958, 9.4287, 0.86, 0.1450, 10.24]]])

I calculate the mean of all x, y, and z in the data set. Especially the value of x=-0.1023 I calculated is quite different from the value providedx= 10.88 . How did you solve it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants