Browse Source

git-svn-id: http://newslabx.csie.ntu.edu.tw/svn/Ginger@2 5747cdd2-2146-426f-b2b0-0570f90b98ed

master
Hobe 7 years ago
parent
commit
b529b0cfe0
15 changed files with 438 additions and 362 deletions
  1. +1
    -1
      trunk/00Abstract.tex
  2. +18
    -3
      trunk/01Introduction.tex
  3. +11
    -6
      trunk/02Background.tex
  4. +31
    -17
      trunk/03Design.tex
  5. +12
    -9
      trunk/04Evaluation.tex
  6. +58
    -30
      trunk/Main.aux
  7. +15
    -3
      trunk/Main.bcf
  8. BIN
      trunk/Main.dvi
  9. +285
    -271
      trunk/Main.log
  10. BIN
      trunk/Main.pdf
  11. BIN
      trunk/Main.synctex.gz
  12. +7
    -22
      trunk/Main.tex
  13. BIN
      trunk/figures/ThermalAtHome.pdf
  14. BIN
      trunk/figures/compareToJpeg.pdf
  15. BIN
      trunk/figures/separate.png

+ 1
- 1
trunk/00Abstract.tex View File

@ -1,5 +1,5 @@
\begin{abstract}
In a IoT environment, there are many devices will periodically transmit data. However, most of the data are useless, but sensor itself may not have a good standard to decide transmit or not. Some static rule maybe useful on specific scenario, and become useless when we change the usage of the sensor. In this paper, we want to present a method to reduce the file size of thermal sensor which can sense the temperature of a surface and output a two dimension gray scale image. In our evaluation result, we can reduce the file size to $50\%$ less than JPEG when there is $0.5\%$ of distortion, and up to $93\%$ less when there is $2\%$ of distortion.
In a IoT environment, many devices will periodically transmit data. However, most of the data are redundant, but sensor itself may not have a good standard to decide transmit or not. Some static rule maybe useful on specific scenario, and become ineffective when we change the usage of the sensor. Hence, we design an algorithm to solve the problem of data redundant. In the algorithm, we iteratively separate an image into some smaller regions. Each round, choose a region with highest variability, and separate it into four regions. Finally, each region has different size and uses its average value to represent itself. If a area is more various, the density of regions will be higher. In this paper, we present a method to reduce the file size of thermal sensor which can sense the temperature of a surface and outputs a two dimension gray scale image. In our evaluation result, we can reduce the file size to $50\%$ less than JPEG when there is $0.5\%$ of distortion, and up to $93\%$ less when there is $2\%$ of distortion.
\end{abstract}

+ 18
- 3
trunk/01Introduction.tex View File

@ -1,14 +1,29 @@
\section{Introduction}
\label{sec:introduction}
Walking exercises the nervous, cardiovascular, pulmonary, musculoskeletal and hematologic systems because it requires more oxygen to contract the muscles. Hence, {\it gait velocity}, or called {\it walking speed}~\cite{Middleton2015}, has become a valid and important metric for senior populations~\cite{Middleton2015,studenski2011,Studenski03}.
In a IoT environment, there are many devices will periodically transmit data. Some sensor is use for avoid accidents, so they will have very high sensing frequency. However, most of the data are useless. Like a temperature sensor on a gas stove, the temperature value is the same as the value from air conditioner and does not change very frequently, but it will have dramatically difference when we are cooking. We can simply make a threshold that when temperature is higher or lower than some degrees, the data will be transmitted, and drop the data that we don't interest. This is a very easy solution if we only have a few devices, but when we have hundreds or thousands devices, it is impossible to manually configure all devices, and the setting may need to change in the winter and summer, or different location. Hence, a framework to select useful data is important.
In 2011, Studenski et al~\cite{studenski2011} published a study that tracked gait velocity of over 34,000 seniors from 6 to 21 years in US. The study found that predicted survival rate based on age, sex, and gait velocity was as accurate as predicted based on age, sex, chronic conditions, smoking history, blood pressure, body mass index, and hospitalization. Consequently, it has motivated the industrial and academia communities to develop the methodology to track and assess the risk based on gait velocity. The following years have led to many papers that point to the importance of gait velocity as a predictor of degradation and exacerbation events associated with various chronic diseases including heart failure, COPD, kidney failure, stroke, etc~\cite{Studenski03, pulignano2016, Konthoraxjnl2015, kutner2015}.
On Raspberry Pi 3, while it is idling and turning off WiFi, it will consume 240mA and while uploading data at 24Mbit/s, it will consume 400mA. If we sent $640 \times 480$ pixels heat map images in png format (average 45KB) in 10Hz, it will consume about 264mA.
In the US, there are 13 million seniors who live alone at home~\cite{profile2015}. Gait velocity and stride length are particularly important in this case since they provide an assessment of fall risk, the ability to perform daily activities such as bathing and eating, and hence the potential for being independent. Assessment of gait velocity is recommended to instruct the subjects to walk back and forth in a 5, 8 or 10 meter walkway. Similar results were found in a study comparing a 3 meter walk test to the GAITRite electronic walkway in individuals with chronic stroke~\cite{Peters2013}.
The above approaches are conducted either at the clinical institutes or designated locations. They are recommended by the physicians but are required to be conducted at limited time and location. Consequently, it is difficult to observe the change in long term. It is desirable for the elderly, their family members, and physicians to monitor gait velocity for the elderly all the time at any location. However, the assessment should take into account several factors, including accuracy, privacy, portability, robustness, and applicability.
Shih and his colleagues~\cite{Shih17b} proposed a sensing system to be installed at home or nursing institute without revealing privacy and not using wearable devices. Given the proposed method, one may deploy several thermal sensors in his/her apartments as shown in Figure~\ref{fig:gaitVelocitySmartHome}. In this example, numbers of thermal sensors are deployed to increase the coverage of the sensing signals. In large spaces such as living room, there will be more than one sensor in one space; in small spaces such as corridor, there can be only one sensor. One fundamental question to ask is how many sensors should be deployed and how these sensors work together seamlessly to provide accurate gait velocity measurement.
\begin{figure}[ht]
\centering
\includegraphics[trim={1cm 3cm 2cm 2cm},clip,width=1\columnwidth]{figures/ThermalAtHome.pdf}
\caption{Gait Velocity Measurement at Smart Homes}
\label{fig:gaitVelocitySmartHome}
\end{figure}
In a IoT environment, many devices will periodically transmit data. Some sensor is use for avoid accidents, so they will have very high sensing frequency. However, most of the data are redundant. Like a temperature sensor on a gas stove, the temperature value is the same as the value from air conditioner and does not change very frequently, but it will have dramatically difference when we are cooking. We can simply make a threshold that when temperature is higher or lower than some degrees, the data will be transmitted, and drop the data that we don't interest. This is a very easy solution if we only have a few devices, but when we have hundreds or thousands devices, it is impossible to manually configure all devices, and the setting may need to change in the winter and summer, or different location.
In this paper, we study the data from Panasonic Grid-EYE, a $8 \times 8$ pixels infrared array sensor, and FLIR ONE PRO, a $480 \times 640$ pixels thermal camera. Both are setting on ceiling and taking a video of a person walking under the camera.
{\bf Contribution} The contribution of this work is to present a framework for user to choose either the bit-rate or the error rate of the video. By the method we proposed, the size of file can reduce more than $50\%$ compare to JPEG image when both have $0.5\% (0.18^\circ C)$ of root-mean-square error.
In Figure~\ref{fig:gaitVelocitySmartHome}, there are fifteen thermal sensor in a house. If they are Panasonic Grid-EYE, it will have 2 bytes per pixel, 64 pixels per frame, 10 frames per second, and total need 1.7GB storage space per day. If they are FLIR ONE PRO, it can only generate 5 frames per second but needs about 45KB per frame, and it will need 291.6GB everyday.
{\bf Contribution} The target of our work is to compress the thermal image retrieved from FLIR ONE PRO to targeted data size and keep the quality of data. Nearby pixels in a thermal image mostly have similar value, so we can easily separate an image into several regions and use its average value to represent it wont cause too much error. By the method we proposed, the size of file can reduce more than $50\%$ compare to JPEG image when both have $0.5\% (0.18^\circ C)$ of root-mean-square error.
The remaining of this paper is organized as follow. Section~\ref{sec:bk_related} presents related works and background for developing the methods. Section~\ref{sec:design} presents the system architecture, challenges, and the developed mechanisms. Section~\ref{sec:eval} presents the evaluation results of proposed mechanism and Section~\ref{sec:conclusion} summaries our works.

