搜索资源列表
IsPolygonCCW
- 一个用C++写的完整程序,测试多边形的顶点是否是按逆时针方向环绕的,算法简单高效-a complete written procedures, testing whether the polygon is surrounded by an anti-clockwise. simple and efficient algorithm
GIS-chengxu
- 本程序为个人GIS、路径算法及GPS定位的测试程序。主要用来测试GIS环境及算法的可靠和稳定性.
k-shortpath
- 本程序是K条最短路算法测试程序,陈艳艳老师的K条路算法。程序求3条最短路,约束条件值可以设定,约束值越小,多路径共用路段越多。
kmeans
- 经典的java编写的模糊C算法,已经在eclipse中编译测试成功,可测试出多个gis坐标的中心点
GIS_demo
- 本程序为个人GIS地图、路径算法及GPS导航定位的测试程序。主要用来测试GIS环境及算法的可靠和稳定性。-This procedure for individual GIS map, the path algorithm and GPS navigation and positioning test procedures. GIS is mainly used to test the environment and the reliability and stability of algorit
cube
- opengl做的立体演示程序,有画蝴蝶的程序算法,深度测试等典型例子-opengl to do three-dimensional demonstration program, a painting of a butterfly program algorithm, a typical example of the depth of testing
20105272003002
- 本程序为GIS和路径算法的测试程序,路径仅供参考。 算法描述:根据公交站点构造出虚拟含换乘边在内的公交路网,共有约22万个路段,2.3万个站点参与路径计算。根据不同的公交线路的速度赋不同的权值,对不同的换乘进行处理,求到最优的路径。换乘确定在400米之内+等车时间,求出最佳换乘。 -The GIS program and path algorithm for the test program, the path is for reference only. Algorithm De
bus_demo
- 本程序为GIS和路径算法的测试程序,路径仅供参考。程序采用VC++语言在windows平台从底层开发。-The procedure for the GIS and path algorithm testing procedures, the path is for reference only. Program using VC++ language, developed from the ground in the windows platform.
Map-matching-model-at-complex-roads
- 车辆导航离不开导航电子地图,地图匹配方法是连接卫星定位信息与导航电子地图的桥梁,即通过一定 的算法,根据定位信息,在导航电子地图上确定出车辆当前所行驶的道路,并在地图上实时准确地显示车辆 的位置[1]. 一套匹配准确率高、实时性好、易于工程实现的地图匹配算法是优秀车载导航产品的重要保 障[2 - 3]. 目前,大多数导航产品仅采用独立的GPS 定位方式,地图匹配方法也大部分采用基于点的投影算法, 算法简单,没有将道路的网络特征考虑进来,特别在面对复杂道路时,容易出现匹配错误,造成
bus_demo
- 本程序为GIS和路径算法的测试程序,路径仅供参考。-The program path algorithm for the GIS and the test procedure, the path is for reference only.
ransac
- RANSAC算法的输入是一组观测数据,一个可以解释或者适应于观测数据的参数化模型,一些可信的参数。 RANSAC通过反复选择数据中的一组随机子集来达成目标。被选取的子集被假设为局内点,并用下述方法进行验证: 1.有一个模型适应于假设的局内点,即所有的未知参数都能从假设的局内点计算得出。 2.用1中得到的模型去测试所有的其它数据,如果某个点适用于估计的模型,认为它也是局内点。 3.如果有足够多的点被归类为假设的局内点,那么估计的模型就足够合理。 4