recover back emissivity to 0.95f
This commit is contained in:
parent
a9542a3d01
commit
5e99684106
|
@ -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]++;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue