Tomasz Lewicki
Tomasz Lewicki
As far as the second part of your question goes: Te IR camera has an inherent temperature drift that will affect the readings. That's why I plan to implement calibration...
Hi! Let me give a little bit of background on that. I'm looking for something that would fulfill the following 4 criteria: * no issues in major browsers * low...
You know @deantheiceman, now that I think about it more, I was streaming a full `768x1024px` frame to the browser. Maybe I should give it a try with something smaller...
Hi @deantheiceman ! Feel free the newest version. It has new and improved interface :slightly_smiling_face: Now the color of the bounding box changes to red over a temperature threshold (37.5C...
Hi @VegetarianLion258 ! Try running [this example](https://github.com/tomek-l/ai-thermometer/blob/master/ir/pt2_example.py) from this repo. You could identify the minimal and maximal points by adding: ```python print(cv2.minMaxLoc(temp_map)) ``` right below [this line](https://github.com/tomek-l/ai-thermometer/blob/master/ir/pt2_example.py#L107) Let me know...
Hi @nickjrz , Commit 9d754093d3fcf76fe9ce421dad255f20c7e582ec introduced a bug which led to incorrect readings. I just pushed 097c9c904fc412f0e25225afdf44eb3ec60b2f82 which fixed that. Let me know if the readings are better now :slightly_smiling_face:
Hi, Is it possible that you're using [Lepton 3.0](https://www.digikey.com/product-detail/en/flir-lepton/500-0726-01/500-0726-01-ND/6163867) (S/N: 500-0726-01), instead of [Lepton 3.5](https://www.digikey.com/product-detail/en/flir-lepton/500-0771-01/500-0771-01-ND/7606616) (S/N: 500-0771-01) module?
In order to get the temperature values out-of-the-box you'd have to have one of the **radiometric** lepton modules (e.g. Lepton 3.5). They come pre-calibrated and stream temperature values in Kelvin.
Without the Lepton camera, the program will just indefinitely wait for IR frames and display no output. You can run just the RGB object detection with the script here: https://www.github.com/tomek-l/ai-thermometer/tree/master/vis%2Fssd%2Fexample_detect_face_caffe_resnet.py...
The freshly merged PR #31 adds: - An option for adding an external blackbody reference - Reports the average + maximal + 90th percentile temperature of the face, not just...