机器学习
文章平均质量分 87
wandaxiao66
这个作者很懒,什么都没留下…
展开
-
robotics专项课Estimation and Learning assignment 3: Occupancy Grid Mapping
% Robotics: Estimation and Learning % WEEK 3% % Complete this function following the instruction. function myMap = occGridMapping(ranges, scanAngles, pose, param)%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%...原创 2018-05-02 13:49:27 · 656 阅读 · 1 评论 -
robotics专项课程Estimation and Learning Assignment 2: Kalman Filter⎼Target Tracking
Where:X is state (for ex., 4x1 vector: {x ;y; vx ;vy} )P is state covariance matrix (for ex., 4x4 matrix)A is transition matrix for velocity term (for ex., 4x4 matrix)B is transition matrix for accele...原创 2018-04-28 14:36:19 · 381 阅读 · 0 评论 -
halcon 脚本代码实现简单的一维kmeans算法
kmeans(:: Props, K, Num : Classification)N := |Props|-1Seeds :=[]for i := 0 to K-1 by 1 tuple_rand(1,Rand) tuple_floor(Rand*N,seed) tuple_int(seed,seed) tuple_find(Seeds,seed, Ind...原创 2019-02-19 15:06:58 · 1521 阅读 · 0 评论 -
Halcon实现一维DBSCAN算法
procedure DBSCAN (: : Props, Epsilon, MinPoints: Classification)* initl := |Props|tuple_gen_const(l, 0,clusters)tuple_gen_const(l, 0, points)tuple_gen_const(l, 1, pointTypes)tuple_gen_const(l, ...原创 2019-08-20 16:47:08 · 880 阅读 · 0 评论