Questions tagged [slam]

This tag is for code related to SLAM (Simultaneous Localization and Mapping (SLAM) which is the computational problem, often related to robotics and/or drones, of constructing or updating a map of an unknown environment while simultaneously keeping track of an agent's location within it.

The following definition from Wikipedia:

In robotic mapping, simultaneous localization and mapping (SLAM) is the computational problem of constructing or updating a map of an unknown environment while simultaneously keeping track of an agent's location within it. While this initially appears to be a chicken-and-egg problem there are several algorithms known for solving it, at least approximately, in tractable time for certain environments. Popular approximate solution methods include the particle filter and extended Kalman filter.

SLAM on Wikipedia

216 questions
0
votes
2 answers

SLAM algorithm implementation in C++ that's compatible with windows?

I need a SLAM algorithm for a robot that will move around a track while avoiding obstacles (only one lap so loop will be closed at the end). The robot uses GPS, compass and lidar for navigation. I was about to implement a version of online graph…
Sentinel
  • 441
  • 1
  • 6
  • 25
0
votes
2 answers

How to generate irregular time intervals?

I intend to make a simulation of real-data ie produce data at irregular time intervals. Below is some prototype code I wrote in python to simulate irregular time(not data), but the results are that my loop runs too fast such that each "time"(dat)…
Justin Thong
  • 321
  • 3
  • 12
0
votes
1 answer

MRPT(Mobile Robot Programming Toolkit) Kalman filters

 I'm new to the domain of SLAM. Recently I found the Mobile Robot Programming Toolkit and I want to learn the extended Kalman filter in it.But frustratedly I think the sample bayesianTracking/test.cpp is a bit complex to me. So,I adapt it to solve a…
chen
  • 27
  • 6
0
votes
1 answer

HOWTO: Robot Operating System large area navigation

Consider I have a very large map (e.g. a map of New York City) which definitely cannot be load in the memory. Are there any solutions for ros to handle such situation? In another word, are there any solutions(or research) in robot area for large…
Exia
  • 2,381
  • 4
  • 17
  • 24
0
votes
0 answers

Unable to install slam on Mac OS 10.8.3

I'm having some trouble installing the R package "slam" on my machine. I'm running a Macbook Pro OS 10.8.3 with R Version 3.2.1. In order to get RTextTools package to work, I require a slam package of version 0.1-30 and above. I've read the…
dfyc
  • 11
  • 2
0
votes
0 answers

R: compilation failed for package 'slam'

I am using R 2.15.2 and I want to install the tm package to do some text analysis. I have downloaded the compatible tm package from the CRAN archives. I downloaded tm_0.5-9 I tried to install it using install.packages("/Downloads/tm_0.5-9.tar.gz",…
woodhead92
  • 127
  • 1
  • 14
0
votes
1 answer

Kudan in Unity: how to stop or reset markerless tracking?

I am creating an application with Kudan where a photograph (a 2D sprite) appears via markerless tracking. Based on the sample project I've successfully made adjustments so that the 2D plane is always perpendicular to the camera and placed on the…
0
votes
1 answer

Kudan - use virtual points for object occlusion

I want to develop something like Woorld kind of game with Kudan. So I need to do 2 things: get the virtual point markers from SLAM frameworks. Based on the virtual points, build polygons for object occlusions. I know how to do 2, but I don't know…
sooon
  • 4,718
  • 8
  • 63
  • 116
0
votes
1 answer

Using xSense in mrpt

I am a new user of mrpt library ! My project is about using IMU data (xSense 4th generation). However, I guess that some xSense data are already treated through an AHRS filter (sort of embedded Kalman filter from the documentation). And I am not…
0
votes
1 answer

Reading external 2D Laser Scan Data in mrpt

I'm trying to read laser scan data and then use that for building a map of the environment. My problem is, that I don't understand in what format the data has to be provided to the CObservation2DRangeScan object. I've…
mase
  • 1
  • 1
0
votes
0 answers

Real Time Camera/Image Based Large-Scale Slam Algorithm

I want to use an already implemented SLAM algorithm for mapping my college campus. I have found some algorithms on OpenSLAM.org and some other independent ones such as LSD-SLAM and Hector SLAM, which show some promises but they have limitation such…
-1
votes
1 answer

Mapping for mobile robot

I am working on mapping for mobile robot in a static environment, i was able to use SIFT to select image features from my frames and also, matched more frames to have more features. My problem is how to write Matlab codes use the image features to…
-1
votes
1 answer

Why does mapping out the Turtlebot 3 World from Gazebo in RViz SLAM GMapping result in a spontaneously cut off map?

Working with Visual Studio Code. WSL. Ubuntu 20.0.4. ROS Noetic. Following this guide: https://emanual.robotis.com/docs/en/platform/turtlebot3/slam_simulation/ I have tried to map this out on both my own and another laptop under the same environment…
-1
votes
1 answer

Visual SLAM on Android Device using single-frame Pointclouds

I have developed a Python application that uses the Intel RealSense D455 camera and the library open3d to perform realtime and, later, slower high definition 3d reconstruction. The algorithm used to achieve this is SLAM. Now, I'm looking everywhere…
vittoema96
  • 121
  • 1
  • 1
  • 6
-1
votes
1 answer

SLAM Toolbox Mapping Issue?

I am currently using ROS2 Humble and RP Lidar. I want to use SLAM with this so I am trying the Slam toolbox. So first I am doing: ros2 launch rplidar_ros rplidar.launch.py Then in another terminal, I am doing: ros2 launch slam_toolbox…
kathan
  • 1
1 2 3
14
15