+ 11
- 6
trunk/02Background.tex View File

@ -2,9 +2,9 @@
\label{sec:bk_related}
\subsection{Panasonic Grid-EYE Thermal Sensor}
First, we study the sensor Panasonic Grid-EYE which is a thermal camera that can output $8 \times 8$ pixels image with $2.5\circ C$ accuracy and $0.25\circ C$ resolution at $10$ frames per second. It is a low resolution camera and infrared array sensor, so we install it in our house at ease without some privacy issue that may cause by a surveillance camera.
First, we study the sensor Panasonic Grid-EYE which is a thermal camera that can output $8 \times 8$ pixels image with $2.5^\circ C$ accuracy and $0.25^\circ C$ resolution at $10$ frames per second. In normal mode, the current consumption is 4.5mA. It is a low resolution camera and infrared array sensor, so we install it in our house at ease without some privacy issue that may cause by a surveillance camera.
When someone walks under a Grid-EYE sensor, we will see some pixels with higher temperature than others. Figure~\ref{fig:GridEye} shows an example of image from Grid-EYE sensor.
When someone walks under a Grid-EYE sensor, we will see some pixels with higher temperature than others. Figure~\ref{fig:GridEye} shows an example of image from Grid-EYE sensor. The sensor value will look like a cone shape. The pixel with our head will have the highest temperature, body is lower, and leg is the lowest except background because when the distance from camera to our body is longer, the area cover by the camera will be wider and the ratio of background temperature in the pixel will increase, also our head do not cover by cloth, so the surface temperature will higher than other place. while we are walking in a area, the temperature of air in the area will become warmer, and the shape of human will be harder to recognize.
\begin{figure}[htbp]
\centering
@ -15,6 +15,14 @@ When someone walks under a Grid-EYE sensor, we will see some pixels with higher
The data we used is from a solitary elder's home. We deployed four Grid-EYE sensor at the corner of her living room, and recorded the thermal video for three weeks at $10$ frames per second data rate.
\subsection{FLIR ONE PRO}
FLIR ONE PRO can output a $480 \times 640$ pixels image with $3^\circ C$ accuracy and $0.01^\circ C$ resolution, and capture video at about 5 FPS. In picture taking mode, it can retrieve the precise data from the header of picture file. However, in the video taking mode, it only store a gray scale video and show the range of temperature on the monitor. Hence, we use $^\circ C$ in picture mode, and gray scale value as the unit to analyze error rate. Since FLIR ONE PRO can offer a image with about $5000$ times number of pixels compare to Grid-EYE. It cannot simply use a Gaussian function to fit it. Hence, we developed a method to compress FLIR images. It can also treat as a normal image and be stored as jpeg, png, etc.
\subsection{Raspberry Pi 3}
We use Raspberry Pi 3 as our testing environment. It has a 1.2 GHz 64-bit quad-core ARM Cortex-A53 CPU, 1 GB memory, and 802.11n wireless network. We run a Debian-based Linux operating system on it. While it is idling and turning off WiFi, it will consume 240mA and while uploading data at 24Mbit/s, it will consume 400mA.
\subsection{Simple Data Compressing}
If we save a frame in a readable format, it will take about 380 bytes storage. However, the temperature range of our scenario mostly from $5^\circ C$ to $40^\circ C$ and the resolution is $0.25^\circ C$, so we can easily represent each temperature by one byte. Hence, we only need $64$ bytes to store a frame. We have try several ways to compress the frame.
@ -26,8 +34,5 @@ Huffman coding is a lossless data compressing. In average, it can reduce the fra
We can only transmit the pixels with higher temperature since thermal sensors are mostly used for detect heat source. Z-score is define as $z = \frac{\chi - \mu}{\sigma}$, where $\chi$ is the value of the temperature, $\mu$ is the average of the temperature and $\sigma$ is the standard deviation of the temperature. In our earlier work~\cite{Shih17b}, we use Z-score instead of a static threshold to detect human because the background temperature may have a $10^\circ C$ difference between day and night, and when people walk through the sensing area the Grid-EYE, the temperature reading will only increase $2^\circ C$ to $3^\circ C$. Hence, it is impossible to use a static threshold to detect human. In~\cite{Shih17b}, we only use the pixels with the Z-score higher than $2$, so we can reduce the frame size from $64$ bytes to $12.6$ bytes with $2.9$ bytes standard deviation by Z-score threshold $2$ and compress by Huffman coding.
\subsubsection{Gaussian Function Fitting}
In Figure~\ref{fig:GridEye}, we can see that the sensor value will be a cone shape. The pixel with our head will have the highest temperature, body is lower, and leg is the lowest except background because when the distance from camera to our body is longer, the area cover by the camera will be wider and the ratio of background temperature in the pixel will increase. A Gaussian function $y = Ae^{-(x-B)^2/2C^2}$ has three parameter $A, B and C$. The parameter $A$ is the height of the cone, $B$ is the position of the cone's peak and $C$ controls the width of the cone. We let the pixel with highest temperature be the peak of the cone, so we only need to adjust $A and C$ to fit the image. Guo~\cite{guo2011simple} provide a fast way to get the fitting Gaussian function. In our testing, it will be about $0.5^\circ C$ root-mean-square error, and only needs $5$ bytes to store the position of peak and two parameters.
\subsection{FLIR ONE PRO}
Since the shape of human in a thermal image looks like a cone, we may use a gaussian function to fit the image. A Gaussian function $y = Ae^{-(x-B)^2/2C^2}$ has three parameter $A, B and C$. The parameter $A$ is the height of the cone, $B$ is the position of the cone's peak and $C$ controls the width of the cone. We let the pixel with highest temperature be the peak of the cone, so we only need to adjust $A and C$ to fit the image. Guo~\cite{guo2011simple} provide a fast way to get the fitting Gaussian function. In our testing, it will be about $0.5^\circ C$ root-mean-square error, and only needs $5$ bytes to store the position of peak and two parameters.
FLIR ONE PRO can output a $480 \times 640$ pixels image with $3^\circ C$ accuracy and $0.01^\circ C$ resolution, and capture video at about 5 FPS. In picture taking mode, it can retrieve the precise data from the header of picture file. However, in the video taking mode, it only store a gray scale video and show the range of temperature on the monitor. Hence, we use $^\circ C$ in picture mode, and gray scale value as the unit to analyze error rate. Since FLIR ONE PRO can offer a image with about $5000$ times number of pixels compare to Grid-EYE. It cannot simply use a Gaussian function to fit it. Hence, we developed a method to compress FLIR images. It can also treat as a normal image and be stored as jpeg, png, etc.

+ 31
- 17
trunk/03Design.tex View File

