Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuichiueda committed May 19, 2019
1 parent d757281 commit 6d40d1b
Show file tree
Hide file tree
Showing 44 changed files with 57,818 additions and 113 deletions.
Binary file added misc/expansion_resetting.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified scripts/__pycache__/ideal_robot.cpython-37.pyc
Binary file not shown.
Binary file modified scripts/__pycache__/puddle_world.cpython-37.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/puddle_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def draw(self, ax, elems):

def trial(): ###puddle_world4_trial
time_interval = 0.1
world = World(30, time_interval, debug=False)
world = PuddleWorld(30, time_interval, debug=False)

## 地図を生成して3つランドマークを追加 ##
m = Map()
Expand Down
819 changes: 816 additions & 3 deletions section_advanced_localization/expansion_reset_mcl.ipynb

Large diffs are not rendered by default.

1,703 changes: 1,678 additions & 25 deletions section_advanced_localization/expansion_sensor_reset_mcl.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions section_fastslam/fastslam1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"source": [
"class FastSlam(Mcl):\n",
" def __init__(self, envmap, init_pose, particle_num, landmark_num, motion_noise_stds={\"nn\":0.19, \"no\":0.001, \"on\":0.13, \"oo\":0.2}, \\\n",
" distance_dev_rate=0.14, direction_dev=0.05): #envmapとlandmark_numを入れ替え\n",
" distance_dev_rate=0.14, direction_dev=0.05): #numをparticle_numにして、landmark_numを追加\n",
" super().__init__(envmap, init_pose, particle_num, motion_noise_stds, distance_dev_rate, direction_dev)"
]
},
Expand Down Expand Up @@ -867,7 +867,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.0"
"version": "3.7.3"
}
},
"nbformat": 4,
Expand Down
1,032 changes: 1,032 additions & 0 deletions section_fastslam/tmp.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion section_graph_slam/graphbasedslam1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.0"
"version": "3.7.3"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions section_graph_slam/graphbasedslam3.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
" s2 = math.sin(self.x2[2] + self.z2[1])\n",
" c2 = math.cos(self.x2[2] + self.z2[1])\n",
" \n",
" ##誤差の計算##\n",
" ##残差の計算##\n",
" hat_e = self.x2 - self.x1 + np.array([\n",
" self.z2[0]*c2 - self.z1[0]*c1, \n",
" self.z2[0]*s2 - self.z1[0]*s1,\n",
Expand Down Expand Up @@ -1674,7 +1674,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.0"
"version": "3.7.3"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion section_graph_slam/graphbasedslam4.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3094,7 +3094,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.0"
"version": "3.7.3"
}
},
"nbformat": 4,
Expand Down
23 changes: 11 additions & 12 deletions section_inference/gauss_gamma1.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion section_inference/gauss_gamma2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.0"
"version": "3.7.3"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit 6d40d1b

Please sign in to comment.