summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2024-10-21 16:51:35 +0200
committerjaseg <git@jaseg.de>2024-10-21 16:51:35 +0200
commit321f8299580d525533584c19fd618de50e9755cf (patch)
treea99f82006b841c7e81f67f2287f3bec66c900310
parent33d475a1eb6e52f30f2b551a590b234fd982a718 (diff)
downloadinfiray_irg_py-321f8299580d525533584c19fd618de50e9755cf.tar.gz
infiray_irg_py-321f8299580d525533584c19fd618de50e9755cf.tar.bz2
infiray_irg_py-321f8299580d525533584c19fd618de50e9755cf.zip
Update README and pyproject.toml for v1.2v1.2
-rw-r--r--README.md12
-rw-r--r--pyproject.toml2
2 files changed, 8 insertions, 6 deletions
diff --git a/README.md b/README.md
index 8b73e56..208326f 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,9 @@
# Infiray IRG file format parser
-This python module contains a simple parser for the "IRG" file format that the Infiray C200 series thermal cameras use
-to dump their raw data. The files contain three things: A thermal image with 8 bit resolution with contrast scaled to
-fit the 0...255 range, a thermal image with 16 bit resolution containing absolute temperature values with 1/16 K
-resolution, and a JPEG with the image from the low-res visual camera.
+This python module contains a simple parser for the "IRG" file format that the Infiray C200 series thermal cameras, P200
+series and others use to dump their raw data. The files contain three things: A thermal image with 8 bit resolution with
+contrast scaled to fit the 0...255 range, a thermal image with 16 bit resolution containing absolute temperature values
+with 1/16 K resolution, and for some models a JPEG with the image from the low-res visual camera.
## Requirements
@@ -50,7 +50,9 @@ print('Coldest pixel:', fine.min(), 'C', 'Hottest pixel:', fine.max(), 'C')
## Bugs
-If you find a bug, or find a file that this library can't load, please send me an email at <code@jaseg.de>.
+If you find a bug, or find a file that this library can't load, please send me an email at <code@jaseg.de>. If your
+thermal camera isn't supported, please send me an email with one or more example pictures. Please make sure there's
+something of high contrast visible on these pictures, such as a hot cup of tea.
## License
diff --git a/pyproject.toml b/pyproject.toml
index fa29e66..77784f4 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "pdm.backend"
[project]
name = "infiray_irg"
-version = "1.0.0"
+version = "1.2.0"
authors = [
{ name="jaseg", email="code@jaseg.de" },
]