-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate remaining PIL features away (#628)
- Loading branch information
Showing
5 changed files
with
15 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "viam-sdk" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
description = "Viam Robotics Python SDK" | ||
authors = [ "Naveed <[email protected]>" ] | ||
license = "Apache-2.0" | ||
|
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
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,10 @@ | ||
# Viam uses a special header prepended to raw RGBA data. The header is composed of a | ||
# 4-byte magic number followed by a 4-byte line of the width as a uint32 number | ||
# and another for the height. Credit to Ben Zotto for inventing this formulation | ||
# https://bzotto.medium.com/introducing-the-rgba-bitmap-file-format-4a8a94329e2c | ||
|
||
RGBA_MAGIC_NUMBER = bytes("RGBA", "utf-8") | ||
|
||
RGBA_FORMAT_LABEL = "VIAM_RGBA" | ||
|
||
RGBA_HEADER_LENGTH = 12 |
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