Skip to content

Commit

Permalink
license blurbs
Browse files Browse the repository at this point in the history
  • Loading branch information
safijari committed May 31, 2024
1 parent bae7e49 commit 4e2656d
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions yag_slam/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ def print_config(config):
continue
print("{}: {}".format(name, config.__getattribute__(name)))


default_config = {
"angle_variance_penalty": 0.349,
"distance_variance_penalty": 0.3,
Expand Down
15 changes: 15 additions & 0 deletions yag_slam/raytracing.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Copyright 2024 Jariullah Safi

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.

# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from numba import njit
from numba.experimental import jitclass
from numba.types import float32
Expand Down
15 changes: 15 additions & 0 deletions yag_slam/scan_matching.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Copyright 2019 Jariullah Safi

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.

# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from numba import njit, prange
from tiny_tf.tf import Transform
import numpy as np
Expand Down
16 changes: 16 additions & 0 deletions yag_slam/splicing.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Copyright 2014 Jariullah Safi

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.

# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

# This file contains functions which can convert an existing map image to
# a graph which can then be used to continue mapping process inside yag slam


from numba import njit
from skimage.segmentation import slic, mark_boundaries, find_boundaries
from yag_slam.models import LocalizedRangeScan
Expand Down

0 comments on commit 4e2656d

Please sign in to comment.