recover back emissivity to 0.95f

This commit is contained in:
Yunhorn 2023-08-24 13:31:43 +08:00
parent a9542a3d01
commit 5e99684106
2 changed files with 2 additions and 2 deletions

View File

@ -303,7 +303,7 @@ void blackOutFilter(void)
//simple edge finding --begin
//if (((fabs(temp1 - temph1)> 0.3)) && (fabs(temp1 - tempv1)> 0.3))
if (((temp1 - temph1)> 0.2) && ((temp1 - tempv1)> 0.2))
if (((temp1 - temph1)> 0.3) && ((temp1 - tempv1)> 0.3))
//if (((temp1 > temph1)) && ((temp1 > tempv1)))
{ // vertical find and horizontal find
edgeMask[x+y*32]++;

View File

@ -2,7 +2,7 @@
#include "mlx90640_user.h"
#include "sys_app.h"
uint16_t frame[834];
float emissivity=0.15f; //0.95f
float emissivity=0.95f; //0.95f
uint8_t mlx90640_init(uint8_t refresh_rate,paramsMLX90640 *mlx90640)
{
int status;