@ -1,10 +1,9 @@
\section{Data Size Decision Framework}
\label{sec:design}
This section presents the proposed method to outcome a data array than have less size compare to jpeg image when we can tolerate some error of data.
This section presents the proposed method to outcome a data array than have less size compare to jpeg image when we can tolerate some error of data. We use the image captured by FLIR ONE PRO. In a thermal image, the temperature variation between nearby pixels are very small except the edge of objects. Hence, we can separate an image into several regions, and the pixels in a same region has similar value so we can use the average value to represent it and do not cause too much error. However, precisely separate an image into some polygon region takes a lot of computation time and hard to describe the edge of each region. Also, decide the number of region also a problem. Hence, to effectively describe regions we design that every region most be a rectangle, and every region can only separate into 4 regions by cut in half at the middle of horizontal and vertical. The image will start from only contains one region, and 3 regions will be added per round since we cut a region into 4 pieces.
\subsection{Heuristic Data Resolution Determination}
\subsection{Region Represent Grammar}
For each frame, we can use a context-free language to represent it.
\begin{center}
@ -16,24 +15,38 @@ For each frame, we can use a context-free language to represent it.
\end{center}
$R$ means a region of image, and it can either use the average $\alpha$ of the pixels in the region to represent whole region or separate into four regions and left a remainder $\beta$. Dependence on the image size we desired, we can choose the amount of separating regions.
The context-free grammar start from a region contain whole image. For each $R$ we calculate a heuristic value $h$ which is based on the quality of data we can improve by separate it in to smaller regions. After some operation, we can encode the image into a string $\omega$. One of the possible outcome is
$\beta_1\beta_2\alpha_1\alpha_2\alpha_3\alpha_4\alpha_5\alpha_6\beta_3
\alpha_7\alpha_8\alpha_9\beta_4\alpha_{10}\alpha_{11}\alpha_{12}\alpha_{13}$.
Figure~\ref{fig:ContextFreeString} shows how the image is separated into several regions. By this method, we can continuously separate regions until the file size excess our requirement or the error rate less than a threshold.
%Each time we separate a region, the size of file will increased 4 bytes, and start from 1 byte. the final size
The context-free grammar start from a region contain whole image. For each $R$ we calculate a score which is based on the quality of data we can improve by separate it in to smaller regions. After some operation, we can encode the image into a string $\omega$. Figure~\ref{fig:pngImage} shows an example of image which was took by FLIR ONE PRO. One of the possible outcome is Figure~\ref{fig:SeparateImage} if we separate the image 6 times and it will have 19 regions. By this method, we can iteratively separate an image until the number of regions reach our file size requirement.
\begin{figure}[htbp]
\centering
\includegraphics[width=\columnwidth]{figures/ContextFreeString.pdf}
\caption{Region separate by CFG}
\label{fig:ContextFreeString}
\end{figure}
The heuristic function in the proposed method is the sum of squared error of the pixels in the region. We have also try to use the total squared error it can reduce as the heuristic function, but it will easily get stuck at a local minimum.
\begin{figure}[ht]
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[width=\linewidth]{figures/real.png}
\caption{PNG image, size = 46KB}
\label{fig:pngImage}
\end{minipage}
\hspace{0.05\linewidth}
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[width=\linewidth]{figures/separate.png}
\caption{Region separate by CFG}
\label{fig:SeparateImage}
\end{minipage}
\end{figure}
\subsection{Data Structure and Region Selection Algorithm}
We use the sum of squared error of pixels in the region when we use the average of them to replace them as the heuristic value. In order to reduce the heuristic value's calculating time, we design a four dimension segment tree to preprocess all possible regions. For each node, it store the range on both width and height it covered, mean $E[X]$, and squared mean $E[X^2]$ of pixels in the region. By the property of segment tree, tree root start from $0$, and each node $X_i$ has four child $X_{i\times 4+1}$, $X_{i\times 4+2}$, $X_{i\times 4+3}$ and $X_{i\times 4+4}$. Hence, we only need to allocate an large array and recursively process all nodes form root. Algorithm~\ref{code:SegmentTreePreprocess} shows how we generate the tree.
To help us choose which region to be separated, we give every region a score, and put them into a heap. For each round, we pick the region with the highest score, separate it into four subregions, calculate the score of subregions, and put them into the heap. We use the sum of square error of pixels in the region $R$ as the score of the region.
\begin{center}
\begin{tabular}{rl}
$\mu = $ & $E(R)$\\
$Score = $ & $\sum\limits_{X\in R} (X-\mu)^2$\\
$= $ & $\sum\limits_{X\in R} X^2 - |R|\mu^2$
\end{tabular}
\end{center}
By the equation shows above, we just need to know the sum of squared and the mean of a region, we can get its score. we can use a segment tree to store all possible regions and its scores. For each node, it store the range on both width and height it covered, sum $\sum\limits_{X\in R} X$, and squared sum $\sum\limits_{X\in R} X^2$ of pixels in the region. By the property of segment tree, tree root start from $0$, and each node $X_i$ has four child $X_{i\times 4+1}$, $X_{i\times 4+2}$, $X_{i\times 4+3}$ and $X_{i\times 4+4}$. Hence, we only need to allocate an large array and recursively process all nodes form root. Algorithm~\ref{code:SegmentTreePreprocess} shows how we generate the tree.
\begin{algorithm*}[h]
\caption{Segment Tree Preprocess}
@ -58,7 +71,7 @@ We use the sum of squared error of pixels in the region when we use the average
\end{algorithmic}
\end{algorithm*}
For region selection, we use a priority queue to retrieve the region of considerate regions with highest value. The priority queue start with only root of the segment tree. For each round the priority queue pop the item with highest value and push all its child in to the queue. Algorithm~\ref{code:RegionSelection} shows how we select a region by the priority queue. After the selection finished, we will generate the data string to be sent. The regions in $seperatedRegions$ will be $\beta$ and others in $PriorityQueue$ will be the average value, and then compress the string by Huffman Coding.
For region selection, we use a priority queue to retrieve the region of considerate regions with highest score. The priority queue start with only root of the segment tree. For each round the priority queue pop the item with highest score and push all its child in to the queue. Algorithm~\ref{code:RegionSelection} shows how we select a region by the priority queue. After the selection finished, we will generate the data string to be sent. The regions in $seperatedRegions$ will be $\beta$ and others in $PriorityQueue$ will be the average value, and then compress the string by Huffman Coding.
\begin{algorithm*}[h]
\caption{Region Selection}
@ -78,3 +91,4 @@ For region selection, we use a priority queue to retrieve the region of consider
\end{algorithmic}
\end{algorithm*}
The complexity of our algorithm can be separated into 3 parts. First part is to initialize the segment tree. The size of segment is depends on the size of the image. If the number of pixels is $N$, the height of segment tree is $O(Nlog(N))$, and the number of nodes will be $O(N)$. The time complexity of initialize is $O(N)$. Second part is loading the image. It will need to traverse whole tree from leaf to root. Since segment tree can be store in an array, it also takes $O(N)$ time to load the image. Third part is to separate regions. For each round, we pop an element from heap and push four elements into heap. If we have separated image $K$ times, the size of heap will be $3K+1$. Time complexity of pop and push will be $O(log(K))$, and do it $5K$ times will be $O(Klog(K))$.

+ 12
- 9
trunk/04Evaluation.tex View File

@ -1,14 +1,7 @@
\section{Performance Evaluation}
\label{sec:eval}
To evaluate the effectiveness of the proposed method, we do the different ratios of compressing on a thermal image by our method compare to JPEG image using different quality and png image, a lossless bit map image. We set the camera at the ceiling and view direction is perpendicular to the ground, and the image size is $480 \times 640$ pixels. Figure~\ref{fig:pngImage} shows an example of image which was took by FLIR ONE PRO. The JPEG image is generated by OpenCV $3.3.0$, and image quality from $1$ to $99$.
\begin{figure}[ht]
\centering
\includegraphics[width=0.6\columnwidth]{figures/real.png}
\caption{PNG image, size = 46KB}
\label{fig:pngImage}
\end{figure}
To evaluate the effectiveness of the proposed method, we do the different ratios of compressing on a thermal image by our method compare to JPEG image using different quality and png image, a lossless bit map image. We set the camera at the ceiling and view direction is perpendicular to the ground, and the image size is $480 \times 640$ pixels. The JPEG image is generated by OpenCV $3.3.0$, and image quality from $1$ to $99$.
Figure~\ref{fig:4KMy} and Figure~\ref{fig:4KJpeg} show the different of JPEG and our method. JPEG image id generated by image quality level $3$, and image of our method does $1390$ rounds of separate and compressed by Huffman Coding. In this case, Huffman Coding can reduce $39\%$ of our image size.
@ -33,4 +26,14 @@ Figure~\ref{fig:compareToJpeg} shows that the size of file can reduce more than
\includegraphics[width=\columnwidth]{figures/compareToJpeg.pdf}
\caption{Proposed method and JPEG comparing}
\label{fig:compareToJpeg}
\end{figure}
\end{figure}
The computing time on Raspberry Pi 3 is:
\subsubsection{Date Structure Initialize}
XXX.XXX second.
\subsubsection{Image Loading}
XXX.XXX second.
\subsubsection{Region Separation}
XXX.XXX second. (a chart)

+ 58
- 30
trunk/Main.aux View File

