forked from ros-perception/vision_opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ros-perception#5 from chadrockey/master
Low Cost (Android) Sensors
- Loading branch information
Showing
6 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Single pressure reading. This message is appropriate for measuring the | ||
# pressure inside of a fluid (air, water, etc). This also includes | ||
# atmospheric or barometric pressure. | ||
|
||
# This message is not appropriate for force/pressure contact sensors. | ||
|
||
Header header # timestamp of the measurement | ||
# frame_id is the location of the pressure sensor | ||
|
||
float64 fluid_pressure # Absolute pressure reading in Pascals. | ||
|
||
float64 variance # 0 is interpreted as variance unknown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Single photometric illuminance measurement. Light should be assumed to be | ||
# measured along the sensor's x-axis (the area of detection is the y-z plane). | ||
# The illuminance should have a 0 or positive value and be received with | ||
# the sensor's +X axis pointing toward the light source. | ||
|
||
# Photometric illuminance is the measure of the human eye's sensitivity of the | ||
# intensity of light encountering or passing through a surface. | ||
|
||
# All other Photometric and Radiometric measurements should | ||
# not use this message. | ||
# This message cannot represent: | ||
# Luminous intensity (candela/light source output) | ||
# Luminance (nits/light output per area) | ||
# Irradiance (watt/area), etc. | ||
|
||
Header header # timestamp is the time the illuminance was measured | ||
# frame_id is the location and direction of the reading | ||
|
||
float64 illuminance # Measurement of the Photometric Illuminance in Lux. | ||
|
||
float64 variance # 0 is interpreted as variance unknown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Measurement of the Magnetic Field vector at a specific location. | ||
|
||
# If the covariance of the measurement is known, it should be filled in | ||
# (if all you know is the variance of each measurement, e.g. from the datasheet, | ||
#just put those along the diagonal) | ||
# A covariance matrix of all zeros will be interpreted as "covariance unknown", | ||
# and to use the data a covariance will have to be assumed or gotten from some | ||
# other source | ||
|
||
|
||
Header header # timestamp is the time the | ||
# field was measured | ||
# frame_id is the location and orientation | ||
# of the field measurement | ||
|
||
geometry_msgs/Vector3 magnetic_field # x, y, and z components of the | ||
# field vector in Tesla | ||
# If your sensor does not output 3 axes, | ||
# put NaNs in the components not reported. | ||
|
||
float64[9] magnetic_field_covariance # Row major about x, y, z axes | ||
# 0 is interpreted as variance unknown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Single reading from a relative humidity sensor. Defines the ratio of partial | ||
# pressure of water vapor to the saturated vapor pressure at a temperature. | ||
|
||
Header header # timestamp of the measurement | ||
# frame_id is the location of the humidity sensor | ||
|
||
float64 relative_humidity # Expression of the relative humidity | ||
# from 0.0 to 1.0. | ||
# 0.0 is no partial pressure of water vapor | ||
# 1.0 represents partial pressure of saturation | ||
|
||
float64 variance # 0 is interpreted as variance unknown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Single temperature reading. | ||
|
||
Header header # timestamp is the time the temperature was measured | ||
# frame_id is the location of the temperature reading | ||
|
||
float64 temperature # Measurement of the Temperature in Degrees Celsius | ||
|
||
float64 variance # 0 is interpreted as variance unknown |