登录
首页 » Java » hansel-master

hansel-master

于 2018-07-14 发布 文件大小:140KB
0 181
下载积分: 1 下载次数: 3

代码说明:

  代码内包含A星算法,JPS算法的实验平台。(The code contains the A star algorithm and the JPS algorithm experimental platform.)

文件列表:

hansel-master, 0 , 2012-09-22
hansel-master\.gitignore, 122 , 2012-09-22
hansel-master\README.md, 200 , 2012-09-22
hansel-master\doc, 0 , 2012-09-22
hansel-master\doc\intro.md, 124 , 2012-09-22
hansel-master\project.clj, 703 , 2012-09-22
hansel-master\resources, 0 , 2012-09-22
hansel-master\resources\asset-cache, 0 , 2012-09-22
hansel-master\resources\asset-cache\.gitkeep, 0 , 2012-09-22
hansel-master\resources\assets, 0 , 2012-09-22
hansel-master\resources\assets\hansel.coffee, 9107 , 2012-09-22
hansel-master\resources\assets\hansel.js.dieter, 20 , 2012-09-22
hansel-master\resources\public, 0 , 2012-09-22
hansel-master\resources\public\bootstrap, 0 , 2012-09-22
hansel-master\resources\public\bootstrap\css, 0 , 2012-09-22
hansel-master\resources\public\bootstrap\css\bootstrap-responsive.min.css, 15962 , 2012-09-22
hansel-master\resources\public\bootstrap\css\bootstrap.min.css, 98165 , 2012-09-22
hansel-master\resources\public\bootstrap\img, 0 , 2012-09-22
hansel-master\resources\public\bootstrap\img\glyphicons-halflings-white.png, 8777 , 2012-09-22
hansel-master\resources\public\bootstrap\img\glyphicons-halflings.png, 12799 , 2012-09-22
hansel-master\resources\public\bootstrap\js, 0 , 2012-09-22
hansel-master\resources\public\bootstrap\js\bootstrap.min.js, 25563 , 2012-09-22
hansel-master\resources\public\d3.v2.min.js, 115816 , 2012-09-22
hansel-master\resources\public\hansel.css, 609 , 2012-09-22
hansel-master\resources\public\index.html, 4364 , 2012-09-22
hansel-master\resources\public\jquery-1.8.0.min.js, 92555 , 2012-09-22
hansel-master\resources\public\underscore-min.js, 12821 , 2012-09-22
hansel-master\src, 0 , 2012-09-22
hansel-master\src\hansel, 0 , 2012-09-22
hansel-master\src\hansel\astar.clj, 3289 , 2012-09-22
hansel-master\src\hansel\core.clj, 1209 , 2012-09-22
hansel-master\src\hansel\grid.clj, 1735 , 2012-09-22
hansel-master\src\hansel\jps.clj, 3789 , 2012-09-22
hansel-master\src\hansel\racetrack.clj, 2564 , 2012-09-22
hansel-master\src\hansel\server.clj, 3496 , 2012-09-22
hansel-master\src\hansel\text_interface.clj, 1228 , 2012-09-22
hansel-master\src\hansel\util.clj, 315 , 2012-09-22
hansel-master\test, 0 , 2012-09-22
hansel-master\test\hansel, 0 , 2012-09-22
hansel-master\test\hansel\grid_test.clj, 1071 , 2012-09-22
hansel-master\test\hansel\jps_test.clj, 8965 , 2012-09-22
hansel-master\test\hansel\racetrack_test.clj, 4159 , 2012-09-22
hansel-master\test\hansel\server_test.clj, 1243 , 2012-09-22

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • GPS跟踪系统在java.it接收并解码NMEA句子。
    gps tracking system in java.it receives and decodes nmea sentences.
    2022-02-10 04:06:33下载
    积分:1
  • 软件设计文档国家标准
    软件设计文档国家标准 -National standards for software design documents
    2022-07-24 00:55:05下载
    积分:1
  • 生命进化游戏(The Game of Life) C++程序代码
    一种在很多格子里不断进化的生命进化的小游戏。 它的规则是这样的: 对其中一个网格,如果它的邻居少于两个,则它会死于孤独;如果多于三个,它亦会因拥挤而死。只有当它的邻居数等于二或三时它才会生存到下一代;如果某格原先没有细胞,但它有三个邻居时,会繁衍一个新的细胞。 以上是百度到的介绍。这个程序是我自己写的,只用到了,用的是二维数组,在控制台显示,所以范围比较有限。
    2023-04-18 04:10:03下载
    积分:1
  • ANSYS仿真实例命令流
    ANSYS命令流:高速铁路轨道有限元分析、火车过桥全过程仿真、斜齿轮、叶片冲撞分析(ANSYS command flow: finite element analysis of high speed railway track, whole process simulation of train crossing, analysis of helical gear and blade impact)
    2017-12-20 20:33:29下载
    积分:1
  • 帧差法
    利用转换公式将真彩图像转换为灰度图像。将灰度图像的每一个像素点对应一个元素保存在一个矩阵中。然后利用帧差法进行图像差分处理,从而提取出运动目标。对差分后的图像二值化处理,用最大类间方差分割法遍历求取最优阈值。使其作为基准,区分差分图像的背景元素和目标元素。最后用matlab进行编程使目标信息高亮显示在屏幕上。(The true color image is converted to gray image by transformation formula. Each pixel of a grayscale image is stored in a matrix corresponding to one element. Then the frame difference method is applied to image difference processing to extract moving targets. After the two valued processing of the differential image, the optimal threshold is obtained by traversing the maximum variance between classes. It is used as a benchmark to distinguish the background and target elements of the differential image. Finally, Matlab is programmed to highlight the target information on the screen.)
    2018-08-23 20:38:30下载
    积分:1
  • 825021
    列表框中的为一个数形控件(TreeCtrl的组合框)(In the list box is a numeric control (combo box for TreeCtrl))
    2018-10-22 00:40:47下载
    积分:1
  • 有很多 猜数字 简单的记事本 贪吃蛇 同学录
    有很多 猜数字 简单的记事本 贪吃蛇 同学录 -many simple tones in the notebook huge memory website
    2022-08-23 09:35:42下载
    积分:1
  • plotmode
    说明:  转子动力学进行横向振动绘图分析的程序语句(Rotor dynamics for lateral vibration mapping analysis of the program statement)
    2019-05-07 19:33:44下载
    积分:1
  • Matlab程序
    说明:  矩阵计算基础算法,matlab源代码包括方程组直接法和迭代法以及特征值求解(Matrix Computing Basic Algorithms, Matlab Source Code)
    2021-04-27 18:28:44下载
    积分:1
  • simple program based on VB6 to control 4 relay using parallel port interfacing w...
    simple program based on VB6 to control 4 relay using parallel port interfacing with nice GUI
    2022-08-23 11:40:59下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载