The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
56 views

How can I create a robot like the ez-b using a regular arduino?

I am interested in building a robot like the ez-b, sold by ez-robot.com. It comes with an SDK for Visual Studio and has direct scripting in runtime through a usb, bluetooth, wifi, irc or https ...
3
votes
0answers
125 views

Is the Turing test a legitimate test to compare Robots to Human? [migrated]

The Turing Test has been followed as a test that robots need to complete in order to be termed "Human-Like". But to what extent is this test justified? I mean, whatever the test maybe, the robot/ ...
5
votes
3answers
131 views

How Should I Choose an Educational Robotics Kits for Beginner Programmers?

I am a high school student, doing a research project in AI and Robotics. How should I choose a robotics kit (for example, will it be better to learn the basics by using a hexapod or robotic arm?) I ...
5
votes
3answers
179 views

Has a robot ever taken a complete IQ test?

And if so, what was the highest score so far? Some news articles suggest only parts of tests were aced.
14
votes
4answers
514 views

What algorithm should I implement to program a room cleaning robot?

For this question assume that the following things are unknown: The size and shape of the room The location of the robot The presence of any obstacles Also assume that the following things are ...
-2
votes
2answers
144 views

How do you implement an INS from an accelerometer and (optionally) gyros and a magnetometer?

I'm building a walking robot that will need to know when it moves forward. I'm using on-board intelligence and I plan on using accelerometers, gyros, and magnometers (if needed) to be able to detect ...
7
votes
1answer
186 views

Programming a line following robot with reinforcement learning

I am considering programming a line following robot using reinforcement learning algorithms. The question I am pondering over is how can I get the algorithm to learn navigating through any arbitrary ...
2
votes
4answers
98 views

What is the difference between 4-point and 8-point connectivity in graph based planning?

In graph-based planning (say, A*), states are connected to their neighbors. How should one decide whether to connect to the 4 neighbors or the 8 neighbors? What are the pros and cons of each ...