blueye.sdk.camera
camera
Classes:
-
Camera–Handles the camera functionality for the Blueye drone.
-
Overlay–Control the overlay on videos and pictures.
-
Tilt–Handles the camera tilt functionality for the Blueye drone.
Camera
Camera(
parent_drone: Drone, is_guestport_camera: bool = False
)
Handles the camera functionality for the Blueye drone.
Parameters:
-
parent_drone(Drone) –The parent drone instance.
-
is_guestport_camera(bool, default:False) –Whether this is a guestport camera.
Methods:
-
configure–Return a context manager for batching camera parameter changes.
-
enable_ehdr–Enable or disable the eHDR mode.
-
get_backlight_compensation–Get the camera backlight compensation.
-
get_bitrate–Get the video stream bitrate.
-
get_bitrate_still_picture–Get the bitrate for the still picture stream.
-
get_brightness–Get the camera brightness.
-
get_contrast–Get the camera contrast.
-
get_denoise–Get the camera noise reduction.
-
get_ehdr_exposure_max_number–Get the maximum number of eHDR frames.
-
get_ehdr_exposure_min_number–Get the minimum number of eHDR frames.
-
get_exposure–Get the camera exposure.
-
get_framerate–Get the camera frame rate.
-
get_gain–Get the camera gain.
-
get_gamma–Get the camera gamma.
-
get_hue–Get the camera hue.
-
get_mtu_size–Get the network MTU size used for video streaming.
-
get_record_time–Get the duration of the current camera recording.
-
get_recording_bitrate–Get the recording bitrate in bits per second.
-
get_recording_codec–Get the recording video codec.
-
get_recording_resolution–Get the camera recording resolution.
-
get_resolution–Get the camera resolution.
-
get_saturation–Get the camera saturation.
-
get_sharpness–Get the camera sharpness.
-
get_stream_resolution–Get the camera stream resolution.
-
get_streaming_protocol–Get the streaming protocol (codec used for the RTSP stream).
-
get_whitebalance–Get the camera white balance.
-
is_ehdr_enabled–Get the state of the eHDR mode.
-
is_recording_active–Get the camera recording state.
-
set_backlight_compensation–Set the camera backlight compensation.
-
set_bitrate–Set the video stream bitrate.
-
set_bitrate_still_picture–Set the bitrate for the still picture stream.
-
set_brightness–Set the camera brightness.
-
set_contrast–Set the camera contrast.
-
set_denoise–Set the camera noise reduction.
-
set_ehdr_exposure_max_number–Set the maximum number of eHDR frames.
-
set_ehdr_exposure_min_number–Set the minimum number of eHDR frames.
-
set_exposure–Set the camera exposure.
-
set_framerate–Set the camera frame rate.
-
set_gain–Set the camera gain.
-
set_gamma–Set the camera gamma.
-
set_hue–Set the camera hue.
-
set_mtu_size–Set the network MTU size used for video streaming.
-
set_recording–Set the camera recording state.
-
set_recording_bitrate–Set the recording bitrate in bits per second.
-
set_recording_codec–Set the recording video codec.
-
set_recording_resolution–Set the camera recording resolution.
-
set_resolution–Set the camera resolution.
-
set_saturation–Set the camera saturation.
-
set_sharpness–Set the camera sharpness.
-
set_stream_resolution–Set the camera stream resolution.
-
set_streaming_protocol–Set the streaming protocol (codec used for the RTSP stream).
-
set_whitebalance–Set the camera white balance.
-
take_picture–Take a still picture and store it locally on the drone.
Source code in blueye/sdk/camera.py
960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 | |
configure
configure(timeout: float = 0.5) -> _ParamsBatch
Return a context manager for batching camera parameter changes.
All attribute assignments on the returned object are accumulated and sent as a single
set_camera_parameters request when the with block exits. If an exception is
raised inside the block the changes are discarded.
Parameters take the same names and values as the corresponding setters; the protobuf field names and enums are accepted as well.
Parameters:
-
timeout(float, default:0.5) –Timeout in seconds for the request. Increase when changing parameters that trigger pipeline restarts (e.g. codec, resolution).
Raises:
-
ValueError–If a value is not valid for the parameter being set.
-
RuntimeError–If a parameter requires a newer Blunux version than the drone runs.
Usage::
with drone.camera.configure() as params:
params.recording_codec = bp.RecordingCodec.RECORDING_CODEC_H265
params.recording_bitrate = 20_000_000
# sent here
Source code in blueye/sdk/camera.py
991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 | |
enable_ehdr
enable_ehdr(enable_ehdr: bool)
Enable or disable the eHDR mode.
Only available on Ultra.
Parameters:
-
enable_ehdr(bool) –True to enable eHDR mode, False to disable it. Enabled by default.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 | |
get_backlight_compensation
get_backlight_compensation() -> int
Get the camera backlight compensation.
Only available on Ultra.
Returns:
-
int–The camera backlight compensation.
Source code in blueye/sdk/camera.py
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 | |
get_bitrate
get_bitrate() -> int
Get the video stream bitrate.
Returns:
-
int–The H264 video stream bitrate.
Source code in blueye/sdk/camera.py
1058 1059 1060 1061 1062 1063 1064 1065 | |
get_bitrate_still_picture
get_bitrate_still_picture() -> int
Get the bitrate for the still picture stream.
Returns:
-
int–The still picture stream bitrate.
Source code in blueye/sdk/camera.py
1081 1082 1083 1084 1085 1086 1087 1088 | |
get_brightness
get_brightness() -> int
Get the camera brightness.
Only available on Ultra.
Returns:
-
int–The camera brightness.
Source code in blueye/sdk/camera.py
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 | |
get_contrast
get_contrast() -> int
Get the camera contrast.
Only available on Ultra.
Returns:
-
int–The camera contrast.
Source code in blueye/sdk/camera.py
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 | |
get_denoise
get_denoise() -> int
Get the camera noise reduction.
Only available on Ultra.
Returns:
-
int–The camera noise reduction.
Source code in blueye/sdk/camera.py
1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 | |
get_ehdr_exposure_max_number
get_ehdr_exposure_max_number() -> int
Get the maximum number of eHDR frames.
Only available on Ultra.
Returns:
-
int–The maximum number of eHDR frames.
Source code in blueye/sdk/camera.py
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 | |
get_ehdr_exposure_min_number
get_ehdr_exposure_min_number() -> int
Get the minimum number of eHDR frames.
Only available on Ultra.
Returns:
-
int–The minimum number of eHDR frames.
Source code in blueye/sdk/camera.py
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 | |
get_exposure
get_exposure() -> int
Get the camera exposure.
Returns:
-
int–The camera exposure.
Source code in blueye/sdk/camera.py
1106 1107 1108 1109 1110 1111 1112 1113 | |
get_framerate
get_framerate() -> int
Get the camera frame rate.
Raises:
-
RuntimeError–If the drone reports a frame rate the SDK does not recognize.
Returns:
-
int–The camera frame rate.
Source code in blueye/sdk/camera.py
1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 | |
get_gain
get_gain() -> float
Get the camera gain.
Only available on Pioneer/Pro/X1/X3.
Returns:
-
float–The camera ISO gain.
Source code in blueye/sdk/camera.py
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 | |
get_gamma
get_gamma() -> int
Get the camera gamma.
Only available on Ultra.
Returns:
-
int–The camera gamma.
Source code in blueye/sdk/camera.py
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 | |
get_hue
get_hue() -> int
Get the camera hue.
Returns:
-
int–The camera hue.
Source code in blueye/sdk/camera.py
1153 1154 1155 1156 1157 1158 1159 1160 | |
get_mtu_size
get_mtu_size() -> int
Get the network MTU size used for video streaming.
Returns:
-
int–The MTU size in bytes (0 if the drone default is used).
Source code in blueye/sdk/camera.py
1760 1761 1762 1763 1764 1765 1766 1767 | |
get_record_time
get_record_time() -> Optional[int]
Get the duration of the current camera recording.
Returns:
-
Optional[int]–The length in seconds of the current recording, -1 if the camera is not currently recording. Returns None if the SDK hasn't received a RecordState telemetry message.
Source code in blueye/sdk/camera.py
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 | |
get_recording_bitrate
get_recording_bitrate() -> int
Get the recording bitrate in bits per second.
A value of 0 means the drone will auto-compute a default bitrate based on the current resolution, framerate, and codec.
Returns:
-
int–The current recording bitrate in bits per second (0 if automatic).
Source code in blueye/sdk/camera.py
1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 | |
get_recording_codec
get_recording_codec() -> RecordingCodec
Get the recording video codec.
Returns:
-
RecordingCodec–The current recording codec setting.
Source code in blueye/sdk/camera.py
1670 1671 1672 1673 1674 1675 1676 1677 | |
get_recording_resolution
get_recording_resolution() -> Resolution
Get the camera recording resolution.
For drones running Blunux version < 4.4.1 this is the same as the
get_resolution method.
Returns:
-
Resolution–The camera recording resolution.
Source code in blueye/sdk/camera.py
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 | |
get_resolution
get_resolution() -> int
Get the camera resolution.
Deprecated
Drones running Blunux 4.4 or newer take the resolution from the stream and recording
resolution fields. Use
get_stream_resolution and
get_recording_resolution
instead.
Raises:
-
RuntimeError–If the drone reports a resolution the SDK does not recognize.
Returns:
-
int–The camera resolution.
Source code in blueye/sdk/camera.py
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 | |
get_saturation
get_saturation() -> int
Get the camera saturation.
Only available on Ultra.
Returns:
-
int–The camera saturation.
Source code in blueye/sdk/camera.py
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 | |
get_sharpness
get_sharpness() -> int
Get the camera sharpness.
Only available on Ultra.
Returns:
-
int–The camera sharpness.
Source code in blueye/sdk/camera.py
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 | |
get_stream_resolution
get_stream_resolution() -> Resolution
Get the camera stream resolution.
For drones running blunux version < 4.4.1 this is the same as the
get_resolution method.
Returns:
-
Resolution–The camera stream resolution
Source code in blueye/sdk/camera.py
1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 | |
get_streaming_protocol
get_streaming_protocol() -> StreamingProtocol
Get the streaming protocol (codec used for the RTSP stream).
Returns:
-
StreamingProtocol–The current streaming protocol.
Source code in blueye/sdk/camera.py
1733 1734 1735 1736 1737 1738 1739 1740 | |
get_whitebalance
get_whitebalance() -> int
Get the camera white balance.
Returns:
-
int–The camera white balance.
Source code in blueye/sdk/camera.py
1130 1131 1132 1133 1134 1135 1136 1137 | |
is_ehdr_enabled
is_ehdr_enabled() -> bool
Get the state of the eHDR mode.
Only available on Ultra.
Returns:
-
bool–The current state of the eHDR mode.
Source code in blueye/sdk/camera.py
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 | |
is_recording_active
is_recording_active() -> Optional[bool]
Get the camera recording state.
Returns:
-
Optional[bool]–True if the camera is currently recording, False if not. Returns None if the SDK hasn't received a RecordState telemetry message.
Source code in blueye/sdk/camera.py
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 | |
set_backlight_compensation
set_backlight_compensation(compensation: int)
Set the camera backlight compensation.
Only available on Ultra.
Parameters:
-
compensation(int) –Set the backlight compensation (-150..150), 10 is the default.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 | |
set_bitrate
set_bitrate(bitrate: int)
Set the video stream bitrate.
Parameters:
-
bitrate(int) –Set the video stream bitrate in bits, valid values are in range (1 000 000 .. 16 000 000).
Source code in blueye/sdk/camera.py
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | |
set_bitrate_still_picture
set_bitrate_still_picture(bitrate: int)
Set the bitrate for the still picture stream.
Parameters:
-
bitrate(int) –Set the still picture stream bitrate in bits, valid values are in range (1 000 000 .. 300 000 000). Default value is 100 000 000.
Source code in blueye/sdk/camera.py
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 | |
set_brightness
set_brightness(brightness: int)
Set the camera brightness.
Only available on Ultra.
Parameters:
-
brightness(int) –Set the brightness (-10..10), 0 is the default.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 | |
set_contrast
set_contrast(contrast: int)
Set the camera contrast.
Only available on Ultra.
Parameters:
-
contrast(int) –Set the contrast (-50..50), 0 is the default.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 | |
set_denoise
set_denoise(denoise: int)
Set the camera noise reduction.
Only available on Ultra.
Parameters:
-
denoise(int) –Set the noise reduction (-20..20), -20 is the default.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 | |
set_ehdr_exposure_max_number
set_ehdr_exposure_max_number(number: int)
Set the maximum number of eHDR frames.
Only available on Ultra.
Parameters:
-
number(int) –Set the maximum number of eHDR frames (1..4), 2 is the default. Setting it higher than 2 can reduce the frame rate.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 | |
set_ehdr_exposure_min_number
set_ehdr_exposure_min_number(number: int)
Set the minimum number of eHDR frames.
Only available on Ultra.
Parameters:
-
number(int) –Set the minimum number of eHDR frames (1..4), 1 is the default.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 | |
set_exposure
set_exposure(exposure: int)
Set the camera exposure.
Parameters:
-
exposure(int) –Set the camera exposure time. Unit is thousandths of a second, ie. 5 = 5s/1000. Valid values are in the range (1 .. 5000) or -1 for auto exposure.
Source code in blueye/sdk/camera.py
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 | |
set_framerate
set_framerate(framerate: int)
Set the camera frame rate.
Parameters:
-
framerate(int) –Set the camera frame rate in frames per second. Valid values are 25, 30 or 60. 25 fps is only supported on Pioneer/Pro/X1/X3, and 60 fps only on the Ultra at 1440p or lower. If the requested frame rate is not supported at the current resolution the drone reduces it while respecting the resolution.
Raises:
-
ValueError–If the frame rate is not 25, 30 or 60.
Source code in blueye/sdk/camera.py
1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 | |
set_gain
set_gain(gain: float)
Set the camera gain.
Only available on Pioneer/Pro/X1/X3.
Parameters:
-
gain(float) –Set the ISO gain (0..1).
Source code in blueye/sdk/camera.py
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 | |
set_gamma
set_gamma(gamma: int)
Set the camera gamma.
Only available on Ultra.
Parameters:
-
gamma(int) –Set the gamma (4..79), 22 is the default.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 | |
set_hue
set_hue(hue: int)
Set the camera hue.
Parameters:
-
hue(int) –Set the camera hue. Valid values are in the range (-40..40).
Source code in blueye/sdk/camera.py
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 | |
set_mtu_size
set_mtu_size(mtu_size: int)
Set the network MTU size used for video streaming.
Parameters:
-
mtu_size(int) –Set the MTU size in bytes (68..65535). The Blueye app allows values between 500 and 1460. A value of 0 means the drone uses its default of 1400.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.1.0.
Source code in blueye/sdk/camera.py
1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 | |
set_recording
set_recording(start_recording: bool)
Set the camera recording state.
Parameters:
-
start_recording(bool) –Set to True to start a recording, set to False to stop the current recording.
Warns:
-
RuntimeWarning–If no recording state telemetry data is received.
Source code in blueye/sdk/camera.py
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 | |
set_recording_bitrate
set_recording_bitrate(bitrate: int)
Set the recording bitrate in bits per second.
A value of 0 means the drone will auto-compute a default bitrate based on the current resolution, framerate, and codec.
Parameters:
-
bitrate(int) –Set the recording bitrate in bits per second. Use 0 for automatic.
Raises:
-
RuntimeError–If the connected drone is running Blunux older than 5.0.0.
Source code in blueye/sdk/camera.py
1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 | |
set_recording_codec
set_recording_codec(codec: RecordingCodec)
Set the recording video codec.
Parameters:
-
codec(RecordingCodec) –Set the recording codec. RECORDING_CODEC_UNSPECIFIED uses the platform default (H.264). RECORDING_CODEC_H265 is only available on Ultra.
Raises:
-
ValueError–If the codec is not a valid
blueye.protocol.RecordingCodectype. -
RuntimeError–If the connected drone is running Blunux older than 5.0.0.
Source code in blueye/sdk/camera.py
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 | |
set_recording_resolution
set_recording_resolution(resolution: Resolution)
Set the camera recording resolution.
For drones running Blunux version < 4.4.1 this is the same as the
set_resolution method.
Parameters:
-
resolution(Resolution) –Set the camera recording resolution.
Raises:
-
ValueError–If the resolution is not a valid
blueye.protocol.Resolutiontype
Source code in blueye/sdk/camera.py
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 | |
set_resolution
set_resolution(resolution: int)
Set the camera resolution.
Deprecated
Drones running Blunux 4.4 or newer ignore this field when camera parameters are set,
so calling this method has no effect on them. Use
set_stream_resolution and
set_recording_resolution
instead.
Parameters:
-
resolution(int) –Set the camera in vertical pixels. Valid values are 480, 720, 1080, 1440 or 2160.
Raises:
-
ValueError–If the resolution is not one of the valid values.
Source code in blueye/sdk/camera.py
1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 | |
set_saturation
set_saturation(saturation: int)
Set the camera saturation.
Only available on Ultra.
Parameters:
-
saturation(int) –Set the saturation (0..50), 8 is the default.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 | |
set_sharpness
set_sharpness(sharpness: int)
Set the camera sharpness.
Only available on Ultra.
Parameters:
-
sharpness(int) –Set the sharpness (-20..20), -20 is the default.
Raises:
-
RuntimeError–If the connected drone is running a Blunux version older than 5.0.0.
Source code in blueye/sdk/camera.py
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 | |
set_stream_resolution
set_stream_resolution(resolution: Resolution)
Set the camera stream resolution.
For drones running blunux version < 4.4.1 this is the same as the
set_resolution method.
Parameters:
-
resolution(Resolution) –Set the camera stream resolution.
Raises:
-
ValueError–If the resolution is not a valid
blueye.protocol.Resolutiontype
Source code in blueye/sdk/camera.py
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 | |
set_streaming_protocol
set_streaming_protocol(protocol: StreamingProtocol)
Set the streaming protocol (codec used for the RTSP stream).
Parameters:
-
protocol(StreamingProtocol) –Set the streaming protocol.
Raises:
-
ValueError–If the protocol is not a valid
blueye.protocol.StreamingProtocoltype.
Source code in blueye/sdk/camera.py
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 | |
set_whitebalance
set_whitebalance(white_balance: int)
Set the camera white balance.
Parameters:
-
white_balance(int) –Set the camera white balance. Valid values are in the range (2800..9300) or -1 for auto white balance.
Source code in blueye/sdk/camera.py
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 | |
take_picture
take_picture()
Take a still picture and store it locally on the drone.
These pictures can be downloaded with the Blueye App, or by any WebDAV compatible client.
Source code in blueye/sdk/camera.py
1802 1803 1804 1805 1806 1807 | |
Overlay
Overlay(parent_drone: Drone)
Control the overlay on videos and pictures.
Parameters:
-
parent_drone(Drone) –The parent drone instance.
Methods:
-
delete_logo–Delete the user uploaded logo from the drone.
-
download_logo–Download the original user uploaded logo (PNG or JPG).
-
enable_altitude–Set the state of the altitude overlay.
-
enable_cp_probe–Set the state of the CP probe overlay.
-
enable_date–Set the state of the date overlay.
-
enable_depth–Set the state of the depth overlay.
-
enable_distance–Set the state of the distance overlay.
-
enable_drone_location–Set the state of the drone location overlay.
-
enable_gamma_ray_measurement–Set the state of the gamma-ray measurement overlay.
-
enable_heading–Set the state of the heading overlay.
-
enable_temperature–Set the state of the temperature overlay.
-
enable_thickness–Set the state of the thickness overlay.
-
enable_tilt–Set the state of the tilt overlay.
-
get_date_format–Get the format string for the time displayed in the overlay.
-
get_depth_unit–Get the depth unit for the overlay.
-
get_font_size–Get the font size for the overlay.
-
get_logo–Get the logo overlay selection.
-
get_margin_height–Get the margin height for the overlay.
-
get_margin_width–Get the margin width for the overlay.
-
get_shading–Get the pixel intensity to subtract from text background.
-
get_subtitle–Get the subtitle for the overlay.
-
get_temperature_unit–Get the temperature unit for the overlay.
-
get_thickness_unit–Get the thickness unit for the overlay.
-
get_timezone_offset–Get the timezone offset for the overlay.
-
get_title–Get the title for the overlay.
-
is_altitude_enabled–Get the state of the altitude overlay.
-
is_cp_probe_enabled–Get the state of the CP probe overlay.
-
is_date_enabled–Get the state of the date overlay.
-
is_depth_enabled–Get the state of the depth overlay.
-
is_distance_enabled–Get the state of the distance overlay.
-
is_drone_location_enabled–Get the state of the drone location overlay.
-
is_gamma_ray_measurement_enabled–Get the state of the gamma-ray measurement overlay.
-
is_heading_enabled–Get the state of the heading overlay.
-
is_temperature_enabled–Get the state of the temperature overlay.
-
is_thickness_enabled–Get the state of the thickness overlay.
-
is_tilt_enabled–Get the state of the tilt overlay.
-
set_date_format–Set the format string for the time displayed in the overlay.
-
set_depth_unit–Set the depth unit for the overlay.
-
set_font_size–Set the font size for the overlay.
-
set_logo–Set the logo overlay selection.
-
set_margin_height–Set the margin height for the overlay.
-
set_margin_width–Set the margin width for the overlay.
-
set_shading–Set the pixel intensity to subtract from text background.
-
set_subtitle–Set the subtitle for the overlay.
-
set_temperature_unit–Set the temperature unit for the overlay.
-
set_thickness_unit–Set the thickness unit for the overlay.
-
set_timezone_offset–Set the timezone offset for the overlay.
-
set_title–Set the title for the overlay.
-
upload_logo–Upload user selectable logo for watermarking videos and pictures.
Source code in blueye/sdk/camera.py
132 133 134 135 136 137 138 139 | |
delete_logo
delete_logo(timeout: float = 1.0)
Delete the user uploaded logo from the drone.
Parameters:
-
timeout(float, default:1.0) –The timeout for the delete request.
Raises:
-
HTTPError–If an error occurs during deletion.
-
ConnectTimeout–If unable to create a connection within the specified timeout.
Source code in blueye/sdk/camera.py
816 817 818 819 820 821 822 823 824 825 826 827 828 | |
download_logo
download_logo(output_directory='.', timeout: float = 1.0)
Download the original user uploaded logo (PNG or JPG).
Select the download directory with the output_directory parameter.
Parameters:
-
output_directory(str, default:'.') –The directory to save the downloaded logo.
-
timeout(float, default:1.0) –The timeout for the download request.
Raises:
-
HTTPError–If no custom logo is uploaded.
-
ConnectTimeout–If unable to create a connection within the specified timeout.
Source code in blueye/sdk/camera.py
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 | |
enable_altitude
enable_altitude(enable_altitude: bool)
Set the state of the altitude overlay.
Parameters:
-
enable_altitude(bool) –True to enable the altitude overlay, False to disable it.
Source code in blueye/sdk/camera.py
393 394 395 396 397 398 399 400 401 402 | |
enable_cp_probe
enable_cp_probe(enable_cp_probe: bool)
Set the state of the CP probe overlay.
Parameters:
-
enable_cp_probe(bool) –True to enable the CP probe overlay, False to disable it.
Source code in blueye/sdk/camera.py
349 350 351 352 353 354 355 356 357 358 | |
enable_date
enable_date(enable_date: bool)
Set the state of the date overlay.
Parameters:
-
enable_date(bool) –True to enable the date overlay, False to disable it.
Source code in blueye/sdk/camera.py
243 244 245 246 247 248 249 250 251 252 | |
enable_depth
enable_depth(enable_depth: bool)
Set the state of the depth overlay.
Parameters:
-
enable_depth(bool) –True to enable the depth overlay, False to disable it.
Source code in blueye/sdk/camera.py
176 177 178 179 180 181 182 183 184 185 | |
enable_distance
enable_distance(enable_distance: bool)
Set the state of the distance overlay.
Parameters:
-
enable_distance(bool) –True to enable the distance overlay, False to disable it.
Source code in blueye/sdk/camera.py
371 372 373 374 375 376 377 378 379 380 | |
enable_drone_location
enable_drone_location(enable_drone_location: bool)
Set the state of the drone location overlay.
Parameters:
-
enable_drone_location(bool) –True to enable the drone location overlay, False to disable it.
Source code in blueye/sdk/camera.py
465 466 467 468 469 470 471 472 473 474 475 | |
enable_gamma_ray_measurement
enable_gamma_ray_measurement(
enable_gamma_ray_measurement: bool,
)
Set the state of the gamma-ray measurement overlay.
Parameters:
-
enable_gamma_ray_measurement(bool) –True to enable the gamma-ray measurement overlay, False to disable it.
Source code in blueye/sdk/camera.py
519 520 521 522 523 524 525 526 527 528 529 | |
enable_heading
enable_heading(enable_heading: bool)
Set the state of the heading overlay.
Parameters:
-
enable_heading(bool) –True to enable the heading overlay, False to disable it.
Source code in blueye/sdk/camera.py
198 199 200 201 202 203 204 205 206 207 | |
enable_temperature
enable_temperature(enable_temperature: bool)
Set the state of the temperature overlay.
Parameters:
-
enable_temperature(bool) –True to enable the temperature overlay, False to disable it.
Source code in blueye/sdk/camera.py
154 155 156 157 158 159 160 161 162 163 | |
enable_thickness
enable_thickness(enable_thickness: bool)
Set the state of the thickness overlay.
Parameters:
-
enable_thickness(bool) –True to enable the thickness overlay, False to disable it.
Source code in blueye/sdk/camera.py
415 416 417 418 419 420 421 422 423 424 | |
enable_tilt
enable_tilt(enable_tilt: bool)
Set the state of the tilt overlay.
Parameters:
-
enable_tilt(bool) –True to enable the tilt overlay, False to disable it.
Source code in blueye/sdk/camera.py
220 221 222 223 224 225 226 227 228 229 | |
get_date_format
get_date_format() -> str
Get the format string for the time displayed in the overlay.
Returns:
-
str–The current date format.
Source code in blueye/sdk/camera.py
728 729 730 731 732 733 734 735 | |
get_depth_unit
get_depth_unit() -> DepthUnit
Get the depth unit for the overlay.
Returns:
-
DepthUnit–The current depth unit.
Source code in blueye/sdk/camera.py
284 285 286 287 288 289 290 291 | |
get_font_size
get_font_size() -> FontSize
Get the font size for the overlay.
Returns:
-
FontSize–The current font size.
Source code in blueye/sdk/camera.py
619 620 621 622 623 624 625 626 | |
get_logo
get_logo() -> LogoType
Get the logo overlay selection.
Returns:
-
LogoType–The current logo type.
Source code in blueye/sdk/camera.py
256 257 258 259 260 261 262 263 | |
get_margin_height
get_margin_height() -> int
Get the margin height for the overlay.
Returns:
-
int–The current margin height.
Source code in blueye/sdk/camera.py
589 590 591 592 593 594 595 596 | |
get_margin_width
get_margin_width() -> int
Get the margin width for the overlay.
Returns:
-
int–The current margin width.
Source code in blueye/sdk/camera.py
559 560 561 562 563 564 565 566 | |
get_shading
get_shading() -> float
Get the pixel intensity to subtract from text background.
Returns:
-
float–The current shading intensity.
Source code in blueye/sdk/camera.py
481 482 483 484 485 486 487 488 | |
get_subtitle
get_subtitle() -> str
Get the subtitle for the overlay.
Returns:
-
str–The current subtitle.
Source code in blueye/sdk/camera.py
688 689 690 691 692 693 694 695 | |
get_temperature_unit
get_temperature_unit() -> TemperatureUnit
Get the temperature unit for the overlay.
Returns:
-
TemperatureUnit–The current temperature unit.
Source code in blueye/sdk/camera.py
312 313 314 315 316 317 318 319 | |
get_thickness_unit
get_thickness_unit() -> ThicknessUnit
Get the thickness unit for the overlay.
Returns:
-
ThicknessUnit–The current thickness unit.
Source code in blueye/sdk/camera.py
428 429 430 431 432 433 434 435 | |
get_timezone_offset
get_timezone_offset() -> int
Get the timezone offset for the overlay.
Returns:
-
int–The current timezone offset.
Source code in blueye/sdk/camera.py
535 536 537 538 539 540 541 542 | |
get_title
get_title() -> str
Get the title for the overlay.
Returns:
-
str–The current title.
Source code in blueye/sdk/camera.py
649 650 651 652 653 654 655 656 | |
is_altitude_enabled
is_altitude_enabled() -> bool
Get the state of the altitude overlay.
Returns:
-
bool–The current state of the altitude overlay.
Source code in blueye/sdk/camera.py
384 385 386 387 388 389 390 391 | |
is_cp_probe_enabled
is_cp_probe_enabled() -> bool
Get the state of the CP probe overlay.
Returns:
-
bool–The current state of the CP probe overlay.
Source code in blueye/sdk/camera.py
340 341 342 343 344 345 346 347 | |
is_date_enabled
is_date_enabled() -> bool
Get the state of the date overlay.
Returns:
-
bool–The current state of the date overlay.
Source code in blueye/sdk/camera.py
233 234 235 236 237 238 239 240 241 | |
is_depth_enabled
is_depth_enabled() -> bool
Get the state of the depth overlay.
Returns:
-
bool–The current state of the depth overlay.
Source code in blueye/sdk/camera.py
167 168 169 170 171 172 173 174 | |
is_distance_enabled
is_distance_enabled() -> bool
Get the state of the distance overlay.
Returns:
-
bool–The current state of the distance overlay.
Source code in blueye/sdk/camera.py
362 363 364 365 366 367 368 369 | |
is_drone_location_enabled
is_drone_location_enabled() -> bool
Get the state of the drone location overlay.
Returns:
-
bool–The current state of the drone location overlay.
Source code in blueye/sdk/camera.py
456 457 458 459 460 461 462 463 | |
is_gamma_ray_measurement_enabled
is_gamma_ray_measurement_enabled() -> bool
Get the state of the gamma-ray measurement overlay.
Returns:
-
bool–The current state of the gamma-ray measurement overlay.
Source code in blueye/sdk/camera.py
510 511 512 513 514 515 516 517 | |
is_heading_enabled
is_heading_enabled() -> bool
Get the state of the heading overlay.
Returns:
-
bool–The current state of the heading overlay.
Source code in blueye/sdk/camera.py
189 190 191 192 193 194 195 196 | |
is_temperature_enabled
is_temperature_enabled() -> bool
Get the state of the temperature overlay.
Returns:
-
bool–The current state of the temperature overlay.
Source code in blueye/sdk/camera.py
145 146 147 148 149 150 151 152 | |
is_thickness_enabled
is_thickness_enabled() -> bool
Get the state of the thickness overlay.
Returns:
-
bool–The current state of the thickness overlay.
Source code in blueye/sdk/camera.py
406 407 408 409 410 411 412 413 | |
is_tilt_enabled
is_tilt_enabled() -> bool
Get the state of the tilt overlay.
Returns:
-
bool–The current state of the tilt overlay.
Source code in blueye/sdk/camera.py
211 212 213 214 215 216 217 218 | |
set_date_format
set_date_format(input_format_str: str)
Set the format string for the time displayed in the overlay.
Must be a string containing only ASCII characters, with a max length of 63 characters.
The format codes are defined by the C89 standard, see https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes for an overview of the available codes.
Parameters:
-
input_format_str(str) –The date format string to set.
Warns:
-
RuntimeWarning–If the date format is too long or contains non-ASCII characters.
Source code in blueye/sdk/camera.py
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 | |
set_depth_unit
set_depth_unit(unit: DepthUnit)
Set the depth unit for the overlay.
Parameters:
-
unit(DepthUnit) –The depth unit to set.
Warns:
-
RuntimeWarning–If the unit is not an instance of blueye.protocol.DepthUnit.
Source code in blueye/sdk/camera.py
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 | |
set_font_size
set_font_size(size: FontSize)
Set the font size for the overlay.
Needs to be an instance of the blueye.protocol.FontSize enum.
Parameters:
-
size(FontSize) –The font size to set.
Warns:
-
RuntimeWarning–If the font size is not an instance of blueye.protocol.FontSize.
Source code in blueye/sdk/camera.py
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 | |
set_logo
set_logo(logo_type: LogoType)
Set the logo overlay selection.
Parameters:
-
logo_type(LogoType) –The logo type.
Warns:
-
RuntimeWarning–If the logo type is not an instance of blueye.protocol.LogoType.
Source code in blueye/sdk/camera.py
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | |
set_margin_height
set_margin_height(height: int)
Set the margin height for the overlay.
The amount of pixels to use as margin on the top and bottom side of the overlay.
Parameters:
-
height(int) –The margin height to set. Needs to be a positive integer.
Warns:
-
RuntimeWarning–If the margin height is not a positive integer.
Source code in blueye/sdk/camera.py
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 | |
set_margin_width
set_margin_width(width: int)
Set the margin width for the overlay.
The amount of pixels to use as margin on the right and left side of the overlay.
Parameters:
-
width(int) –The margin width to set. Needs to be a positive integer.
Warns:
-
RuntimeWarning–If the margin width is not a positive integer.
Source code in blueye/sdk/camera.py
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 | |
set_shading
set_shading(intensity: float)
Set the pixel intensity to subtract from text background.
Parameters:
-
intensity(float) –The shading intensity to set. Valid range is 0.0 to 1.0. 0 is transparent, 1 is black.
Warns:
-
RuntimeWarning–If the shading intensity is not a float between 0.0 and 1.0.
Source code in blueye/sdk/camera.py
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 | |
set_subtitle
set_subtitle(input_subtitle: str)
Set the subtitle for the overlay.
The subtitle needs to be a string of only ASCII characters with a maximum length of 63 characters.
Set to an empty string to disable the subtitle.
Parameters:
-
input_subtitle(str) –The subtitle to set. Set to an empty string to disable. Truncated to 63 characters if longer.
Warns:
-
RuntimeWarning–If the subtitle is too long or contains non-ASCII characters.
Source code in blueye/sdk/camera.py
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 | |
set_temperature_unit
set_temperature_unit(unit: TemperatureUnit)
Set the temperature unit for the overlay.
Parameters:
-
unit(TemperatureUnit) –The temperature unit to set.
Warns:
-
RuntimeWarning–If the unit is not an instance of blueye.protocol.TemperatureUnit.
Source code in blueye/sdk/camera.py
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | |
set_thickness_unit
set_thickness_unit(unit: ThicknessUnit)
Set the thickness unit for the overlay.
Parameters:
-
unit(ThicknessUnit) –The thickness unit to set.
Warns:
-
RuntimeWarning–If the unit is not an instance of blueye.protocol.ThicknessUnit.
Source code in blueye/sdk/camera.py
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 | |
set_timezone_offset
set_timezone_offset(offset: int)
Set the timezone offset for the overlay.
Set to the number of minutes (either positive or negative) the timestamp should be offset.
Parameters:
-
offset(int) –The timezone offset to set.
Source code in blueye/sdk/camera.py
544 545 546 547 548 549 550 551 552 553 554 555 | |
set_title
set_title(input_title: str)
Set the title for the overlay.
The title needs to be a string of only ASCII characters with a maximum length of 63 characters.
Set to an empty string to disable title.
Parameters:
-
input_title(str) –The title to set. Truncated to 63 characters if longer.
Warns:
-
RuntimeWarning–If the title is too long or contains non-ASCII characters.
Source code in blueye/sdk/camera.py
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 | |
upload_logo
upload_logo(path_to_logo: str, timeout: float = 1.0)
Upload user selectable logo for watermarking videos and pictures.
Set the logo-property to blueye.protocol.LogoType.LOG_TYPE_CUSTOM to enable this logo.
Allowed filetype: JPG or PNG. Max resolution: 2000 px. Max file size: 5 MB.
Parameters:
-
path_to_logo(str) –The path to the logo file.
-
timeout(float, default:1.0) –The timeout for the upload request.
Raises:
-
HTTPError–If the file is invalid (status code 400).
-
ConnectTimeout–If unable to create a connection within the specified timeout.
Source code in blueye/sdk/camera.py
772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 | |
Tilt
Tilt(parent_drone: Drone)
Handles the camera tilt functionality for the Blueye drone.
Parameters:
-
parent_drone(Drone) –The parent drone instance.
Methods:
-
enable_stabilization–Set the state of active camera stabilization.
-
get_angle–Return the current angle of the camera tilt.
-
is_stabilization_enabled–Get the state of active camera stabilization.
-
set_velocity–Set the speed and direction of the camera tilt.
Source code in blueye/sdk/camera.py
51 52 53 54 55 56 57 | |
enable_stabilization
enable_stabilization(enabled: bool)
Set the state of active camera stabilization.
Parameters:
-
enabled(bool) –True to turn stabilization on, False to turn it off.
Raises:
-
RuntimeError–If the connected drone does not have the tilt option.
Source code in blueye/sdk/camera.py
114 115 116 117 118 119 120 121 122 123 124 | |
get_angle
get_angle() -> Optional[float]
Return the current angle of the camera tilt.
Returns:
-
Optional[float]–The current angle of the camera tilt.
Raises:
-
RuntimeError–If the connected drone does not have the tilt option.
Source code in blueye/sdk/camera.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | |
is_stabilization_enabled
is_stabilization_enabled() -> Optional[bool]
Get the state of active camera stabilization.
Returns:
-
Optional[bool]–The current state of active camera stabilization.
Raises:
-
RuntimeError–If the connected drone does not have the tilt option.
Source code in blueye/sdk/camera.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | |
set_velocity
set_velocity(velocity: float)
Set the speed and direction of the camera tilt.
Parameters:
-
velocity(float) –Speed and direction of the tilt. 1 is max speed up, -1 is max speed down.
Raises:
-
RuntimeError–If the connected drone does not have the tilt option.
Source code in blueye/sdk/camera.py
68 69 70 71 72 73 74 75 76 77 78 | |