Questions tagged [robotics]

24 questions
8
votes
5 answers

What are the practical uses of ontologies?

I have read many papers and books about ontologies and I am trying to figure out that how they are used in a real project? For example how the ontology for a soccer player robot can be defined and used with a cognitive architecture in order to make…
3
votes
0 answers

Efficient ways to avoid cycles in a graph

I am trying to implement an algorithm called the 'rapidly exploring random belief tree'. The aim of this algorithm is to come up with a path for a robot, which, instead of connecting start and goal with a least distance metric or something similar,…
HighVoltage
  • 161
  • 3
3
votes
1 answer

Trapezoidal decomposition of a graph

When we plan the motion of a robot we may apply the trapezoidal decomposition of free space. While applying the trapezoidal decomposition we add nodes to both the centers of trapezoids and vertical walls. When a robot wants to traverse between…
Alemha
  • 51
  • 4
3
votes
2 answers

Classify an algorithm to maximize number of tips used by liquid handlers concurrently

I'm looking for suggestions on algorithms, data structures or at least problems (so that I look for solutions in that domain) to consider. I realize that exact solution probably doesn't exist. But the more similar problems/solutions I can find the…
2
votes
0 answers

AI emotions vs human emotions

Will there ever be differential difference in emotions of humans and a robot? Or will they posses different emotions?
2
votes
0 answers

How to best model multidimensional, continuous, non-convex "shape" as neural network?

I have: set of n-dimensional points that I know are inside of the shape n >= 18, range on all dimensions has upper bound and lower bound (no axis goes to infinity). shape is pretty large in this n-dimensional space, occupies roughly 10-50% of the…
2
votes
1 answer

What is the triangulation angle?

I start to work in the field of computer vision and read a paper in which the author states "When suitable correspondences between salient image structures have been established, the 3D uncerntainty of these structures mainly depends on the…
AlexConfused
  • 121
  • 1
2
votes
2 answers

maze solving algorithms (pledge algorithm)

I saw this maze, and tried to apply pledge algorithms to it. But I am not able to solve this maze using this algorithm. What am I missing/doing incorrectly? PLEDGE ALGORITHM: in both cases we don't get to exit. you can read about these algorithms…
2
votes
0 answers

How to transform robot motor steps into X/Y coordinates?

I have a robot with two motors A and B connected to wheels 21.6mm in diameter. The motors move in steps, and there are twenty steps for each complete revolution of the wheel. To make the robot move forwards, I turn on A and B in the forward…
1
vote
1 answer

Robot swarm, Maximum area coverage

I have a swarm ofN robots to place on a plane area. Each robot would control a sub part of the area (navigating in it). What algorithm could I use to deploy my robots so that they all control a comparable part of the area. I was looking at Voronoi…
1
vote
0 answers

How to convert a search solution to a path to be tracked?

Let's say I have a space with obstacles and I'm trying to control a robot's movement while avoiding obstacles. I also have a start state and a goal state. I use a search algorithm to find the shortest path from the start state to the goal state…
Ali
  • 111
  • 2
1
vote
2 answers

What computational complexity classification does autonomous/self-driving cars belong to?

Self-driving car technology continues to attract popular attention and interest in today's media, but how would a computer scientist explain the theoretical nature of the problem? For example, we are frequently told that Sudoku and Go are examples…
mjlnr
  • 11
  • 2
1
vote
0 answers

What is the best algorithm for detecting the texture of a person's clothes in real-time for a mobile robot?

I am working on the human following robot. the robot extracts a feature of clothes's texture and distinguishes between the people that they stand up in front of the robot. So, the robot needs that it will be robust and fast.
0
votes
0 answers

Using counting to build a grid world

For this question, I have tried everything that I can think of, but cannot solve it. What I want to do is iterate over all possible values of $z_1$, but every method I use, it requires me to know what $p(m|z_1)$ will be for various $z_1$ values. …
0
votes
0 answers

How do I get my arduinobot to turn to the center of a moving object

My objective: is to have a robot follow me. (I'm using an arduiono bot for this) So I started off what some code that wasn't so dynamic. Essentially I had no issues with the robot following me (holding a cardboard because these robots need a good…
s24
  • 1
  • 2
1
2