搜索资源列表
2D-Tin-delaunay
- 在vc++里根据生长算法完成delaunay三角网的构建.其中点是自己随机点上的.-in line with the growth algorithm Delaunay triangulation Construction. Which is their point of random.
TIN-CSharp
- TIN三角网在GIS中具有重要用途.本程序演示了随机点的生成与TIN的生长法动态生成。-TIN TIN in GIS is an important purpose. Demonstration of the process of generating random points with the Health TIN France long dynamically generated.
Delaunay_Li
- 老外写的构狄咯尼三角网程序,速度巨快,步骤:随机点生成,构三角网
mytin
- 三角网生成 采用三角网生长算法 自动生成随机点,构建三角网-Triangle Generation using triangulation algorithm automatically generate growth random, Construction triangulation
CsharpToTIN
- 生成TIN模型。就是随机点然后连接成三角网-generate TIN
ransac
- RANSAC算法的输入是一组观测数据,一个可以解释或者适应于观测数据的参数化模型,一些可信的参数。 RANSAC通过反复选择数据中的一组随机子集来达成目标。被选取的子集被假设为局内点,并用下述方法进行验证: 1.有一个模型适应于假设的局内点,即所有的未知参数都能从假设的局内点计算得出。 2.用1中得到的模型去测试所有的其它数据,如果某个点适用于估计的模型,认为它也是局内点。 3.如果有足够多的点被归类为假设的局内点,那么估计的模型就足够合理。 4