@ -1,42 +1,70 @@
\relax
\abx@aux@refcontext{none/global//global/global}
\abx@aux@cite{Middleton2015}
\abx@aux@segm{0}{0}{Middleton2015}
\abx@aux@segm{0}{0}{Middleton2015}
\abx@aux@cite{studenski2011}
\abx@aux@segm{0}{0}{studenski2011}
\abx@aux@cite{Studenski03}
\abx@aux@segm{0}{0}{Studenski03}
\abx@aux@segm{0}{0}{studenski2011}
\abx@aux@segm{0}{0}{Studenski03}
\abx@aux@cite{pulignano2016}
\abx@aux@segm{0}{0}{pulignano2016}
\abx@aux@cite{Konthoraxjnl2015}
\abx@aux@segm{0}{0}{Konthoraxjnl2015}
\abx@aux@cite{kutner2015}
\abx@aux@segm{0}{0}{kutner2015}
\abx@aux@cite{profile2015}
\abx@aux@segm{0}{0}{profile2015}
\abx@aux@cite{Peters2013}
\abx@aux@segm{0}{0}{Peters2013}
\@writefile{toc}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
\@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
\@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {I}Introduction}{1}}
\newlabel{sec:introduction}{{I}{1}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {II}Background and Related Works}{1}}
\newlabel{sec:bk_related}{{II}{1}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {II-A}Panasonic Grid-EYE Thermal Sensor}{1}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Walking under a Grid-EYE sensor}}{1}}
\newlabel{fig:GridEye}{{1}{1}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {II-B}Simple Data Compressing}{1}}
\abx@aux@cite{Shih17b}
\abx@aux@segm{0}{0}{Shih17b}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Gait Velocity Measurement at Smart Homes}}{3}}
\newlabel{fig:gaitVelocitySmartHome}{{1}{3}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {II}Background and Related Works}{4}}
\newlabel{sec:bk_related}{{II}{4}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {\unhbox \voidb@x \hbox {II-A}}Panasonic Grid-EYE Thermal Sensor}{4}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Walking under a Grid-EYE sensor}}{4}}
\newlabel{fig:GridEye}{{2}{4}}
\abx@aux@segm{0}{0}{Shih17b}
\abx@aux@segm{0}{0}{Shih17b}
\abx@aux@cite{guo2011simple}
\abx@aux@segm{0}{0}{guo2011simple}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {II-B.1}Huffman Coding}{2}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {II-B.2}Z-score Threshold}{2}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {II-B.3}Gaussian Function Fitting}{2}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {II-C}FLIR ONE PRO}{2}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {III}Data Size Decision Framework}{2}}
\newlabel{sec:design}{{III}{2}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {III-A}Heuristic Data Resolution Determination}{2}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Region separate by CFG}}{2}}
\newlabel{fig:ContextFreeString}{{2}{2}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {III-B}Data Structure and Region Selection Algorithm}{2}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {IV}Performance Evaluation}{3}}
\newlabel{sec:eval}{{IV}{3}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces PNG image, size = 46KB}}{3}}
\newlabel{fig:pngImage}{{3}{3}}
\newlabel{sec:conclusion}{{V}{3}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {V}Conclusion}{3}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces 4KB Image by Proposed Method}}{3}}
\newlabel{fig:4KMy}{{4}{3}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces 4KB Image by JPEG}}{3}}
\newlabel{fig:4KJpeg}{{5}{3}}
\@writefile{loa}{\defcounter {refsection}{0}\relax }\@writefile{loa}{\contentsline {algorithm}{\numberline {1}{\ignorespaces Segment Tree Preprocess}}{4}}
\newlabel{code:SegmentTreePreprocess}{{1}{4}}
\@writefile{loa}{\defcounter {refsection}{0}\relax }\@writefile{loa}{\contentsline {algorithm}{\numberline {2}{\ignorespaces Region Selection}}{4}}
\newlabel{code:RegionSelection}{{2}{4}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {\unhbox \voidb@x \hbox {II-B}}FLIR ONE PRO}{5}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {\unhbox \voidb@x \hbox {II-C}}Raspberry Pi 3}{5}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {\unhbox \voidb@x \hbox {II-D}}Simple Data Compressing}{5}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {\unhbox \voidb@x \hbox {II-D}1}Huffman Coding}{5}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {\unhbox \voidb@x \hbox {II-D}2}Z-score Threshold}{5}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {\unhbox \voidb@x \hbox {II-D}3}Gaussian Function Fitting}{6}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {III}Data Size Decision Framework}{6}}
\newlabel{sec:design}{{III}{6}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {\unhbox \voidb@x \hbox {III-A}}Region Represent Grammar}{6}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces PNG image, size = 46KB}}{7}}
\newlabel{fig:pngImage}{{3}{7}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Region separate by CFG}}{7}}
\newlabel{fig:SeparateImage}{{4}{7}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {\unhbox \voidb@x \hbox {III-B}}Data Structure and Region Selection Algorithm}{7}}
\@writefile{loa}{\defcounter {refsection}{0}\relax }\@writefile{loa}{\contentsline {algorithm}{\numberline {1}{\ignorespaces Segment Tree Preprocess}}{8}}
\newlabel{code:SegmentTreePreprocess}{{1}{8}}
\@writefile{loa}{\defcounter {refsection}{0}\relax }\@writefile{loa}{\contentsline {algorithm}{\numberline {2}{\ignorespaces Region Selection}}{8}}
\newlabel{code:RegionSelection}{{2}{8}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {IV}Performance Evaluation}{9}}
\newlabel{sec:eval}{{IV}{9}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {\unhbox \voidb@x \hbox {IV-}1}Date Structure Initialize}{9}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {\unhbox \voidb@x \hbox {IV-}2}Image Loading}{9}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {\unhbox \voidb@x \hbox {IV-}3}Region Separation}{9}}
\newlabel{sec:conclusion}{{V}{9}}
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {V}Conclusion}{9}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces 4KB Image by Proposed Method}}{10}}
\newlabel{fig:4KMy}{{5}{10}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces 4KB Image by JPEG}}{11}}
\newlabel{fig:4KJpeg}{{6}{11}}
\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {7}{\ignorespaces Proposed method and JPEG comparing}}{12}}
\newlabel{fig:compareToJpeg}{{7}{12}}

+ 15
- 3
trunk/Main.bcf View File

@ -1984,9 +1984,21 @@
<bcf:datasource type="file" datatype="bibtex">ERICA.bib</bcf:datasource>
</bcf:bibdata>
<bcf:section number="0">
<bcf:citekey order="1">Shih17b</bcf:citekey>
<bcf:citekey order="2">Shih17b</bcf:citekey>
<bcf:citekey order="3">guo2011simple</bcf:citekey>
<bcf:citekey order="1">Middleton2015</bcf:citekey>
<bcf:citekey order="2">Middleton2015</bcf:citekey>
<bcf:citekey order="2">studenski2011</bcf:citekey>
<bcf:citekey order="2">Studenski03</bcf:citekey>
<bcf:citekey order="3">studenski2011</bcf:citekey>
<bcf:citekey order="4">Studenski03</bcf:citekey>
<bcf:citekey order="4">pulignano2016</bcf:citekey>
<bcf:citekey order="4">Konthoraxjnl2015</bcf:citekey>
<bcf:citekey order="4">kutner2015</bcf:citekey>
<bcf:citekey order="5">profile2015</bcf:citekey>
<bcf:citekey order="6">Peters2013</bcf:citekey>
<bcf:citekey order="7">Shih17b</bcf:citekey>
<bcf:citekey order="8">Shih17b</bcf:citekey>
<bcf:citekey order="9">Shih17b</bcf:citekey>
<bcf:citekey order="10">guo2011simple</bcf:citekey>
</bcf:section>
<!-- SORTING TEMPLATES -->
<bcf:sortingtemplate name="none">


BIN
trunk/Main.dvi View File


+ 285
- 271
trunk/Main.log View File

