Week 2 Flashcards

1
Q

What is a signal?

A

A time varying value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a system?

A

Something that transforms signals (actions of the robot)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are perceptions?

A

Derived from input signals to the robot

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is measurement range?

A

The set of values that can be measured using a measuring instrument.

Specified as a pair of numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is measurement resolution?

A

The smallest change in the measurement of a measuring device that can be observed

(typically a ‘small’ number)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an outlier?

A

An experimental data point not following the underlying distribution of points.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define Sampling theorem

A

Provides a way of ensuring that the original signal can be “reconstructed” from a finite set of samples.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Define Aliasing

A

High frequency changes appear as low frequencies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is Sampling frequency?

A

Number of times per second a given sensor is read (v, measured in Hz)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the Sampling period?

A

Time elapsed between two consecutive readings of one sensor (T, measured in seconds)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Define Proprioceptive in relation to robotic sensors

A

Measures an internal robot variable; battery level, motor temperature, encoders

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Define Exteroceptive in terms of robotics sensors

A

Measure external (environmental) variables; distance sensors, compass, bumpers, cameras…

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is an Active sensor?

A

These sensors measure the effect of something they put in the environment: laser scanner, encoders, Kinect…

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a Passive sensor

A

Measures some variable that is in the environment: compass, camera…

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are Polar coordinates?

A

Measurement provided by the laser scanner are pairs (θ, r ), direction and distance to the obstacle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are Cartesian coordinates?

A

Coordinates represented as x and y, relative to the robot

x = r cos θ
y = r sin θ

17
Q

What are the steps to calibrate a laser scanner?

A
  1. Ensure the robot and environment are static
  2. Read the laser many times
  3. Compute the mean for each reading
  4. Compute the standard deviation for each reading
18
Q

What is the Split and Merge algorithm?

A

A recursive algorithm to extract line segments from points

19
Q

Define the Split part of the Split and Merge algorithm

A

Input: List of points (xi , yi ) i = 1, · · · , n.

Output: List of segments (pairs of points)

Parameters: Threshold distance dth

  1. Build the line: first:i – last:j points
  2. Find further point:k to the line (distance d )
  3. If d > dth Split(i ,k); Split(k,j)
  4. Return segment(i ,j)
20
Q

Define the Merge part of the Split and Merge algorithm

A

Input: List of segments (pairs of points)

Output: List of segments (pairs of points)

Parameters: Threshold angle θth

  1. For all consecutive segments si and si +1
  2. If the angle between si and si +1 is smaller than θth, join the two segments si , si +1.
  3. End
21
Q

List some sensors that are used in robotics

A

GPS
Force sensors
Tactile sensors
Magnetic sensors
Pressure sensors