Prolog-Dijkstra-Algorithm 使用Dijkstra算法的Prolog出租车调度程序应用程序。 该应用程序将尝试最佳调度出租车以接客。 这是通过使用Dijkstra的算法来找到最短路径来完成的,并为此提供了一种实现方法。 该代码可以通过查询scheduler.pl并调用scheduler(FinalTaxiPositions)来运行。 为了仅测试Dijkstra的算法,可以使用graph.pl : % 0 is that start node = A ?- dijkstra(0, Costs, Prevs). % 0 is start node = A, 2 is destination = D ?- dijkstra_path(0, 2, Path, Cost). ```
2022-11-05 21:55:21 62KB puzzle algorithms graph-algorithms prolog
1
We apply graph matching method to detect infrared small moving targets using image sequences. Candidates (interest points) detected in the first frame form one graph and the same candidates in the last frame form another one. The real moving targets are extracted by matching these two graphs. Experimental results demonstrate that the proposed method is robust and efficient to the translation and rotation of the background.
2022-11-03 20:39:46 664KB
1
Petri Net编辑器 能够进行简单结构分析的极简Petri网络编辑器。 它可以在Petri网中找到电路,手柄和桥(如)。 您可以添加,删除和连接节点,添加令牌和触发转换,导出网络并以XML分解结果。 用鼠标左键移动节点,用右键选择。 自动网络布局基于。 免责声明 该应用程序于2015年被编写为大学项目。我不对其进行更新或维护。 建造 在Visual Studio中打开.sln文件,然后选择“构建-生成解决方案” 。 生成的.exe文件将在NetEditor/bin/Debug (或NetEditor/bin/Release )下生成。 屏幕截图
2022-11-02 14:42:40 1.05MB csharp graph-algorithms wpf petri-nets
1
relation-graph 这是一个Vue关系图谱组件,可以展示如组织机构图谱、股权架构图谱、集团关系图谱等知识图谱,可提供多种图谱布局,包括树状布局、中心布局、力学布局自动布局等。 这个项目使用典型的vue编程方式,代码简单易懂。如果需要实现一些自定义的高级功能,你可以直接使用源码作为一个component放到你的项目中去用,轻松、任意的修改。 详细使用方法、配置选项、在线demo,以及可视化的配置工具,可以访问这个网址: 快速使用: npm install --save relation-graph