DJI Thermal SDK Docker image
Dockerized DJI Thermal SDK, which includes example tools for processing and measuring some DJI thermal images.
Installation
docker build -t djithermal . Commands
docker run -i \
djithermal \
dji_irp --helpProcess an image to psuedocolor
docker run -i \
-v "$(pwd)":"$(pwd)" -w "$(pwd)" \
djithermal \
dji_irp -a process \
--palette iron_red \
--colorbar on,40,25 \
--source /app/djithermal/dataset/M30T/DJI_0001_R.JPG \
--output process.rgb
convert -depth 8 -size 640x512 RGB:process.rgb process.jpgExtract a raw float32 thermal
docker run -i \
-v "$(pwd)":"$(pwd)" -w "$(pwd)" \
djithermal \
dji_irp -a measure \
--measurefmt float32 \
--distance 25 \
--humidity 77 \
--emissivity 0.98 \
--reflection 23 \
--source DJI_0001_R.JPG \
--output measure.rawProcess all images in the current directory, copying exif metadata from the original file
docker run -i \
-v "$(pwd)":"$(pwd)" -w "$(pwd)" \
djithermal \
/bin/sh -c 'mkdir -p process && mkdir -p raw
for i in *.JPG; do
dji_irp -a process \
--palette iron_red \
--colorbar on,44,0 \
--source "$i" \
--output "$(pwd)/process/$(basename $i .JPG).rgb"
convert -depth 8 -size 640x512 \
RGB:"$(pwd)/process/$(basename $i .JPG).rgb" \
"$(pwd)/process/$(basename $i)"
rm "$(pwd)/process/$(basename $i .JPG).rgb"
exiftool -overwrite_original -TagsFromFile "$i" -all:all "$(pwd)/process/$(basename $i)"
dji_irp -a measure \
--measurefmt float32 \
--distance 25 \
--humidity 77 \
--emissivity 0.98 \
--reflection 23 \
--source "$i" \
--output "$(pwd)/raw/$(basename $i .JPG).raw"
done'