- Download the latest version of FLIRtoTIFF.
- Unzip the downloaded package.
- Move both
.exefiles into the folder with your FLIR.jpgimages. - Double-click
uniFLIR.exeto start the conversion process (note: startup may be slow). - Enter the minimum and maximum temperature values you want to use for rescaling. (press
Enterafter each value) - Wait for the conversion to finish. A countdown of the remaining images will be displayed.
- Find the converted images in the newly created
out/subfolder.
This tool incorporates and adapts valuable work from several sources:
- Raw value to temperature conversion inspired by an R package by gtatters.
- Original Python code contributions from:
# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows.
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
# With pip.
pip install uvuv venv # Create a virtual environment at .venv.# On macOS and Linux.
source .venv/bin/activate
# On Windows.
.venv\Scripts\activateuv pip install flask # Install Flask.
uv pip install -r requirements.txt # Install from a requirements.txt file.
uv pip install -e . # Install the current project in editable mode.
uv pip install "package @ ." # Install the current project from disk.
uv pip install "flask[dotenv]" # Install Flask with "dotenv" extra.uv pip freeze | uv pip compile - -o requirements.txt # Lock the current environment.