@ -1,98 +1,93 @@
This is pdfTeX, Version 3.14159265-2.6-1.40.17 (MiKTeX 2.9.6210 64-bit) (preloaded format=pdflatex 2018.3.9) 11 MAR 2018 16:39
This is pdfTeX, Version 3.14159265-2.6-1.40.17 (MiKTeX 2.9.6210 64-bit) (preloaded format=pdflatex 2018.3.9) 13 MAR 2018 20:23
entering extended mode
**./Main.tex
(Main.tex
LaTeX2e <2017/01/01> patch level 3
Babel <3.9r> and hyphenation patterns for 75 language(s) loaded.
(ieeeconf.cls
Document Class: ieeeconf 2004/1/15 revision V1.6b by Pradeep Misra
(IEEEtran.cls
LaTeX Warning: You have requested document class `./IEEEtran',
but the document class provides `IEEEtran'.
Document Class: IEEEtran 2007/03/05 V1.7a by Michael Shell
-- See the "IEEEtran_HOWTO" manual for usage information.
-- http://www.michaelshell.org/tex/ieeetran/
\@IEEEtrantmpdimenA=\dimen102
\@IEEEtrantmpdimenB=\dimen103
\@IEEEtrantmpcountA=\count79
\@IEEEtrantmpcountB=\count80
\@IEEEtrantmptoksA=\toks14
LaTeX Font Info: Try loading font information for OT1+ptm on input line 792.
LaTeX Font Info: Try loading font information for OT1+ptm on input line 366.
("C:\Program Files\MiKTeX 2.9\tex\latex\psnfss\ot1ptm.fd"
File: ot1ptm.fd 2001/06/04 font definitions for OT1/ptm.
)
** ATTENTION: Single column mode is not normally used with IEEE publications.
\@IEEEnormalsizefontbaselineskip=\skip41
-- This is a 10 point document.
\normalsizebaselineskip=\skip42
\normaljot=\skip43
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <5> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <5> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <7> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
** ATTENTION: Single column mode is not typically used with IEEE publications.
-- Using 210mm x 297mm (a4) paper.
-- Using PDF output.
\@IEEEnormalsizeunitybaselineskip=\dimen104
-- This is a 12 point document.
\CLASSINFOnormalsizebaselineskip=\dimen105
\CLASSINFOnormalsizeunitybaselineskip=\dimen106
\IEEEnormaljot=\dimen107
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <6> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <6> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <8> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <8> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <9> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <9> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <10> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <11> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <11> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <12> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <12> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <16> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <16> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <14> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <14> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <20> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <20> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <22> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <22> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <24> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1111.
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 724.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <24> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1111.
\IEEEilabelindentA=\dimen104
\IEEEilabelindentB=\dimen105
\IEEEilabelindent=\dimen106
\IEEEelabelindent=\dimen107
\IEEEdlabelindent=\dimen108
\labelindent=\dimen109
\IEEEiednormlabelsep=\dimen110
\IEEEiedmathlabelsep=\dimen111
\IEEEiedtopsep=\skip44
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 724.
\IEEEilabelindentA=\dimen108
\IEEEilabelindentB=\dimen109
\IEEEilabelindent=\dimen110
\IEEEelabelindent=\dimen111
\IEEEdlabelindent=\dimen112
\IEEElabelindent=\dimen113
\IEEEiednormlabelsep=\dimen114
\IEEEiedmathlabelsep=\dimen115
\IEEEiedtopsep=\skip41
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@IEEEsubequation=\count85
\abovecaptionskip=\skip45
\belowcaptionskip=\skip46
\abovecaptionskip=\skip42
\belowcaptionskip=\skip43
\c@figure=\count86
\c@table=\count87
\@IEEEeqnnumcols=\count88
\@IEEEeqncolcnt=\count89
\@IEEEtmpitemindent=\dimen112
\c@biography=\count90
\@IEEEtmpitemindent=\dimen116
\c@IEEEbiography=\count90
\@IEEEtranrubishbin=\box26
) (ntu_techrpt_cover.sty
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
@ -124,8 +119,8 @@ Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count91
))
\Gin@req@height=\dimen113
\Gin@req@width=\dimen114
\Gin@req@height=\dimen117
\Gin@req@width=\dimen118
)
("C:\Program Files\MiKTeX 2.9\tex\latex\eso-pic\eso-pic.sty"
Package: eso-pic 2015/07/21 v2.0g eso-pic (RN)
@ -176,14 +171,14 @@ Package: setspace 2011/12/19 v6.7a set line spacing
\lst@gtempboxa=\box27
\lst@token=\toks16
\lst@length=\count96
\lst@currlwidth=\dimen115
\lst@currlwidth=\dimen119
\lst@column=\count97
\lst@pos=\count98
\lst@lostspace=\dimen116
\lst@width=\dimen117
\lst@lostspace=\dimen120
\lst@width=\dimen121
\lst@newlines=\count99
\lst@lineno=\count100
\lst@maxwidth=\dimen118
\lst@maxwidth=\dimen122
("C:\Program Files\MiKTeX 2.9\tex\latex\listings\lstmisc.sty"
File: lstmisc.sty 2015/06/04 1.6 (Carsten Heinz)
@ -198,17 +193,17 @@ Package: listings 2015/06/04 1.6 (Carsten Heinz)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\epsfig.sty"
Package: epsfig 1999/02/16 v1.7a (e)psfig emulation (SPQR)
\epsfxsize=\dimen119
\epsfysize=\dimen120
\epsfxsize=\dimen123
\epsfysize=\dimen124
)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\longtable.sty"
Package: longtable 2014/10/28 v4.11 Multi-page Table package (DPC)
\LTleft=\skip47
\LTright=\skip48
\LTpre=\skip49
\LTpost=\skip50
\LTleft=\skip44
\LTright=\skip45
\LTpre=\skip46
\LTpost=\skip47
\LTchunksize=\count103
\LTcapwidth=\dimen121
\LTcapwidth=\dimen125
\LT@head=\box29
\LT@firsthead=\box30
\LT@foot=\box31
@ -224,7 +219,7 @@ Package: cases 2002/05/02 ver 2.5
)
("C:\Program Files\MiKTeX 2.9\tex\latex\preprint\balance.sty"
Package: balance 1999/02/23 4.3 (PWD)
\oldvsize=\dimen122
\oldvsize=\dimen126
)
("C:\Program Files\MiKTeX 2.9\tex\latex\algorithms\algorithm.sty"
Package: algorithm 2009/08/24 v0.1 Document Style `algorithm' - floating enviro
@ -254,13 +249,13 @@ Document Style algorithmicx 1.2 - a greatly improved `algorithmic' style
\c@ALG@line=\count110
\c@ALG@rem=\count111
\c@ALG@nested=\count112
\ALG@tlm=\skip51
\ALG@thistlm=\skip52
\ALG@tlm=\skip48
\ALG@thistlm=\skip49
\c@ALG@Lnr=\count113
\c@ALG@blocknr=\count114
\c@ALG@storecount=\count115
\c@ALG@tmpcounter=\count116
\ALG@tmplength=\skip53
\ALG@tmplength=\skip50
)
Document Style - pseudocode environments for use with the `algorithmicx' style
) (svn-multi.sty ("C:\Program Files\MiKTeX 2.9\tex\latex\svn-prov\svn-prov.sty"
@ -296,15 +291,15 @@ Package: soul 2003/11/17 v2.4 letterspacing/underlining (mf)
\SOUL@cmds=\toks23
\SOUL@buffer=\toks24
\SOUL@token=\toks25
\SOUL@spaceskip=\skip54
\SOUL@ttwidth=\dimen123
\SOUL@uldp=\dimen124
\SOUL@ulht=\dimen125
\SOUL@spaceskip=\skip51
\SOUL@ttwidth=\dimen127
\SOUL@uldp=\dimen128
\SOUL@ulht=\dimen129
)
("C:\Program Files\MiKTeX 2.9\tex\latex\preprint\authblk.sty"
Package: authblk 2001/02/27 1.3 (PWD)
\affilsep=\skip55
\@affilsep=\skip56
\affilsep=\skip52
\@affilsep=\skip53
\c@Maxaffil=\count117
\c@authors=\count118
\c@affil=\count119
@ -381,14 +376,14 @@ Package: xstring 2013/10/13 v1.7c String manipulations (C Tellechea)
\blx@parenlevel@text=\count159
\blx@parenlevel@foot=\count160
\blx@sectionciteorder@0=\count161
\labelnumberwidth=\skip57
\labelalphawidth=\skip58
\biblabelsep=\skip59
\bibitemsep=\skip60
\bibnamesep=\skip61
\bibinitsep=\skip62
\bibparsep=\skip63
\bibhang=\skip64
\labelnumberwidth=\skip54
\labelalphawidth=\skip55
\biblabelsep=\skip56
\bibitemsep=\skip57
\bibnamesep=\skip58
\bibinitsep=\skip59
\bibparsep=\skip60
\bibhang=\skip61
\blx@bcfin=\read1
\blx@bcfout=\write5
\c@mincomprange=\count162
@ -472,20 +467,20 @@ Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
\c@savedoriglanguage=\count296
\c@pageref=\count297
\c@savedpageref=\count298
\shorthandwidth=\skip65
\shortjournalwidth=\skip66
\shortserieswidth=\skip67
\shorttitlewidth=\skip68
\shortauthorwidth=\skip69
\shorteditorwidth=\skip70
\locallabelnumberwidth=\skip71
\locallabelalphawidth=\skip72
\localshorthandwidth=\skip73
\localshortjournalwidth=\skip74
\localshortserieswidth=\skip75
\localshorttitlewidth=\skip76
\localshortauthorwidth=\skip77
\localshorteditorwidth=\skip78
\shorthandwidth=\skip62
\shortjournalwidth=\skip63
\shortserieswidth=\skip64
\shorttitlewidth=\skip65
\shortauthorwidth=\skip66
\shorteditorwidth=\skip67
\locallabelnumberwidth=\skip68
\locallabelalphawidth=\skip69
\localshorthandwidth=\skip70
\localshortjournalwidth=\skip71
\localshortserieswidth=\skip72
\localshorttitlewidth=\skip73
\localshortauthorwidth=\skip74
\localshorteditorwidth=\skip75
Package biblatex Info: Trying to load compatibility code...
Package biblatex Info: ... file 'blx-compat.def' found.
@ -558,14 +553,14 @@ File: biblatex.cfg
Package: calc 2014/10/28 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count316
\calc@Bcount=\count317
\calc@Adimen=\dimen126
\calc@Bdimen=\dimen127
\calc@Askip=\skip79
\calc@Bskip=\skip80
\calc@Adimen=\dimen130
\calc@Bdimen=\dimen131
\calc@Askip=\skip76
\calc@Bskip=\skip77
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count318
\calc@Cskip=\skip81
\calc@Cskip=\skip78
)
Package: myColor 2000/10/26 v1.0 LaTeX package for colored paragraphs.
)
@ -589,8 +584,8 @@ File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
("C:\Program Files\MiKTeX 2.9\tex\latex\pgf\utilities\pgfrcs.sty"
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\utilities\pgfutil-common.tex"
\pgfutil@everybye=\toks28
\pgfutil@tempdima=\dimen128
\pgfutil@tempdimb=\dimen129
\pgfutil@tempdima=\dimen132
\pgfutil@tempdimb=\dimen133
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\utilities\pgfutil-common-lists.te
x")) ("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\utilities\pgfutil-latex.def"
@ -613,14 +608,14 @@ Package: pgfsys 2014/07/09 v3.0.1a (rcs-revision 1.48)
x"
\pgfkeys@tmptoks=\toks31
))
\pgf@x=\dimen130
\pgf@y=\dimen131
\pgf@xa=\dimen132
\pgf@ya=\dimen133
\pgf@xb=\dimen134
\pgf@yb=\dimen135
\pgf@xc=\dimen136
\pgf@yc=\dimen137
\pgf@x=\dimen134
\pgf@y=\dimen135
\pgf@xa=\dimen136
\pgf@ya=\dimen137
\pgf@xb=\dimen138
\pgf@yb=\dimen139
\pgf@xc=\dimen140
\pgf@yc=\dimen141
\w@pgf@writea=\write6
\r@pgf@reada=\read2
\c@pgf@counta=\count320
@ -657,7 +652,7 @@ Package: pgfcore 2010/04/11 v3.0.1a (rcs-revision 1.7)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathcalc.code.tex"
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathutil.code.tex")
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmathparser.code.tex"
\pgfmath@dimen=\dimen138
\pgfmath@dimen=\dimen142
\pgfmath@count=\count326
\pgfmath@box=\box36
\pgfmath@toks=\toks35
@ -687,32 +682,32 @@ hmetics.code.tex")))
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex
"
File: pgfcorepoints.code.tex 2013/10/07 (rcs-revision 1.27)
\pgf@picminx=\dimen139
\pgf@picmaxx=\dimen140
\pgf@picminy=\dimen141
\pgf@picmaxy=\dimen142
\pgf@pathminx=\dimen143
\pgf@pathmaxx=\dimen144
\pgf@pathminy=\dimen145
\pgf@pathmaxy=\dimen146
\pgf@xx=\dimen147
\pgf@xy=\dimen148
\pgf@yx=\dimen149
\pgf@yy=\dimen150
\pgf@zx=\dimen151
\pgf@zy=\dimen152
\pgf@picminx=\dimen143
\pgf@picmaxx=\dimen144
\pgf@picminy=\dimen145
\pgf@picmaxy=\dimen146
\pgf@pathminx=\dimen147
\pgf@pathmaxx=\dimen148
\pgf@pathminy=\dimen149
\pgf@pathmaxy=\dimen150
\pgf@xx=\dimen151
\pgf@xy=\dimen152
\pgf@yx=\dimen153
\pgf@yy=\dimen154
\pgf@zx=\dimen155
\pgf@zy=\dimen156
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepathconstruct.c
ode.tex"
File: pgfcorepathconstruct.code.tex 2013/10/07 (rcs-revision 1.29)
\pgf@path@lastx=\dimen153
\pgf@path@lasty=\dimen154
\pgf@path@lastx=\dimen157
\pgf@path@lasty=\dimen158
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorepathusage.code.
tex"
File: pgfcorepathusage.code.tex 2014/11/02 (rcs-revision 1.24)
\pgf@shorten@end@additional=\dimen155
\pgf@shorten@start@additional=\dimen156
\pgf@shorten@end@additional=\dimen159
\pgf@shorten@start@additional=\dimen160
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex
"
@ -725,14 +720,14 @@ File: pgfcorescopes.code.tex 2015/05/08 (rcs-revision 1.46)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoregraphicstate.co
de.tex"
File: pgfcoregraphicstate.code.tex 2014/11/02 (rcs-revision 1.12)
\pgflinewidth=\dimen157
\pgflinewidth=\dimen161
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoretransformations
.code.tex"
File: pgfcoretransformations.code.tex 2015/08/07 (rcs-revision 1.20)
\pgf@pt@x=\dimen158
\pgf@pt@y=\dimen159
\pgf@pt@temp=\dimen160
\pgf@pt@x=\dimen162
\pgf@pt@y=\dimen163
\pgf@pt@temp=\dimen164
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorequick.code.tex"
File: pgfcorequick.code.tex 2008/10/09 (rcs-revision 1.3)
@ -748,11 +743,11 @@ File: pgfcorepathprocessing.code.tex 2013/09/09 (rcs-revision 1.9)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex
"
File: pgfcorearrows.code.tex 2015/05/14 (rcs-revision 1.43)
\pgfarrowsep=\dimen161
\pgfarrowsep=\dimen165
)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoreshade.code.tex"
File: pgfcoreshade.code.tex 2013/07/15 (rcs-revision 1.15)
\pgf@max=\dimen162
\pgf@max=\dimen166
\pgf@sys@shading@range@num=\count329
) ("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\basiclayer\pgfcoreimage.code.te
x"
@ -784,8 +779,8 @@ File: pgfmoduleplot.code.tex 2015/08/03 (rcs-revision 1.13)
("C:\Program Files\MiKTeX 2.9\tex\latex\pgf\compatibility\pgfcomp-version-0-65.
sty"
Package: pgfcomp-version-0-65 2007/07/03 v3.0.1a (rcs-revision 1.7)
\pgf@nodesepstart=\dimen163
\pgf@nodesepend=\dimen164
\pgf@nodesepstart=\dimen167
\pgf@nodesepend=\dimen168
)
("C:\Program Files\MiKTeX 2.9\tex\latex\pgf\compatibility\pgfcomp-version-1-18.
sty"
@ -799,8 +794,8 @@ Package: pgfcomp-version-1-18 2007/07/23 v3.0.1a (rcs-revision 1.1)
Package: pgffor 2013/12/13 v3.0.1a (rcs-revision 1.25)
("C:\Program Files\MiKTeX 2.9\tex\generic\pgf\math\pgfmath.code.tex")
\pgffor@iter=\dimen165
\pgffor@skip=\dimen166
\pgffor@iter=\dimen169
\pgffor@skip=\dimen170
\pgffor@stack=\toks38
\pgffor@toks=\toks39
))
@ -811,14 +806,14 @@ Package: tikz 2015/08/07 v3.0.1a (rcs-revision 1.151)
code.tex"
File: pgflibraryplothandlers.code.tex 2013/08/31 v3.0.1a (rcs-revision 1.20)
\pgf@plot@mark@count=\count330
\pgfplotmarksize=\dimen167
\pgfplotmarksize=\dimen171
)
\tikz@lastx=\dimen168
\tikz@lasty=\dimen169
\tikz@lastxsaved=\dimen170
\tikz@lastysaved=\dimen171
\tikzleveldistance=\dimen172
\tikzsiblingdistance=\dimen173
\tikz@lastx=\dimen172
\tikz@lasty=\dimen173
\tikz@lastxsaved=\dimen174
\tikz@lastysaved=\dimen175
\tikzleveldistance=\dimen176
\tikzsiblingdistance=\dimen177
\tikz@figbox=\box42
\tikz@figbox@bg=\box43
\tikz@tempbox=\box44
@ -857,29 +852,29 @@ File: english.lbx 2018/03/04 v3.11 biblatex localization (PK/MW)
(Main.aux)
\openout1 = `Main.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 120.
LaTeX Font Info: ... okay on input line 120.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 120.
LaTeX Font Info: ... okay on input line 120.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 120.
LaTeX Font Info: ... okay on input line 120.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 120.
LaTeX Font Info: ... okay on input line 120.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 120.
LaTeX Font Info: ... okay on input line 120.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 120.
LaTeX Font Info: ... okay on input line 120.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 105.
LaTeX Font Info: ... okay on input line 105.
("C:\Program Files\MiKTeX 2.9\tex\context\base\supp-pdf.mkii"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count342
\scratchdimen=\dimen174
\scratchdimen=\dimen178
\scratchbox=\box46
\nofMPsegments=\count343
\nofMParguments=\count344
\everyMPshowfont=\toks40
\MPscratchCnt=\count345
\MPscratchDim=\dimen175
\MPscratchDim=\dimen179
\MPnumerator=\count346
\makeMPintoPDFobject=\count347
\everyMPtoPDFconversion=\toks41
@ -913,131 +908,151 @@ Package biblatex Info: Trying to load bibliographic data...
Package biblatex Info: ... file 'Main.bbl' not found.
No file Main.bbl.
Package biblatex Info: Reference section=0 on input line 120.
Package biblatex Info: Reference segment=0 on input line 120.
LaTeX Font Info: Calculating math sizes for size <11> on input line 135.
Package biblatex Info: Reference section=0 on input line 105.
Package biblatex Info: Reference segment=0 on input line 105.
(00Abstract.tex
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <11> on input line 135.
(Font) <7> on input line 3.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7.69997> on input line 135.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5.5> on input line 135.
LaTeX Font Info: Try loading font information for OT1+pcr on input line 135.
(Font) <5> on input line 3.
) (01Introduction.tex
("C:\Program Files\MiKTeX 2.9\tex\latex\psnfss\ot1pcr.fd"
File: ot1pcr.fd 2001/06/04 font definitions for OT1/pcr.
)
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <9> on input line 135.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 135.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5> on input line 135.
(00Abstract.tex)
(01Introduction.tex
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7> on input line 7.
LaTeX Warning: Citation 'Middleton2015' on page 1 undefined on input line 4.
Overfull \hbox (0.80771pt too wide) in paragraph at lines 7--8
\OT1/ptm/m/n/10 it will con-sume 240mA and while up-load-ing data at 24Mbit/s,
LaTeX Warning: Citation 'Middleton2015' on page 1 undefined on input line 4.
LaTeX Warning: Citation 'studenski2011' on page 1 undefined on input line 4.
LaTeX Warning: Citation 'Studenski03' on page 1 undefined on input line 4.
Overfull \hbox (49.3852pt too wide) in paragraph at lines 4--5
\OT1/ptm/m/n/12 cause it re-quires more oxy-gen to con-tract the mus-cles. Henc
e, \OT1/ptm/m/it/12 gait ve-loc-ity\OT1/ptm/m/n/12 , or called \OT1/ptm/m/it/12
walk-ing speed \OT1/ptm/m/n/12 [[]],
[]
) (02Background.tex
pdfTeX warning: pdflatex (file ./figures/GridEye.pdf): PDF inclusion: found PDF
version <1.7>, but at most version <1.5> allowed
<figures/GridEye.pdf, id=4, 332.24126pt x 180.675pt>
File: figures/GridEye.pdf Graphic file (type pdf)
<use figures/GridEye.pdf>
Package pdftex.def Info: figures/GridEye.pdf used on input line 11.
(pdftex.def) Requested size: 245.71811pt x 133.62296pt.
Overfull \hbox (23.1505pt too wide) in paragraph at lines 4--5
\OT1/ptm/m/n/12 has be-come a valid and im-por-tant met-ric for se-nior pop-u-l
a-tions [[], [], []].
[]
[1
Non-PDF special ignored!{C:/ProgramData/MiKTeX/2.9/pdftex/config/pdftex.map}
LaTeX Warning: Citation 'studenski2011' on page 1 undefined on input line 6.
<./figures/GridEye.pdf>]
LaTeX Warning: Citation 'Shih17b' on page 2 undefined on input line 26.
LaTeX Warning: Citation 'Studenski03' on page 1 undefined on input line 6.
LaTeX Warning: Citation 'Shih17b' on page 2 undefined on input line 26.
LaTeX Warning: Citation 'pulignano2016' on page 1 undefined on input line 6.
LaTeX Warning: Citation 'guo2011simple' on page 2 undefined on input line 29.
LaTeX Warning: Citation 'Konthoraxjnl2015' on page 1 undefined on input line 6.
) (03Design.tex
Overfull \hbox (50.08548pt too wide) in paragraph at lines 18--24
\OT1/ptm/m/n/10 the pos-si-ble out-come is $\OML/cmm/m/it/10 [] [] [] [] [] []
[] [] [] [] [] [] [] [] [] [] []$\OT1/ptm/m/n/10 .
[]
LaTeX Warning: Citation 'kutner2015' on page 1 undefined on input line 6.
pdfTeX warning: pdflatex (file ./figures/ContextFreeString.pdf): PDF inclusion:
found PDF version <1.7>, but at most version <1.5> allowed
<figures/ContextFreeString.pdf, id=25, 361.35pt x 361.35pt>
File: figures/ContextFreeString.pdf Graphic file (type pdf)
<use figures/ContextFreeString.pdf>
Package pdftex.def Info: figures/ContextFreeString.pdf used on input line 27.
(pdftex.def) Requested size: 245.71811pt x 245.72026pt.
LaTeX Warning: Citation 'profile2015' on page 1 undefined on input line 8.
** WARNING: \and is valid only when in conference or peerreviewca
modes (line 44).
[2 <./figures/ContextFreeString.pdf>]
LaTeX Warning: `h' float specifier changed to `ht'.
LaTeX Warning: Citation 'Peters2013' on page 1 undefined on input line 8.
[1
Non-PDF special ignored!{C:/ProgramData/MiKTeX/2.9/pdftex/config/pdftex.map}]
LaTeX Warning: Citation 'Shih17b' on page 2 undefined on input line 12.
pdfTeX warning: pdflatex (file ./figures/ThermalAtHome.pdf): PDF inclusion: fou
nd PDF version <1.7>, but at most version <1.5> allowed
<figures/ThermalAtHome.pdf, id=13, 794.97pt x 614.295pt>
File: figures/ThermalAtHome.pdf Graphic file (type pdf)
<use figures/ThermalAtHome.pdf>
Package pdftex.def Info: figures/ThermalAtHome.pdf used on input line 15.
(pdftex.def) Requested size: 516.0pt x 343.26186pt.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <12> on input line 22.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <8> on input line 22.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 22.
[2]) (02Background.tex [3 <./figures/ThermalAtHome.pdf>]
pdfTeX warning: pdflatex (file ./figures/GridEye.pdf): PDF inclusion: found PDF
version <1.7>, but at most version <1.5> allowed
<figures/GridEye.pdf, id=49, 332.24126pt x 180.675pt>
File: figures/GridEye.pdf Graphic file (type pdf)
<use figures/GridEye.pdf>
Package pdftex.def Info: figures/GridEye.pdf used on input line 11.
(pdftex.def) Requested size: 516.0pt x 280.6471pt.
[4 <./figures/GridEye.pdf>]
LaTeX Warning: `h' float specifier changed to `ht'.
LaTeX Warning: Citation 'Shih17b' on page 5 undefined on input line 34.
) (04Evaluation.tex <figures/real.png, id=37, 481.8pt x 642.4pt>
LaTeX Warning: Citation 'Shih17b' on page 5 undefined on input line 34.
LaTeX Warning: Citation 'guo2011simple' on page 5 undefined on input line 37.
[5]) (03Design.tex [6] <figures/real.png, id=67, 481.8pt x 642.4pt>
File: figures/real.png Graphic file (type png)
<use figures/real.png>
Package pdftex.def Info: figures/real.png used on input line 8.
(pdftex.def) Requested size: 147.43236pt x 196.57376pt.
<figures/my4000.png, id=38, 481.8pt x 642.4pt>
Package pdftex.def Info: figures/real.png used on input line 24.
(pdftex.def) Requested size: 258.0pt x 344.00899pt.
<figures/separate.png, id=68, 481.8pt x 642.4pt>
File: figures/separate.png Graphic file (type png)
<use figures/separate.png>
Package pdftex.def Info: figures/separate.png used on input line 31.
(pdftex.def) Requested size: 258.0pt x 344.00899pt.
Overfull \hbox (31.32147pt too wide) in paragraph at lines 22--35
[][] []
[]
[7 <./figures/real.png (PNG copy)> <./figures/separate.png (PNG copy)>]
** WARNING: \and is valid only when in conference or peerreviewca
modes (line 57).
) (04Evaluation.tex [8] <figures/my4000.png, id=77, 481.8pt x 642.4pt>
File: figures/my4000.png Graphic file (type png)
<use figures/my4000.png>
Package pdftex.def Info: figures/my4000.png used on input line 17.
(pdftex.def) Requested size: 147.43236pt x 196.57376pt.
<figures/quality3.jpg, id=39, 481.8pt x 642.4pt>
Package pdftex.def Info: figures/my4000.png used on input line 10.
(pdftex.def) Requested size: 309.60315pt x 412.81078pt.
<figures/quality3.jpg, id=78, 481.8pt x 642.4pt>
File: figures/quality3.jpg Graphic file (type jpg)
<use figures/quality3.jpg>
Package pdftex.def Info: figures/quality3.jpg used on input line 24.
(pdftex.def) Requested size: 147.43236pt x 196.57376pt.
Package pdftex.def Info: figures/quality3.jpg used on input line 17.
(pdftex.def) Requested size: 309.60315pt x 412.81078pt.
LaTeX Warning: Reference `fig:compareToJpeg' on page 3 undefined on input line
29.
<figures/compareToJpeg.pdf, id=40, 642.4pt x 385.44pt>
<figures/compareToJpeg.pdf, id=79, 642.4pt x 385.44pt>
File: figures/compareToJpeg.pdf Graphic file (type pdf)
<use figures/compareToJpeg.pdf>
Package pdftex.def Info: figures/compareToJpeg.pdf used on input line 33.
(pdftex.def) Requested size: 245.71811pt x 147.42737pt.
Package pdftex.def Info: figures/compareToJpeg.pdf used on input line 26.
(pdftex.def) Requested size: 516.0pt x 309.61102pt.
) (05Conclusion.tex) (06Acknowledge.tex)
[9]
LaTeX Warning: Empty bibliography on input line 158.
LaTeX Warning: Empty bibliography on input line 143.
\svn@write=\write7
\openout7 = `Main.svn'.
Package balance Warning: You have called \balance in second column
(balance) Columns might not be balanced.
[3 <./figures/real.png (PNG copy)> <./figures/my4000.png (PNG copy)> <./figures
/quality3.jpg>] [4
] [5
] (Main.aux)
[10 <./figures/my4000.png (PNG copy)>] [11 <./figures/quality3.jpg>] [12 <./fig
ures/compareToJpeg.pdf>] (Main.aux)
LaTeX Warning: There were undefined references.
@ -1051,30 +1066,29 @@ Package logreq Info: Writing requests to 'Main.run.xml'.
)
Here is how much of TeX's memory you used:
22459 strings out of 493333
423419 string characters out of 3139189
931464 words of memory out of 3000000
25565 multiletter control sequences out of 15000+200000
43943 words of font info for 85 fonts, out of 3000000 for 9000
22502 strings out of 493333
425069 string characters out of 3139189
928402 words of memory out of 3000000
25615 multiletter control sequences out of 15000+200000
37218 words of font info for 72 fonts, out of 3000000 for 9000
1141 hyphenation exceptions out of 8191
64i,8n,56p,1017b,1280s stack positions out of 5000i,500n,10000p,200000b,50000s
64i,8n,56p,1077b,1282s stack positions out of 5000i,500n,10000p,200000b,50000s
{C:/Program Files/MiKTeX 2.9/fonts/enc/dvips/base/8r.enc}<C:/Program Files/Mi
KTeX 2.9/fonts/type1/public/amsfonts/cm/cmex10.pfb><C:/Program Files/MiKTeX 2.9
/fonts/type1/public/amsfonts/cm/cmmi10.pfb><C:/Program Files/MiKTeX 2.9/fonts/t
ype1/public/amsfonts/cm/cmmi7.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/publ
ic/amsfonts/cm/cmmi9.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfon
ts/cm/cmr10.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr
5.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr7.pfb><C:/
Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr9.pfb><C:/Program Fi
les/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmsy10.pfb><C:/Program Files/MiKT
eX 2.9/fonts/type1/public/amsfonts/cm/cmsy7.pfb><C:/Program Files/MiKTeX 2.9/fo
nts/type1/urw/courier/ucrr8a.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/urw/t
imes/utmb8a.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/urw/times/utmbi8a.pfb>
<C:/Program Files/MiKTeX 2.9/fonts/type1/urw/times/utmr8a.pfb><C:/Program Files
/MiKTeX 2.9/fonts/type1/urw/times/utmri8a.pfb>
Output written on Main.pdf (5 pages, 311503 bytes).
ype1/public/amsfonts/cm/cmmi12.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/pub
lic/amsfonts/cm/cmmi8.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfo
nts/cm/cmr10.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cm
r12.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr6.pfb><C
:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr8.pfb><C:/Program
Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmsy10.pfb><C:/Program Files/Mi
KTeX 2.9/fonts/type1/public/amsfonts/cm/cmsy8.pfb><C:/Program Files/MiKTeX 2.9/
fonts/type1/urw/times/utmb8a.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/urw/t
imes/utmr8a.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/urw/times/utmri8a.pfb>
Output written on Main.pdf (12 pages, 623132 bytes).
PDF statistics:
98 PDF objects out of 1000 (max. 8388607)
142 PDF objects out of 1000 (max. 8388607)
0 named destinations out of 1000 (max. 500000)
43 words of extra memory for PDF output out of 10000 (max. 10000000)
54 words of extra memory for PDF output out of 10000 (max. 10000000)

BIN
trunk/Main.pdf View File


BIN
trunk/Main.synctex.gz View File


+ 7
- 22
trunk/Main.tex View File

@ -2,8 +2,8 @@
%\documentclass[10pt,conference,a4paper,twocolumn]{./IEEEtran}
%\documentclass[10pt,a4paper,twocolumn]{ieeeconf}
% Draft
\documentclass[10pt,a4paper,onecolumn]{ieeeconf}
%\documentclass[12pt,a4paper,onecolumn]{./IEEEtran}
%\documentclass[10pt,a4paper,onecolumn]{ieeeconf}
\documentclass[12pt,a4paper,onecolumn]{./IEEEtran}
%PAPER PAGE LIMIT:
%
@ -86,28 +86,13 @@
% \IEEEauthorblockA{\IEEEauthorrefmark{2}Department of Medical Education and Bioethics,\\NTU}
% \IEEEauthorblockA{\IEEEauthorrefmark{3}Department of Family Medicine, \\NTU Hospital}
%}
\author[1]{Chi-Sheng Shih}
\author[1]{Jyun-Jhe Chou}
\author[2]{Wei-Dean Wang}
\author[3]{Kuo-Chin Huang}
\affil[1]{\small{Graduate Institute of Networking and Multimedia}\\
\author{Jyun-Jhe Chou}
\affil{\small{Graduate Institute of Networking and Multimedia}\\
\small{Department of Computer Science and Information Engineering}\\
\small{NTU IoX Research Center}\\
\small{National Taiwan University} \authorcr Email: {\tt cshih@csie.ntu.edu.tw}\vspace{1.5ex}}
\affil[2]{Department of Medical Education and Bioethics, NTU \vspace{1.5ex}}
\affil[3]{Department of Family Medicine, NTU Hospital \vspace{-2ex}}
\small{National Taiwan University} \vspace{1.5ex}}
\title{Parameterized Data Reduction Framework for IoT Devices}
%\author{Jyun-Jhe \textsc{Chou}, Chi-Sheng \textsc{Shih}, Wei-Dean
% \textsc{Wang}, and Kuo-Chin \textsc{Huang}\\
% \small{{\tt cshih@csie.ntu.edu.tw}}\\
% \small{Embedded Systems and Wireless Networking Lab}\\
% \small{Graduate Institute of Networking and Multimedia}\\
% \small{Department of Computer Science and Information Engineering}\\
% \small{NTU IoX Research Center}\\
% \small{National Taiwan University}
%}
% \setlength{\topmargin}{-0.5in}
%\setlength{\textheight}{10.1in}
@ -131,7 +116,7 @@
%\newpage
%% \input{todos}
%% \newpage
\twocolumn
%% \twocolumn
\maketitle
\thispagestyle{empty}
@ -139,7 +124,7 @@
\setcounter{page}{1}
% Double space for draft
%\doublespacing
\doublespacing
\input{00Abstract}
\input{01Introduction}
% Related works


BIN
trunk/figures/ThermalAtHome.pdf View File


BIN
trunk/figures/compareToJpeg.pdf View File


BIN
trunk/figures/separate.png View File

Before After
Width: 480  |  Height: 640  |  Size: 20 KiB

Loading…
Cancel
Save