You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
3.6 KiB

  1. \section{Method name}
  2. \label{sec:design}
  3. \subsection{System Architecture}
  4. We designed a thermal-box to collect the data. It has four Grideye sensors on the
  5. corners of a 10 cm square and a Lepton 3 at the central. Figure~\ref{fig:method} shows
  6. the system of our method. It consists four parts. The first part is to fuse multiple
  7. Grideye image, since the resolution of singel Grideye sensor only has 64 pixels. The
  8. second part, we train the SRCNN model with fused Grideye image
  9. as low-resolution and downscaled Lepton 3 image as high-resolution image.
  10. The third part, we use the
  11. Super-resolution image to train a neural network model for recognizing current pose
  12. is lay on back or lay on side. The last part, because of noise and the residual
  13. heat on bed after turn over, it is difficult to figure out the current pose. We
  14. remove the noise by median filter, and determine the current pose according to
  15. the trend of the possibility from recognition network.
  16. \begin{figure}[htb]
  17. \begin{center}
  18. \includegraphics[width=1\linewidth]{figures/method.pdf}
  19. \caption{Illustration of Proposed Method.}
  20. \label{fig:method}
  21. \end{center}
  22. \end{figure}
  23. \subsection{Grideye Data Fusion}
  24. On the thermal-box, there are four Grideye sensors. At the beginning, we let
  25. the thermal-box faces to an empty bed and records the background temperature.
  26. All the following frames will subtract this background temperature. After that,
  27. we resize four $8 \times 8$ Grideye images to $64 \times 64$ by bilinear
  28. interpolation and than merge them dependence on the distance between thermal-box and
  29. bed, width of sensor square and the FOV of Grideye sensor.
  30. \begin{enumerate}
  31. \item $D_b$ is the distance between bed and thermal-box.
  32. \item $D_s$ is the width of sensor square also the distance between adjacent sensors.
  33. \item $F$ is the FOV of Grideye sensor which is about 60 degree.
  34. \item $Overlap = 64 - 64 \times (\frac{D_s}{2 \times D_b \times tan(\frac{F}{2})})$
  35. \end{enumerate}
  36. \subsection{Pose determination}
  37. We train a SRCNN model by the fused Grideye data and downscaled Lepton 3 image,
  38. and use it to upscale all following frames to SR frames. We labeled some SR frames
  39. to two categories. One is lay on back and the other is lay on side. Since the input
  40. data is very small, we use a neural network consist one 2D convolution layer, one
  41. 2D max pooling, one flatten and one densely-connected layer. The possibility of
  42. output has a very large various just after turning over because the model cannot
  43. distinguish the residual heat on bed and the person as Figure~\ref{fig:residual_heat} shown. This
  44. situation will slowly disappear after one or two minutes.
  45. To determination the pose, first we use a median filter with a window size of five
  46. to filter out the noise. Than, find the curve hull line of the upper bound and
  47. lower bound of the data. Finally calculate the middle line of upper bound and lower bound.
  48. Figure~\ref{fig:trend} shows the data and these lines.
  49. We divide every data into 10 second time windows. If the middle line of the time window
  50. is at the top one fifth, it is a lay on back. If it is at the bottom one fifth,
  51. it is a lay on side. If the trend of line is going up, it is lay on back. Otherwise, it
  52. is lay on side. To guarantee the confidence of result, we will only trust the pose if
  53. there are three continuously same output.
  54. \begin{figure}[ht]
  55. \centering
  56. \minipage{0.3\columnwidth}
  57. \includegraphics[width=\linewidth]{figures/Lepton_residual_heat.png}
  58. \caption{Residual heat on bed.}
  59. \label{fig:residual_heat}
  60. \endminipage
  61. \minipage{0.65\columnwidth}
  62. \includegraphics[width=\linewidth]{figures/MinMax.pdf}
  63. \caption{Trend of pose.}
  64. \label{fig:trend}
  65. \endminipage
  66. \end{figure}