Remove Inf and NaN values in a Point Cloud in the fastest way

1.7k Views Asked by At

I am new to MATLAB and just started working on Stereo Vision. After 3D Stereo Reconstruction of a scene, from the point cloud I obtain, I want to ignore all the co-ordinates with values NaN or Inf.

To do so, I am following this procedure:

For an image of dimensions 40 X 40, the point cloud is a matrix of 40 X 40 X 3. (3 because of 3D; X, Y and Z co-ordinates).

From the 3D point cloud (40 X 40 X 3), I rehsape to get a matrix of dimensions 1600 X 3. Each of the 3 columns corresponds to the X, Y and Z co-ordinates

At this step, I am trying to remove the entire row if I find any Inf or NaN element.

For example, after the concatenation step, if I have a matrix A

A = [1, 11, 21; NaN,12, 22; 3, 13, Inf; NaN,14, NaN; 5, Inf, NaN; 6, 16, 26];

I want to eliminate all rows which have either Inf or NaN elements.

So the expected result would be : [1, 11, 21; 6, 16, 26];

Since I will be working with images of dimensions 4000 X 3000, I want a very fast and efficient way of doing this.

I'm doing this in order to fit a plane (best fit) in the point cloud I obtain. The function to fit plane does not take Inf and NaN values. So even if one NaN value is found, all the corresponding X, Y and Z co-ordinates have to be eliminated.

If there is a better method to do this apart from what I'm doing at present, please inform.

Thank you =)

3

There are 3 best solutions below

3
On BEST ANSWER

For the 1600 x 3 sized reshaped A, you can use this -

A(~any(isinf(A) | isnan(A),2),:)

If the number of rows to be removed is a small number, you can directly remove them instead for a better performance -

A(any(isinf(A) | isnan(A),2),:) = [];
0
On

I think the simplest way to do that is to use isnan(A) and isinf(A) functions to find NaNs and Infs. This solution works well with large matrices (I personally use these kind of solutions for matrices way larger than yours). Try :

rowstoremove = (sum(isnan(A),2) ~= 0) | (sum(isinf(A),2) ~= 0);
A(rowstoremove,:) = [];

This should do the trick.

0
On

removeInvalidPoints funtion is also available in matlab which removes points with Inf or NaN coordinates. You can check from here: http://www.mathworks.com/help/vision/ref/pointcloud.removeinvalidpoints.html

Since these points are considering noise in a point cloud, better way is denoising. Because you can remove outliers from your data in addition to NaN and Inf coordinates. pcdenoise can be used to do that. But you should convert your data to matlab's pointCloud object (You can do that by using pointCloud function). Check here for further information: http://www.mathworks.com/help/vision/ref/pcdenoise.html