This usually happens if the file transfer from the SD card of the Fluke camera was interrupted. Try re-copying the original .is2 file from the camera memory card to your PC. Loss of temperature details
If you prefer a command-line approach or need to batch-process files without official software, you can use specialized tools like: fluke-ti-tool
: For professional use, it is better to use the Fluke SmartView software to create a formal "report" that includes both the thermal image and the corresponding data points. Comparison of Tools Format Support Fluke SmartView Official analysis and JPG export .IS2, .IS3, .BMP IRT Cronista Professional thermography reporting .IS2, .IRI, .IMG reaConverter Bulk offline conversion (pro version) Wide range of RAW formats Standardize your images with the free JPG converter - Canva
An is a proprietary radiometric image format created by Flir thermal imaging cameras. Unlike a standard JPG photograph, an IS2 file does not just store visual pixels. It contains a matrix of temperature data points for every single pixel in the image. is2 file to jpg converter
Summary is2 File to JPG Converter is a focused utility that converts proprietary or less-common image/document file types into standard JPEGs. It’s straightforward and fairly reliable for basic batch conversions, but it has a few usability and quality limitations that keep it from being a one-stop solution for power users.
The safest and most professional way to convert IS2 files to JPG is by using , the official companion software provided for free by Testo.
Tap the or Export icon and choose to save it to your phone's camera roll as a standard JPG. Crucial Trade-offs: What Happens During Conversion? This usually happens if the file transfer from
Websites like , anyconv , or specialized engineering file converters frequently update their libraries to support proprietary formats like IS2. Step-by-Step Online Process:
When you capture an image using a Fluke thermal camera in .IS2 format, the camera consolidates multiple types of information into a single file:
: If you are on the go, Fluke SmartView Mobile (available for iOS and Android) can open .is2 files wirelessly from the camera, allowing you to view and share them as common image formats. Comparison of Tools Format Support Fluke SmartView Official
The safest and most reliable way to convert IS2 files without losing visual clarity is by using Fluke's official desktop software, (or its newer counterpart, Fluke Connect Desktop ).
The most reliable way to convert IS2 files without losing metadata or image quality is through official software provided by the hardware manufacturer: Fluke Connect Desktop
Click the button and wait a few seconds for processing. Click Download to save your newly created JPG image.
This LMC simulator is based on the Little Man Computer (LMC) model of a computer, created by Dr. Stuart Madnick in 1965. LMC is generally used for educational purposes as it models a simple Von Neumann architecture computer which has all of the basic features of a modern computer. It is programmed using assembly code. You can find out more about this model on this wikipedia page.
You can read more about this LMC simulator on 101Computing.net.
Note that in the following table “xx” refers to a memory address (aka mailbox) in the RAM. The online LMC simulator has 100 different mailboxes in the RAM ranging from 00 to 99.
| Mnemonic | Name | Description | Op Code |
| INP | INPUT | Retrieve user input and stores it in the accumulator. | 901 |
| OUT | OUTPUT | Output the value stored in the accumulator. | 902 |
| LDA | LOAD | Load the Accumulator with the contents of the memory address given. | 5xx |
| STA | STORE | Store the value in the Accumulator in the memory address given. | 3xx |
| ADD | ADD | Add the contents of the memory address to the Accumulator | 1xx |
| SUB | SUBTRACT | Subtract the contents of the memory address from the Accumulator | 2xx |
| BRP | BRANCH IF POSITIVE | Branch/Jump to the address given if the Accumulator is zero or positive. | 8xx |
| BRZ | BRANCH IF ZERO | Branch/Jump to the address given if the Accumulator is zero. | 7xx |
| BRA | BRANCH ALWAYS | Branch/Jump to the address given. | 6xx |
| HLT | HALT | Stop the code | 000 |
| DAT | DATA LOCATION | Used to associate a label to a free memory address. An optional value can also be used to be stored at the memory address. |