Local surface fitting to 3d points
NickName:Pavel Podlipensky Ask DateTime:2016-02-16T11:04:07

Local surface fitting to 3d points

I have set of 3d points, but it contains some outliers. My goal is to map original set of 3d points to "smoothed" set of 3d points and get rid of outliers. The approach I choose is - local surface fitting. I'm using C++ for my application, so I was wondering if this algorithm was already implemented in some library (ideally in opencv)?

Copyright Notice:Content Author:「Pavel Podlipensky」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/35422926/local-surface-fitting-to-3d-points

More about “Local surface fitting to 3d points” related questions

Local surface fitting to 3d points

I have set of 3d points, but it contains some outliers. My goal is to map original set of 3d points to "smoothed" set of 3d points and get rid of outliers. The approach I choose is - local surface

Show Detail

Fitting 3D data points to polynomial surface and getting the surface equation back

I am new to Python 3D fitting, and the related optimisation techniques. I tried to understand similar topics and to find an answer based on least squares methods, but my success has been rather lim...

Show Detail

Calculate root mean square of 3D deviation after surface fitting in python

My goal is to determine the 3D deviation (and its RMS) between a set of 3D data points and a fitted paraboloid in Python. Starting from this: Paraboloid (3D parabola) surface fitting python, I can

Show Detail

Plotting smooth surface using 3D points

This is the surface I need to create using 3D points in matlab. I have huge dense set of 3D points and I want to create a smooth surface using these points. The type of surface I need is shown her...

Show Detail

Generate 3D surface from scattered or data points

Can anyone tell me how to generate a 3D surface model like CAD in Matlab ? 1.Input: Input is a collection of points with (x,y,z) where surface is present for an object(I'm using this for a 3D scanner

Show Detail

Curve fitting points in 3D space

Trying to find functions that will assist us to draw a 3D line through a series of points. For each point we know: Date&Time, Latitude, Longitude, Altitude, Speed and Heading. Data might be re...

Show Detail

3d-surface plot with overlay points in javascript

I want to visualize a stochastic optimization algorithm written in javascript and so I'm looking to plot 3d surfaces in javascript with overlay scatter points. But I can't find any library that sup...

Show Detail

Surface on 3d points

I have a lot of points on 3D space, such as: [177,867390625000, -173,140625000000, -149,666937500000], [202,519976190476, -163,001285714286, -77,1924761904762], [175,576234375000, -148,98029687500...

Show Detail

Sorting 3D points on the surface of a sphere in clockwise order

I have an array of 3D points on the surface of the unit sphere, and a center point C (also on the surface of the unit sphere). How can I sort these points so they are in clockwise order relative to...

Show Detail

Python - Curve fitting of a 3D cloud of points with intersections

I have a cloud of points which represents a contour in 3D, with intersections. The following image shows an example of the type of geometry: you should see two orthogonal circles in 3D, intersectin...

Show Detail