~gerald-mwangi/+junk/Thesis

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian) (format=pdflatex 2015.9.14)  30 APR 2016 21:22
entering extended mode
 restricted \write18 enabled.
 %&-line parsing enabled.
**thesis-gerald.tex
(./thesis-gerald.tex
LaTeX2e <2011/06/27>
Babel <3.9h> and hyphenation patterns for 78 languages loaded.
(/usr/share/texlive/texmf-dist/tex/latex/amscls/amsbook.cls
Document Class: amsbook 2009/07/02 v2.20.1
\linespacing=\dimen102
\normalparindent=\dimen103
\normaltopskip=\skip41
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2013/01/14 v2.14 AMS math features
\@mathmargin=\skip42

For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01

(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks14
\ex@=\dimen104
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen105
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count79
LaTeX Info: Redefining \frac on input line 210.
\uproot@=\count80
\leftroot@=\count81
LaTeX Info: Redefining \overline on input line 306.
\classnum@=\count82
\DOTSCASE@=\count83
LaTeX Info: Redefining \ldots on input line 378.
LaTeX Info: Redefining \dots on input line 381.
LaTeX Info: Redefining \cdots on input line 466.
\Mathstrutbox@=\box26
\strutbox@=\box27
\big@size=\dimen106
LaTeX Font Info:    Redeclaring font encoding OML on input line 566.
LaTeX Font Info:    Redeclaring font encoding OMS on input line 567.
\macc@depth=\count84
\c@MaxMatrixCols=\count85
\dotsspace@=\muskip10
\c@parentequation=\count86
\dspbrk@lvl=\count87
\tag@help=\toks15
\row@=\count88
\column@=\count89
\maxfields@=\count90
\andhelp@=\toks16
\eqnshift@=\dimen107
\alignsep@=\dimen108
\tagshift@=\dimen109
\tagwidth@=\dimen110
\totwidth@=\dimen111
\lineht@=\dimen112
\@envbody=\toks17
\multlinegap=\skip43
\multlinetaggap=\skip44
\mathdisplay@stack=\toks18
LaTeX Info: Redefining \[ on input line 2665.
LaTeX Info: Redefining \] on input line 2666.
)
LaTeX Font Info:    Try loading font information for U+msa on input line 367.

(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info:    Overwriting math alphabet `\mathfrak' in version `bold'
(Font)                  U/euf/m/n --> U/euf/b/n on input line 106.
)
\copyins=\insert233
\abstractbox=\box28
\listisep=\skip45
\c@part=\count91
\c@chapter=\count92
\c@section=\count93
\c@subsection=\count94
\c@subsubsection=\count95
\c@paragraph=\count96
\c@subparagraph=\count97
\c@figure=\count98
\c@table=\count99
\abovecaptionskip=\skip46
\belowcaptionskip=\skip47
\captionindent=\dimen113
\thm@style=\toks19
\thm@bodyfont=\toks20
\thm@headfont=\toks21
\thm@notefont=\toks22
\thm@headpunct=\toks23
\thm@preskip=\skip48
\thm@postskip=\skip49
\thm@headsep=\skip50
\dth@everypar=\toks24
)
(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2008/03/30 v1.1d Input encoding file
\inpenc@prehook=\toks25
\inpenc@posthook=\toks26

(/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def
File: utf8.def 2008/04/05 v1.1m UTF-8 support for inputenc
Now handling font encoding OML ...
... no UTF-8 mapping file for font encoding OML
Now handling font encoding T1 ...
... processing UTF-8 mapping file for font encoding T1

(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu
File: t1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
   defining Unicode char U+00A1 (decimal 161)
   defining Unicode char U+00A3 (decimal 163)
   defining Unicode char U+00AB (decimal 171)
   defining Unicode char U+00BB (decimal 187)
   defining Unicode char U+00BF (decimal 191)
   defining Unicode char U+00C0 (decimal 192)
   defining Unicode char U+00C1 (decimal 193)
   defining Unicode char U+00C2 (decimal 194)
   defining Unicode char U+00C3 (decimal 195)
   defining Unicode char U+00C4 (decimal 196)
   defining Unicode char U+00C5 (decimal 197)
   defining Unicode char U+00C6 (decimal 198)
   defining Unicode char U+00C7 (decimal 199)
   defining Unicode char U+00C8 (decimal 200)
   defining Unicode char U+00C9 (decimal 201)
   defining Unicode char U+00CA (decimal 202)
   defining Unicode char U+00CB (decimal 203)
   defining Unicode char U+00CC (decimal 204)
   defining Unicode char U+00CD (decimal 205)
   defining Unicode char U+00CE (decimal 206)
   defining Unicode char U+00CF (decimal 207)
   defining Unicode char U+00D0 (decimal 208)
   defining Unicode char U+00D1 (decimal 209)
   defining Unicode char U+00D2 (decimal 210)
   defining Unicode char U+00D3 (decimal 211)
   defining Unicode char U+00D4 (decimal 212)
   defining Unicode char U+00D5 (decimal 213)
   defining Unicode char U+00D6 (decimal 214)
   defining Unicode char U+00D8 (decimal 216)
   defining Unicode char U+00D9 (decimal 217)
   defining Unicode char U+00DA (decimal 218)
   defining Unicode char U+00DB (decimal 219)
   defining Unicode char U+00DC (decimal 220)
   defining Unicode char U+00DD (decimal 221)
   defining Unicode char U+00DE (decimal 222)
   defining Unicode char U+00DF (decimal 223)
   defining Unicode char U+00E0 (decimal 224)
   defining Unicode char U+00E1 (decimal 225)
   defining Unicode char U+00E2 (decimal 226)
   defining Unicode char U+00E3 (decimal 227)
   defining Unicode char U+00E4 (decimal 228)
   defining Unicode char U+00E5 (decimal 229)
   defining Unicode char U+00E6 (decimal 230)
   defining Unicode char U+00E7 (decimal 231)
   defining Unicode char U+00E8 (decimal 232)
   defining Unicode char U+00E9 (decimal 233)
   defining Unicode char U+00EA (decimal 234)
   defining Unicode char U+00EB (decimal 235)
   defining Unicode char U+00EC (decimal 236)
   defining Unicode char U+00ED (decimal 237)
   defining Unicode char U+00EE (decimal 238)
   defining Unicode char U+00EF (decimal 239)
   defining Unicode char U+00F0 (decimal 240)
   defining Unicode char U+00F1 (decimal 241)
   defining Unicode char U+00F2 (decimal 242)
   defining Unicode char U+00F3 (decimal 243)
   defining Unicode char U+00F4 (decimal 244)
   defining Unicode char U+00F5 (decimal 245)
   defining Unicode char U+00F6 (decimal 246)
   defining Unicode char U+00F8 (decimal 248)
   defining Unicode char U+00F9 (decimal 249)
   defining Unicode char U+00FA (decimal 250)
   defining Unicode char U+00FB (decimal 251)
   defining Unicode char U+00FC (decimal 252)
   defining Unicode char U+00FD (decimal 253)
   defining Unicode char U+00FE (decimal 254)
   defining Unicode char U+00FF (decimal 255)
   defining Unicode char U+0102 (decimal 258)
   defining Unicode char U+0103 (decimal 259)
   defining Unicode char U+0104 (decimal 260)
   defining Unicode char U+0105 (decimal 261)
   defining Unicode char U+0106 (decimal 262)
   defining Unicode char U+0107 (decimal 263)
   defining Unicode char U+010C (decimal 268)
   defining Unicode char U+010D (decimal 269)
   defining Unicode char U+010E (decimal 270)
   defining Unicode char U+010F (decimal 271)
   defining Unicode char U+0110 (decimal 272)
   defining Unicode char U+0111 (decimal 273)
   defining Unicode char U+0118 (decimal 280)
   defining Unicode char U+0119 (decimal 281)
   defining Unicode char U+011A (decimal 282)
   defining Unicode char U+011B (decimal 283)
   defining Unicode char U+011E (decimal 286)
   defining Unicode char U+011F (decimal 287)
   defining Unicode char U+0130 (decimal 304)
   defining Unicode char U+0131 (decimal 305)
   defining Unicode char U+0132 (decimal 306)
   defining Unicode char U+0133 (decimal 307)
   defining Unicode char U+0139 (decimal 313)
   defining Unicode char U+013A (decimal 314)
   defining Unicode char U+013D (decimal 317)
   defining Unicode char U+013E (decimal 318)
   defining Unicode char U+0141 (decimal 321)
   defining Unicode char U+0142 (decimal 322)
   defining Unicode char U+0143 (decimal 323)
   defining Unicode char U+0144 (decimal 324)
   defining Unicode char U+0147 (decimal 327)
   defining Unicode char U+0148 (decimal 328)
   defining Unicode char U+014A (decimal 330)
   defining Unicode char U+014B (decimal 331)
   defining Unicode char U+0150 (decimal 336)
   defining Unicode char U+0151 (decimal 337)
   defining Unicode char U+0152 (decimal 338)
   defining Unicode char U+0153 (decimal 339)
   defining Unicode char U+0154 (decimal 340)
   defining Unicode char U+0155 (decimal 341)
   defining Unicode char U+0158 (decimal 344)
   defining Unicode char U+0159 (decimal 345)
   defining Unicode char U+015A (decimal 346)
   defining Unicode char U+015B (decimal 347)
   defining Unicode char U+015E (decimal 350)
   defining Unicode char U+015F (decimal 351)
   defining Unicode char U+0160 (decimal 352)
   defining Unicode char U+0161 (decimal 353)
   defining Unicode char U+0162 (decimal 354)
   defining Unicode char U+0163 (decimal 355)
   defining Unicode char U+0164 (decimal 356)
   defining Unicode char U+0165 (decimal 357)
   defining Unicode char U+016E (decimal 366)
   defining Unicode char U+016F (decimal 367)
   defining Unicode char U+0170 (decimal 368)
   defining Unicode char U+0171 (decimal 369)
   defining Unicode char U+0178 (decimal 376)
   defining Unicode char U+0179 (decimal 377)
   defining Unicode char U+017A (decimal 378)
   defining Unicode char U+017B (decimal 379)
   defining Unicode char U+017C (decimal 380)
   defining Unicode char U+017D (decimal 381)
   defining Unicode char U+017E (decimal 382)
   defining Unicode char U+200C (decimal 8204)
   defining Unicode char U+2013 (decimal 8211)
   defining Unicode char U+2014 (decimal 8212)
   defining Unicode char U+2018 (decimal 8216)
   defining Unicode char U+2019 (decimal 8217)
   defining Unicode char U+201A (decimal 8218)
   defining Unicode char U+201C (decimal 8220)
   defining Unicode char U+201D (decimal 8221)
   defining Unicode char U+201E (decimal 8222)
   defining Unicode char U+2030 (decimal 8240)
   defining Unicode char U+2031 (decimal 8241)
   defining Unicode char U+2039 (decimal 8249)
   defining Unicode char U+203A (decimal 8250)
   defining Unicode char U+2423 (decimal 9251)
)
Now handling font encoding OT1 ...
... processing UTF-8 mapping file for font encoding OT1

(/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu
File: ot1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
   defining Unicode char U+00A1 (decimal 161)
   defining Unicode char U+00A3 (decimal 163)
   defining Unicode char U+00B8 (decimal 184)
   defining Unicode char U+00BF (decimal 191)
   defining Unicode char U+00C5 (decimal 197)
   defining Unicode char U+00C6 (decimal 198)
   defining Unicode char U+00D8 (decimal 216)
   defining Unicode char U+00DF (decimal 223)
   defining Unicode char U+00E6 (decimal 230)
   defining Unicode char U+00EC (decimal 236)
   defining Unicode char U+00ED (decimal 237)
   defining Unicode char U+00EE (decimal 238)
   defining Unicode char U+00EF (decimal 239)
   defining Unicode char U+00F8 (decimal 248)
   defining Unicode char U+0131 (decimal 305)
   defining Unicode char U+0141 (decimal 321)
   defining Unicode char U+0142 (decimal 322)
   defining Unicode char U+0152 (decimal 338)
   defining Unicode char U+0153 (decimal 339)
   defining Unicode char U+2013 (decimal 8211)
   defining Unicode char U+2014 (decimal 8212)
   defining Unicode char U+2018 (decimal 8216)
   defining Unicode char U+2019 (decimal 8217)
   defining Unicode char U+201C (decimal 8220)
   defining Unicode char U+201D (decimal 8221)
)
Now handling font encoding OMS ...
... processing UTF-8 mapping file for font encoding OMS

(/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu
File: omsenc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
   defining Unicode char U+00A7 (decimal 167)
   defining Unicode char U+00B6 (decimal 182)
   defining Unicode char U+00B7 (decimal 183)
   defining Unicode char U+2020 (decimal 8224)
   defining Unicode char U+2021 (decimal 8225)
   defining Unicode char U+2022 (decimal 8226)
)
Now handling font encoding OMX ...
... no UTF-8 mapping file for font encoding OMX
Now handling font encoding U ...
... no UTF-8 mapping file for font encoding U
   defining Unicode char U+00A9 (decimal 169)
   defining Unicode char U+00AA (decimal 170)
   defining Unicode char U+00AE (decimal 174)
   defining Unicode char U+00BA (decimal 186)
   defining Unicode char U+02C6 (decimal 710)
   defining Unicode char U+02DC (decimal 732)
   defining Unicode char U+200C (decimal 8204)
   defining Unicode char U+2026 (decimal 8230)
   defining Unicode char U+2122 (decimal 8482)
   defining Unicode char U+2423 (decimal 9251)
))
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package

(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def
File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file
LaTeX Font Info:    Redeclaring font encoding T1 on input line 43.
))
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/palatino.sty
Package: palatino 2005/04/12 PSNFSS-v9.2a (SPQR) 
)
(/usr/share/texlive/texmf-dist/tex/latex/doublestroke/dsfont.sty
Package: dsfont 1995/08/01 v0.1 Double stroke roman fonts
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)

(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks27
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)

(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: pdftex.def on input line 91.

(/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX

(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count100
))
\Gin@req@height=\dimen114
\Gin@req@width=\dimen115
)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
)
(/usr/share/texlive/texmf-dist/tex/latex/subfig/subfig.sty
Package: subfig 2005/06/28 ver: 1.3 subfig package

(/usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2013/05/02 v3.3-89 Customizing captions (AR)

(/usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2013/05/02 v1.6-88 caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 57.
\captionmargin=\dimen116
\captionmargin@=\dimen117
\captionwidth=\dimen118
\caption@tempdima=\dimen119
\caption@indent=\dimen120
\caption@parindent=\dimen121
\caption@hangindent=\dimen122
)
Package caption Info: AMS or SMF document class.
\c@ContinuedFloat=\count101
)
\c@KVtest=\count102
\sf@farskip=\skip51
\sf@captopadj=\dimen123
\sf@capskip=\skip52
\sf@nearskip=\skip53
\c@subfigure=\count103
\c@subfigure@save=\count104
\c@lofdepth=\count105
\c@subtable=\count106
\c@subtable@save=\count107
\c@lotdepth=\count108
\sf@top=\skip54
\sf@bottom=\skip55
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/bm.sty
Package: bm 2004/02/26 v1.1c Bold Symbol Support (DPC/FMi)
\symboldoperators=\mathgroup6
\symboldletters=\mathgroup7
\symboldsymbols=\mathgroup8
LaTeX Font Info:    Redeclaring math alphabet \mathbf on input line 138.
LaTeX Info: Redefining \bm on input line 204.
)
(/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty
\bigstrutjot=\dimen124
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf.sty
Package: epstopdf 2010/02/09 v2.5 Conversion with epstopdf on the fly (HO)

(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf

(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty
Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)

(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty
Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
))
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)

(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)

(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)

(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package etexcmds Info: Could not find \expanded.
(etexcmds)             That can mean that you are not using pdfTeX 1.50 or
(etexcmds)             that some package has redefined \expanded.
(etexcmds)             In the latter case, load this package earlier.
)))
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
)

(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
Package grfext Info: Graphics extension search list:
(grfext)             [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext)             \AppendGraphicsExtensions on input line 452.

(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
)))
(/usr/share/texlive/texmf-dist/tex/latex/algorithms/algorithm.sty
Package: algorithm 2009/08/24 v0.1 Document Style `algorithm' - floating enviro
nment

(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count109
\float@exts=\toks28
\float@box=\box29
\@float@everytoks=\toks29
\@floatcapt=\box30
)
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
\@float@every@algorithm=\toks30
\c@algorithm=\count110
)
(/usr/share/texlive/texmf-dist/tex/latex/algorithmicx/algpseudocode.sty
Package: algpseudocode 

(/usr/share/texlive/texmf-dist/tex/latex/algorithmicx/algorithmicx.sty
Package: algorithmicx 2005/04/27 v1.2 Algorithmicx

Document Style algorithmicx 1.2 - a greatly improved `algorithmic' style
\c@ALG@line=\count111
\c@ALG@rem=\count112
\c@ALG@nested=\count113
\ALG@tlm=\skip56
\ALG@thistlm=\skip57
\c@ALG@Lnr=\count114
\c@ALG@blocknr=\count115
\c@ALG@storecount=\count116
\c@ALG@tmpcounter=\count117
\ALG@tmplength=\skip58
)
Document Style - pseudocode environments for use with the `algorithmicx' style
) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2010/09/12 v5.6 Page Geometry

(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
)
(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\Gm@cnth=\count118
\Gm@cntv=\count119
\c@Gm@tempcnt=\count120
\Gm@bindingoffset=\dimen125
\Gm@wd@mp=\dimen126
\Gm@odd@mp=\dimen127
\Gm@even@mp=\dimen128
\Gm@layoutwidth=\dimen129
\Gm@layoutheight=\dimen130
\Gm@layouthoffset=\dimen131
\Gm@layoutvoffset=\dimen132
\Gm@dimlist=\toks31
)

LaTeX Warning: Unused global option(s):
    [english,singlespacing].

(./thesis-gerald.aux

LaTeX Warning: Label `eq:flowDataTerm' multiply defined.


LaTeX Warning: Label `tab:rw-epeAETV' multiply defined.

)
\openout1 = `thesis-gerald.aux'.

LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 115.
LaTeX Font Info:    ... okay on input line 115.
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 115.
LaTeX Font Info:    ... okay on input line 115.
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 115.
LaTeX Font Info:    ... okay on input line 115.
LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 115.
LaTeX Font Info:    ... okay on input line 115.
LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 115.
LaTeX Font Info:    ... okay on input line 115.
LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 115.
LaTeX Font Info:    ... okay on input line 115.
LaTeX Font Info:    Try loading font information for T1+ppl on input line 115.
 (/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1ppl.fd
File: t1ppl.fd 2001/06/04 font definitions for T1/ppl.
)
LaTeX Font Info:    Try loading font information for U+msa on input line 115.

(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info:    Try loading font information for U+msb on input line 115.

(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
(/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count121
\scratchdimen=\dimen133
\scratchbox=\box31
\nofMPsegments=\count122
\nofMParguments=\count123
\everyMPshowfont=\toks32
\MPscratchCnt=\count124
\MPscratchDim=\dimen134
\MPnumerator=\count125
\makeMPintoPDFobject=\count126
\everyMPtoPDFconversion=\toks33
)
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: subfig package v1.3 is loaded.
Package caption Info: float package is loaded.
Package caption Info: End \AtBeginDocument code.

*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: twoside 
* h-part:(L,W,R)=(85.35826pt, 426.79135pt, 85.35826pt)
* v-part:(T,H,B)=(85.35826pt, 674.33032pt, 85.35826pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=426.79135pt
* \textheight=674.33032pt
* \oddsidemargin=13.08827pt
* \evensidemargin=13.08827pt
* \topmargin=-8.91173pt
* \headheight=8.0pt
* \headsep=14.0pt
* \topskip=10.0pt
* \footskip=18.0pt
* \marginparwidth=90.0pt
* \marginparsep=11.0pt
* \columnsep=10.0pt
* \skip\footins=7.0pt plus 11.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidetrue
* \@mparswitchtrue
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)

Contents
LaTeX Font Info:    Font shape `T1/ppl/bx/n' in size <14.4> not available
(Font)              Font shape `T1/ppl/b/n' tried instead on input line 222.
(./thesis-gerald.toc)
\tf@toc=\write3
\openout3 = `thesis-gerald.toc'.

 [1




{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
(./Chapters/Background/Chapter2.tex [2


]
Chapter 1
LaTeX Font Info:    Font shape `T1/ppl/bx/n' in size <10.95> not available
(Font)              Font shape `T1/ppl/b/n' tried instead on input line 3.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModalOpti
calFlow/text6945.png, id=13, 279.28069pt x 274.38101pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModa
lOpticalFlow/text6945.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModal
OpticalFlow/text6945.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/MultiModalOpticalFlow/text6945.png used on input line 6.
(pdftex.def)             Requested size: 192.0548pt x 188.69508pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModalOpti
calFlow/thermo-low.png, id=15, 312.16624pt x 275.0275pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModa
lOpticalFlow/thermo-low.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModal
OpticalFlow/thermo-low.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/MultiModalOpticalFlow/thermo-low.png used on input line 6.
(pdftex.def)             Requested size: 192.0548pt x 169.21014pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModalOpti
calFlow/phase-thermo_0000-cropped.png, id=16, 313.17pt x 274.02374pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModa
lOpticalFlow/phase-thermo_0000-cropped.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModal
OpticalFlow/phase-thermo_0000-cropped.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/MultiModalOpticalFlow/phase-thermo_0000-cropped.png used on input lin
e 9.
(pdftex.def)             Requested size: 192.0548pt x 168.0532pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModalOpti
calFlow/grayscale-cropped.png, id=17, 673.51625pt x 581.17125pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModa
lOpticalFlow/grayscale-cropped.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModal
OpticalFlow/grayscale-cropped.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/MultiModalOpticalFlow/grayscale-cropped.png used on input line 9.
(pdftex.def)             Requested size: 192.0548pt x 165.7242pt.


LaTeX Warning: Citation `Bhattacharya2009' on page 3 undefined on input line 60
.


LaTeX Warning: Reference `YezziZoelleiVarJointSegRegGeomCont' on page 3 undefin
ed on input line 61.

[3]

LaTeX Warning: Citation `Horn-Schunck' on page 4 undefined on input line 72.


LaTeX Warning: Citation `LukasKanadeImageReg' on page 4 undefined on input line
 72.


LaTeX Warning: Citation `Horn-Schunck' on page 4 undefined on input line 73.


LaTeX Warning: Citation `BlackAnandanRobustOpticalFlow' on page 4 undefined on 
input line 82.


LaTeX Warning: Citation `SunRothOpticalFlowCVPR2010' on page 4 undefined on inp
ut line 82.


LaTeX Warning: Citation `MumfordShah' on page 4 undefined on input line 83.

[4 </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModalO
pticalFlow/text6945.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalF
lowResults/MultiModalOpticalFlow/thermo-low.png> </home/gerald/Documents/Thesis
/Figures/ChapterOpticalFlowResults/MultiModalOpticalFlow/phase-thermo_0000-crop
ped.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Multi
ModalOpticalFlow/grayscale-cropped.png (PNG copy)>]

LaTeX Warning: Citation `RocheCorrRatio' on page 5 undefined on input line 106.



LaTeX Warning: Citation `RocheCorrRatio' on page 5 undefined on input line 110.


[5]

LaTeX Warning: Citation `RocheCorrRatio' on page 6 undefined on input line 128.



LaTeX Warning: Reference `sec:ImageRegistratuion' on page 6 undefined on input 
line 135.

) (./Chapters/Background/ChapterImageRegistration.tex
</home/gerald/Documents/Thesis/Figures/ImageRegistration/cameragrid.png, id=37,
 521.95pt x 464.134pt>
File: /home/gerald/Documents/Thesis/Figures/ImageRegistration/cameragrid.png Gr
aphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ImageRegistration/cameragrid.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ImageRegistratio
n/cameragrid.png used on input line 37.
(pdftex.def)             Requested size: 191.97957pt x 170.71652pt.

</home/gerald/Documents/Thesis/Figures/ImageRegistration/Hardiepointspreadfunct
ion.png, id=38, 797.98125pt x 644.4075pt>
File: /home/gerald/Documents/Thesis/Figures/ImageRegistration/Hardiepointspread
function.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ImageRegistration/Hardiepointspreadf
unction.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ImageRegistratio
n/Hardiepointspreadfunction.png used on input line 38.
(pdftex.def)             Requested size: 211.40314pt x 170.71652pt.


LaTeX Warning: Citation `HardieInfraRedSuperRes' on page 6 undefined on input l
ine 41.


LaTeX Warning: Citation `HardieInfraRedSuperRes' on page 6 undefined on input l
ine 41.


LaTeX Warning: Citation `HardieInfraRedSuperRes' on page 6 undefined on input l
ine 52.

[6]

LaTeX Warning: Citation `HardieSpacialImageResEnhancement' on page 7 undefined 
on input line 60.


LaTeX Warning: Citation `HardieSpacialImageResEnhancement' on page 7 undefined 
on input line 67.


LaTeX Warning: Citation `HardieSpacialImageResEnhancement' on page 7 undefined 
on input line 69.

[7 </home/gerald/Documents/Thesis/Figures/ImageRegistration/cameragrid.png (PNG
 copy)> </home/gerald/Documents/Thesis/Figures/ImageRegistration/Hardiepointspr
eadfunction.png>]

LaTeX Warning: Citation `HardieSpacialImageResEnhancement' on page 8 undefined 
on input line 93.


LaTeX Warning: Citation `ZhangSpatialResEnhWavelet' on page 8 undefined on inpu
t line 98.


LaTeX Font Warning: Command \tiny invalid in math mode on input line 103.


LaTeX Font Warning: Command \tiny invalid in math mode on input line 103.


LaTeX Font Warning: Command \tiny invalid in math mode on input line 103.


LaTeX Font Warning: Command \tiny invalid in math mode on input line 103.


Overfull \hbox (1.98878pt too wide) in paragraph at lines 105--110
[]\T1/ppl/m/n/10.95 The key is-sue is that this method re-quires both modal-i-t
ies, $\OML/cmm/m/it/10.95 I[]$ \T1/ppl/m/n/10.95 and $\OML/cmm/m/it/10.95 y$\T1
/ppl/m/n/10.95 , to be co-registered.
 []

) (./Chapters/Background/ChapterLieGroupNoether.tex
</home/gerald/Documents/Thesis/Figures/ChapterLieGroupNoether/TransformPaths-pr
es-gprime.jpg, id=48, 1927.2pt x 1729.46124pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterLieGroupNoether/TransformPat
hs-pres-gprime.jpg Graphic file (type jpg)

<use /home/gerald/Documents/Thesis/Figures/ChapterLieGroupNoether/TransformPath
s-pres-gprime.jpg>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterLieGroupN
oether/TransformPaths-pres-gprime.jpg used on input line 5.
(pdftex.def)             Requested size: 158.50192pt x 142.26378pt.

</home/gerald/Documents/Thesis/Figures/ChapterLieGroupNoether/TransformPaths-pr
es-morphed-gprime.jpg, id=49, 963.6pt x 864.22874pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterLieGroupNoether/TransformPat
hs-pres-morphed-gprime.jpg Graphic file (type jpg)

<use /home/gerald/Documents/Thesis/Figures/ChapterLieGroupNoether/TransformPath
s-pres-morphed-gprime.jpg>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterLieGroupN
oether/TransformPaths-pres-morphed-gprime.jpg used on input line 6.
(pdftex.def)             Requested size: 158.61955pt x 142.26378pt.


LaTeX Warning: Citation `HornSchunck' on page 8 undefined on input line 14.


LaTeX Warning: Reference `eq:HornSchunck' on page 8 undefined on input line 14.


[8 </home/gerald/Documents/Thesis/Figures/ChapterLieGroupNoether/TransformPaths
-pres-gprime.jpg> </home/gerald/Documents/Thesis/Figures/ChapterLieGroupNoether
/TransformPaths-pres-morphed-gprime.jpg>] [9] [10]
LaTeX Font Info:    Try loading font information for U+dsrom on input line 138.


(/usr/share/texlive/texmf-dist/tex/latex/doublestroke/Udsrom.fd
File: Udsrom.fd 1995/08/01 v0.1 Double stroke roman font definitions
)
Overfull \hbox (4.35245pt too wide) in paragraph at lines 228--232
[]\T1/ppl/m/n/10.95 The so-lu-tion space $\OML/cmm/m/it/10.95 A$ \T1/ppl/m/n/10
.95 of $\OML/cmm/m/it/10.95 P[] []$ \T1/ppl/m/n/10.95 is too triv-ial for most 
real ap-pli-ca-tions, since $\OML/cmm/m/it/10.95 P[] []$
 []

[11]

LaTeX Warning: Citation `NoetherTheoremDeu' on page 12 undefined on input line 
263.


LaTeX Warning: Citation `NoetherTheroemEng' on page 12 undefined on input line 
263.

[12]

LaTeX Warning: Citation `Horn-Schunck' on page 13 undefined on input line 317.


LaTeX Warning: Citation `NagelEnkelmannAnisSmoothOptFlow' on page 13 undefined 
on input line 325.

[13]

LaTeX Warning: Citation `RudinOsherFatemiTotalVariation' on page 14 undefined o
n input line 335.


LaTeX Warning: Citation `OsherRudinShockFilter' on page 14 undefined on input l
ine 335.


LaTeX Warning: Citation `RudinShockFilter' on page 14 undefined on input line 3
35.


LaTeX Warning: Citation `RudinOsherFatemiTotalVariation' on page 14 undefined o
n input line 340.


LaTeX Warning: Citation `BrediesMathemBildverarbeitung' on page 14 undefined on
 input line 347.


LaTeX Warning: Citation `BrediesMathemBildverarbeitung' on page 14 undefined on
 input line 372.

[14]

! Package amsmath Error: Erroneous nesting of equation structures;
(amsmath)                trying to recover with `aligned'.

See the amsmath package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.429 			      \end{flalign}
                            \right.
Try typing  <return>  to proceed.
If that doesn't work, type  X <return>  to quit.

[15]) (./Chapters/Maintext/ChapterStructureTensorPrior.tex [16]
Chapter 2

LaTeX Warning: Citation `Bigun1987' on page 17 undefined on input line 4.


LaTeX Warning: Reference `eq:StructureTensorConstraint' on page 17 undefined on
 input line 35.


LaTeX Warning: Citation `BigunBook' on page 17 undefined on input line 49.

[17


]

LaTeX Warning: Citation `BigunBook' on page 18 undefined on input line 98.


LaTeX Warning: Reference `CauchyRiemann' on page 18 undefined on input line 102
.

[18]

LaTeX Warning: Reference `StructureTensConstraint' on page 19 undefined on inpu
t line 133.


LaTeX Warning: Citation `BigunBook' on page 19 undefined on input line 133.


LaTeX Warning: Citation `BigunBook' on page 19 undefined on input line 153.


LaTeX Warning: Citation `BigunBook' on page 19 undefined on input line 186.

[19] [20]
</home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/radi
alsymImage.jpg, id=95, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results
/radialsymImage.jpg Graphic file (type jpg)

<use /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/
radialsymImage.jpg>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterStructure
TensorPrior/Results/radialsymImage.jpg used on input line 263.
(pdftex.def)             Requested size: 151.41197pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/rotd
ilDet-rad-30-phi-45.jpg, id=96, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results
/rotdilDet-rad-30-phi-45.jpg Graphic file (type jpg)

<use /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/
rotdilDet-rad-30-phi-45.jpg>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterStructure
TensorPrior/Results/rotdilDet-rad-30-phi-45.jpg used on input line 265.
(pdftex.def)             Requested size: 151.41197pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/rotd
illambda1-rad-30-phi-45.jpg, id=97, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results
/rotdillambda1-rad-30-phi-45.jpg Graphic file (type jpg)

<use /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/
rotdillambda1-rad-30-phi-45.jpg>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterStructure
TensorPrior/Results/rotdillambda1-rad-30-phi-45.jpg used on input line 269.
(pdftex.def)             Requested size: 151.41197pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/rotd
illambda2-rad-30-phi-45.jpg, id=98, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results
/rotdillambda2-rad-30-phi-45.jpg Graphic file (type jpg)

<use /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/
rotdillambda2-rad-30-phi-45.jpg>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterStructure
TensorPrior/Results/rotdillambda2-rad-30-phi-45.jpg used on input line 271.
(pdftex.def)             Requested size: 151.41197pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/rotd
ilDet-rad-30-phi-90.jpg, id=99, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results
/rotdilDet-rad-30-phi-90.jpg Graphic file (type jpg)

<use /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/
rotdilDet-rad-30-phi-90.jpg>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterStructure
TensorPrior/Results/rotdilDet-rad-30-phi-90.jpg used on input line 275.
(pdftex.def)             Requested size: 151.41197pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/rotd
illambda1-rad-30-phi-90.jpg, id=100, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results
/rotdillambda1-rad-30-phi-90.jpg Graphic file (type jpg)

<use /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/
rotdillambda1-rad-30-phi-90.jpg>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterStructure
TensorPrior/Results/rotdillambda1-rad-30-phi-90.jpg used on input line 277.
(pdftex.def)             Requested size: 151.41197pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/rotd
illambda2-rad-30-phi-90.jpg, id=101, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results
/rotdillambda2-rad-30-phi-90.jpg Graphic file (type jpg)

<use /home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/
rotdillambda2-rad-30-phi-90.jpg>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterStructure
TensorPrior/Results/rotdillambda2-rad-30-phi-90.jpg used on input line 281.
(pdftex.def)             Requested size: 151.41197pt x 113.81102pt.
) (./Chapters/Maintext/ChapterOpticalFlow.tex
[21] [22 </home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Res
ults/radialsymImage.jpg> </home/gerald/Documents/Thesis/Figures/ChapterStructur
eTensorPrior/Results/rotdilDet-rad-30-phi-45.jpg> </home/gerald/Documents/Thesi
s/Figures/ChapterStructureTensorPrior/Results/rotdillambda1-rad-30-phi-45.jpg> 
</home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/rotd
illambda2-rad-30-phi-45.jpg> </home/gerald/Documents/Thesis/Figures/ChapterStru
ctureTensorPrior/Results/rotdilDet-rad-30-phi-90.jpg> </home/gerald/Documents/T
hesis/Figures/ChapterStructureTensorPrior/Results/rotdillambda1-rad-30-phi-90.j
pg> </home/gerald/Documents/Thesis/Figures/ChapterStructureTensorPrior/Results/
rotdillambda2-rad-30-phi-90.jpg>]
Chapter 3

LaTeX Warning: Citation `HardieSpacialImageResEnhancement' on page 23 undefined
 on input line 8.


LaTeX Warning: Citation `sec:ImageFusion' on page 23 undefined on input line 14
.


LaTeX Warning: Reference `eq:thermoSolution2' on page 23 undefined on input lin
e 32.


LaTeX Warning: Citation `Osher2005' on page 23 undefined on input line 50.


LaTeX Warning: Citation `Chambolle2004' on page 23 undefined on input line 50.

[23


]
</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-whole-histo.png, id=112, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-whole-histo.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-whole-histo.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-whole-histo.png used on input line 78.
(pdftex.def)             Requested size: 227.62523pt x 170.71652pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-328-261-im0.png, id=113, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-328-261-im0.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-328-261-im0.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-328-261-im0.png used on input line 85.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-328-261-thermo.png, id=114, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-328-261-thermo.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-328-261-thermo.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-328-261-thermo.png used on input line 85.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-328-261-histo.png, id=115, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-328-261-histo.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-328-261-histo.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-328-261-histo.png used on input line 85.
(pdftex.def)             Requested size: 75.86919pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-555-214-im0.png, id=116, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-555-214-im0.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-555-214-im0.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-555-214-im0.png used on input line 86.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-555-214-thermo.png, id=117, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-555-214-thermo.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-555-214-thermo.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-555-214-thermo.png used on input line 86.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-555-214-histo.png, id=118, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-555-214-histo.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-555-214-histo.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-555-214-histo.png used on input line 86.
(pdftex.def)             Requested size: 75.86919pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/likelih
ood/conditional-spatialstandarddev-likeli5.png, id=119, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/li
kelihood/conditional-spatialstandarddev-likeli5.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/lik
elihood/conditional-spatialstandarddev-likeli5.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/likelihood/conditional-spatialstandarddev-likeli5.png used on 
input line 92.
(pdftex.def)             Requested size: 151.74721pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/likelih
ood/conditional-spatialstandarddev-likeli23.png, id=120, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/li
kelihood/conditional-spatialstandarddev-likeli23.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/lik
elihood/conditional-spatialstandarddev-likeli23.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/likelihood/conditional-spatialstandarddev-likeli23.png used on
 input line 93.
(pdftex.def)             Requested size: 151.74721pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/likelih
ood/conditional-spatialstandarddev-likeli33.png, id=121, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/li
kelihood/conditional-spatialstandarddev-likeli33.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/lik
elihood/conditional-spatialstandarddev-likeli33.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/likelihood/conditional-spatialstandarddev-likeli33.png used on
 input line 94.
(pdftex.def)             Requested size: 151.74721pt x 113.81102pt.

Overfull \hbox (28.45027pt too wide) in paragraph at lines 92--97
 [][][][] 
 []

[24 </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-whole-histo.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/
ChapterOpticalFlowResults/Edevis/roi-histo/cfrp-roi-328-261-im0.png (PNG copy)>
 </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-hi
sto/cfrp-roi-328-261-thermo.png (PNG copy)> </home/gerald/Documents/Thesis/Figu
res/ChapterOpticalFlowResults/Edevis/roi-histo/cfrp-roi-328-261-histo.png (PNG 
copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/
roi-histo/cfrp-roi-555-214-im0.png (PNG copy)> </home/gerald/Documents/Thesis/F
igures/ChapterOpticalFlowResults/Edevis/roi-histo/cfrp-roi-555-214-thermo.png (
PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Ede
vis/roi-histo/cfrp-roi-555-214-histo.png (PNG copy)>] [25 </home/gerald/Documen
ts/Thesis/Figures/ChapterOpticalFlowResults/Edevis/likelihood/conditional-spati
alstandarddev-likeli5.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/Ch
apterOpticalFlowResults/Edevis/likelihood/conditional-spatialstandarddev-likeli
23.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowRes
ults/Edevis/likelihood/conditional-spatialstandarddev-likeli33.png (PNG copy)>]

LaTeX Warning: Reference `chap:optFlowResults' on page 26 undefined on input li
ne 143.

) (./Chapters/Maintext/ChapterOpticalFlowResults.tex [26]
Chapter 4

LaTeX Warning: Reference `fig:hyd1' on page 27 undefined on input line 130.


LaTeX Warning: Reference `fig:hyd5' on page 27 undefined on input line 130.


LaTeX Warning: Reference `fig:hyd1-TV' on page 27 undefined on input line 142.


LaTeX Warning: Reference `fig:hyd5-TV' on page 27 undefined on input line 142.

[27


] [28]
</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-whole.png, id=139, 586.19pt x 389.455pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-whole.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-whole.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-whole.png used on input line 180.
(pdftex.def)             Requested size: 171.29665pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-whole-gt.png, id=140, 586.19pt x 389.455pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-whole-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-whole-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-whole-gt.png used on input line 182.
(pdftex.def)             Requested size: 171.29665pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-whole-flowL1.png, id=141, 586.19pt x 389.455pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-whole-flowL1.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-whole-flowL1.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-whole-flowL1.png used on input line 186.
(pdftex.def)             Requested size: 171.29665pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-whole-flow11.png, id=142, 586.19pt x 389.455pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-whole-flow11.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-whole-flow11.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-whole-flow11.png used on input line 188.
(pdftex.def)             Requested size: 171.29665pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-whole.png, id=143, 586.19pt x 389.455pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-whole.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-whole.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-whole.png used on input line 195.
(pdftex.def)             Requested size: 171.29665pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-whole-gt.png, id=144, 586.19pt x 389.455pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-whole-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-whole-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-whole-gt.png used on input line 197.
(pdftex.def)             Requested size: 171.29665pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-whole-flowL1.png, id=145, 586.19pt x 389.455pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-whole-flowL1.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-whole-flowL1.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-whole-flowL1.png used on input line 201.
(pdftex.def)             Requested size: 171.29665pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-whole-flow11.png, id=146, 586.19pt x 389.455pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-whole-flow11.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-whole-flow11.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-whole-flow11.png used on input line 203.
(pdftex.def)             Requested size: 171.29665pt x 113.81102pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWwheel-fsize11-roi.png, id=147, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWwheel-fsize11-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWwheel-fsize11-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWwheel-fsize11-roi.png used on input line 
217.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWwheel-fsize11-epe.png, id=148, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWwheel-fsize11-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWwheel-fsize11-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWwheel-fsize11-epe.png used on input line 
217.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWwheel-fsize11-cos.png, id=149, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWwheel-fsize11-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWwheel-fsize11-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWwheel-fsize11-cos.png used on input line 
217.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWwheel-fsize11-roi-flow.png, id=150, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWwheel-fsize11-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWwheel-fsize11-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWwheel-fsize11-roi-flow.png used on input 
line 217.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWwheel-fsize11-roi-gt.png, id=151, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWwheel-fsize11-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWwheel-fsize11-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWwheel-fsize11-roi-gt.png used on input li
ne 217.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWboxcorner-fsize11-roi.png, id=152, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWboxcorner-fsize11-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWboxcorner-fsize11-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWboxcorner-fsize11-roi.png used on input l
ine 218.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWboxcorner-fsize11-epe.png, id=153, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWboxcorner-fsize11-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWboxcorner-fsize11-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWboxcorner-fsize11-epe.png used on input l
ine 218.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWboxcorner-fsize11-cos.png, id=154, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWboxcorner-fsize11-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWboxcorner-fsize11-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWboxcorner-fsize11-cos.png used on input l
ine 218.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWboxcorner-fsize11-roi-flow.png, id=155, 101.37875pt x 101.37875pt
>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWboxcorner-fsize11-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWboxcorner-fsize11-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWboxcorner-fsize11-roi-flow.png used on in
put line 218.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWboxcorner-fsize11-roi-gt.png, id=156, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWboxcorner-fsize11-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWboxcorner-fsize11-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWboxcorner-fsize11-roi-gt.png used on inpu
t line 218.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

Overfull \hbox (17.84682pt too wide) in paragraph at lines 215--221
 [][] 
 []


</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWcurtain2-fsize11-roi.png, id=157, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWcurtain2-fsize11-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWcurtain2-fsize11-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWcurtain2-fsize11-roi.png used on input li
ne 235.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWcurtain2-fsize11-epe.png, id=158, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWcurtain2-fsize11-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWcurtain2-fsize11-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWcurtain2-fsize11-epe.png used on input li
ne 235.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWcurtain2-fsize11-cos.png, id=159, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWcurtain2-fsize11-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWcurtain2-fsize11-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWcurtain2-fsize11-cos.png used on input li
ne 235.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWcurtain2-fsize11-roi-flow.png, id=160, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWcurtain2-fsize11-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWcurtain2-fsize11-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWcurtain2-fsize11-roi-flow.png used on inp
ut line 235.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWcurtain2-fsize11-roi-gt.png, id=161, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWcurtain2-fsize11-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWcurtain2-fsize11-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWcurtain2-fsize11-roi-gt.png used on input
 line 235.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWblanket2-fsize11-roi.png, id=162, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWblanket2-fsize11-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWblanket2-fsize11-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWblanket2-fsize11-roi.png used on input li
ne 236.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWblanket2-fsize11-epe.png, id=163, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWblanket2-fsize11-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWblanket2-fsize11-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWblanket2-fsize11-epe.png used on input li
ne 236.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWblanket2-fsize11-cos.png, id=164, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWblanket2-fsize11-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWblanket2-fsize11-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWblanket2-fsize11-cos.png used on input li
ne 236.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWblanket2-fsize11-roi-flow.png, id=165, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWblanket2-fsize11-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWblanket2-fsize11-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWblanket2-fsize11-roi-flow.png used on inp
ut line 236.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowST-NEWblanket2-fsize11-roi-gt.png, id=166, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowST-NEWblanket2-fsize11-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWblanket2-fsize11-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowST-NEWblanket2-fsize11-roi-gt.png used on input
 line 236.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

Overfull \hbox (17.84682pt too wide) in paragraph at lines 233--239
 [][] 
 []


</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWwheel-roi.png, id=167, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWwheel-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWwheel-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWwheel-roi.png used on input line 246.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWwheel-epe.png, id=168, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWwheel-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWwheel-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWwheel-epe.png used on input line 246.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWwheel-cos.png, id=169, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWwheel-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWwheel-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWwheel-cos.png used on input line 246.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWwheel-L1-roi-flow.png, id=170, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWwheel-L1-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWwheel-L1-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWwheel-L1-roi-flow.png used on input line 
246.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWwheel-roi-gt.png, id=171, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWwheel-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWwheel-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWwheel-roi-gt.png used on input line 246.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWboxcorner-roi.png, id=172, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWboxcorner-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWboxcorner-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWboxcorner-roi.png used on input line 247.

(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWboxcorner-epe.png, id=173, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWboxcorner-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWboxcorner-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWboxcorner-epe.png used on input line 247.

(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWboxcorner-cos.png, id=174, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWboxcorner-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWboxcorner-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWboxcorner-cos.png used on input line 247.

(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWboxcorner-L1-roi-flow.png, id=175, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWboxcorner-L1-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWboxcorner-L1-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWboxcorner-L1-roi-flow.png used on input l
ine 247.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWboxcorner-roi-gt.png, id=176, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWboxcorner-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWboxcorner-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWboxcorner-roi-gt.png used on input line 2
47.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

Overfull \hbox (17.84682pt too wide) in paragraph at lines 244--252
 [][] 
 []


</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWcurtain2-roi.png, id=177, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWcurtain2-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWcurtain2-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWcurtain2-roi.png used on input line 258.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWcurtain2-epe.png, id=178, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWcurtain2-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWcurtain2-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWcurtain2-epe.png used on input line 258.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWcurtain2-cos.png, id=179, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWcurtain2-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWcurtain2-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWcurtain2-cos.png used on input line 258.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWcurtain2-L1-roi-flow.png, id=180, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWcurtain2-L1-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWcurtain2-L1-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWcurtain2-L1-roi-flow.png used on input li
ne 258.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWcurtain2-roi-gt.png, id=181, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWcurtain2-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWcurtain2-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWcurtain2-roi-gt.png used on input line 25
8.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWblanket2-roi.png, id=182, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWblanket2-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWblanket2-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWblanket2-roi.png used on input line 259.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWblanket2-epe.png, id=183, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWblanket2-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWblanket2-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWblanket2-epe.png used on input line 259.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWblanket2-cos.png, id=184, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWblanket2-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWblanket2-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWblanket2-cos.png used on input line 259.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWblanket2-L1-roi-flow.png, id=185, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWblanket2-L1-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWblanket2-L1-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWblanket2-L1-roi-flow.png used on input li
ne 259.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWblanket2-roi-gt.png, id=186, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWha
le/frame-flowL1-NEWblanket2-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowL1-NEWblanket2-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/RubberWhale/frame-flowL1-NEWblanket2-roi-gt.png used on input line 25
9.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

Overfull \hbox (17.84682pt too wide) in paragraph at lines 256--262
 [][] 
 []


</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd3-fsize11-roi.png, id=187, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd3-fsize11-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd3-fsize11-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd3-fsize11-roi.png used on input line 268
.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd3-fsize11-epe.png, id=188, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd3-fsize11-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd3-fsize11-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd3-fsize11-epe.png used on input line 268
.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd3-fsize11-cos.png, id=189, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd3-fsize11-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd3-fsize11-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd3-fsize11-cos.png used on input line 268
.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd3-fsize11-roi-flow.png, id=190, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd3-fsize11-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd3-fsize11-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd3-fsize11-roi-flow.png used on input lin
e 268.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd3-fsize11-roi-gt.png, id=191, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd3-fsize11-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd3-fsize11-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd3-fsize11-roi-gt.png used on input line 
268.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd4-fsize11-roi.png, id=192, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd4-fsize11-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd4-fsize11-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd4-fsize11-roi.png used on input line 269
.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd4-fsize11-epe.png, id=193, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd4-fsize11-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd4-fsize11-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd4-fsize11-epe.png used on input line 269
.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd4-fsize11-cos.png, id=194, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd4-fsize11-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd4-fsize11-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd4-fsize11-cos.png used on input line 269
.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd4-fsize11-roi-flow.png, id=195, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd4-fsize11-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd4-fsize11-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd4-fsize11-roi-flow.png used on input lin
e 269.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowST-NEWhyd4-fsize11-roi-gt.png, id=196, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowST-NEWhyd4-fsize11-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowST-NEWhyd4-fsize11-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowST-NEWhyd4-fsize11-roi-gt.png used on input line 
269.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

Overfull \hbox (17.84682pt too wide) in paragraph at lines 266--271
 [][] 
 []


</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd3-roi.png, id=197, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd3-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd3-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd3-roi.png used on input line 278.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd3-epe.png, id=198, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd3-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd3-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd3-epe.png used on input line 278.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd3-cos.png, id=199, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd3-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd3-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd3-cos.png used on input line 278.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd3-L1-roi-flow.png, id=200, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd3-L1-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd3-L1-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd3-L1-roi-flow.png used on input line 278
.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd3-roi-gt.png, id=201, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd3-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd3-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd3-roi-gt.png used on input line 278.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd4-roi.png, id=202, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd4-roi.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd4-roi.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd4-roi.png used on input line 279.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd4-epe.png, id=203, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd4-epe.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd4-epe.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd4-epe.png used on input line 279.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd4-cos.png, id=204, 578.16pt x 434.5836pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd4-cos.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd4-cos.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd4-cos.png used on input line 279.
(pdftex.def)             Requested size: 75.70157pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd4-L1-roi-flow.png, id=205, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd4-L1-roi-flow.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd4-L1-roi-flow.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd4-L1-roi-flow.png used on input line 279
.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fram
e-flowL1-NEWhyd4-roi-gt.png, id=206, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea
/frame-flowL1-NEWhyd4-roi-gt.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/
frame-flowL1-NEWhyd4-roi-gt.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Hydrangea/frame-flowL1-NEWhyd4-roi-gt.png used on input line 279.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

Overfull \hbox (17.84682pt too wide) in paragraph at lines 276--281
 [][] 
 []


</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValues/Qr
egeigenRubberwhale11_L21em3.png, id=207, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValu
es/QregeigenRubberwhale11_L21em3.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValue
s/QregeigenRubberwhale11_L21em3.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/EigenValues/QregeigenRubberwhale11_L21em3.png used on input line 287.

(pdftex.def)             Requested size: 192.0548pt x 144.0412pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValues/Qr
egeigenRubberwhale11_L21em6.png, id=208, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValu
es/QregeigenRubberwhale11_L21em6.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValue
s/QregeigenRubberwhale11_L21em6.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/EigenValues/QregeigenRubberwhale11_L21em6.png used on input line 291.

(pdftex.def)             Requested size: 192.0548pt x 144.0412pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValues/Qr
egeigenRubberwhale11_L21em9.png, id=209, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValu
es/QregeigenRubberwhale11_L21em9.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValue
s/QregeigenRubberwhale11_L21em9.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/EigenValues/QregeigenRubberwhale11_L21em9.png used on input line 295.

(pdftex.def)             Requested size: 192.0548pt x 144.0412pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValues/bn
ormRubberwhale11_L21em3.png, id=210, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValu
es/bnormRubberwhale11_L21em3.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValue
s/bnormRubberwhale11_L21em3.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/EigenValues/bnormRubberwhale11_L21em3.png used on input line 303.
(pdftex.def)             Requested size: 192.0548pt x 144.0412pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValues/bn
ormRubberwhale11_L21em6.png, id=211, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValu
es/bnormRubberwhale11_L21em6.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValue
s/bnormRubberwhale11_L21em6.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/EigenValues/bnormRubberwhale11_L21em6.png used on input line 307.
(pdftex.def)             Requested size: 192.0548pt x 144.0412pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValues/bn
ormRubberwhale11_L21em9.png, id=212, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValu
es/bnormRubberwhale11_L21em9.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValue
s/bnormRubberwhale11_L21em9.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/EigenValues/bnormRubberwhale11_L21em9.png used on input line 311.
(pdftex.def)             Requested size: 192.0548pt x 144.0412pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValues/de
ltanormRubberwhale11_L21em6.png, id=213, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValu
es/deltanormRubberwhale11_L21em6.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValue
s/deltanormRubberwhale11_L21em6.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/EigenValues/deltanormRubberwhale11_L21em6.png used on input line 318.

(pdftex.def)             Requested size: 426.79135pt x 320.09303pt.


LaTeX Warning: Reference `eq:normUpdateVec' on page 29 undefined on input line 
319.


LaTeX Warning: Reference `eq:normUpdateVec' on page 29 undefined on input line 
319.

[29 </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-whole.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpt
icalFlowResults/RubberWhale/frame-whole-gt.png (PNG copy)> </home/gerald/Docume
nts/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-whole-flowL1.png
 (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/R
ubberWhale/frame-whole-flow11.png (PNG copy)>] [30 </home/gerald/Documents/Thes
is/Figures/ChapterOpticalFlowResults/Hydrangea/frame-whole.png (PNG copy)> </ho
me/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/frame-wh
ole-gt.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlo
wResults/Hydrangea/frame-whole-flowL1.png (PNG copy)> </home/gerald/Documents/T
hesis/Figures/ChapterOpticalFlowResults/Hydrangea/frame-whole-flow11.png (PNG c
opy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWh
ale/frame-flowST-NEWwheel-fsize11-roi.png (PNG copy)> </home/gerald/Documents/T
hesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowST-NEWwheel-fsize
11-epe.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Ru
bberWhale/frame-flowST-NEWwheel-fsize11-cos.png> </home/gerald/Documents/Thesis
/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowST-NEWwheel-fsize11-ro
i-flow.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlo
wResults/RubberWhale/frame-flowST-NEWwheel-fsize11-roi-gt.png (PNG copy)> </hom
e/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-f
lowST-NEWboxcorner-fsize11-roi.png (PNG copy)> </home/gerald/Documents/Thesis/F
igures/ChapterOpticalFlowResults/RubberWhale/frame-flowST-NEWboxcorner-fsize11-
epe.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Rubbe
rWhale/frame-flowST-NEWboxcorner-fsize11-cos.png> </home/gerald/Documents/Thesi
s/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowST-NEWboxcorner-fsize
11-roi-flow.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOptic
alFlowResults/RubberWhale/frame-flowST-NEWboxcorner-fsize11-roi-gt.png (PNG cop
y)>]

LaTeX Warning: Reference `fig:normUpdateVec' on page 31 undefined on input line
 336.

[31 </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhal
e/frame-flowST-NEWcurtain2-fsize11-roi.png (PNG copy)> </home/gerald/Documents/
Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowST-NEWcurtain2-f
size11-epe.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResult
s/RubberWhale/frame-flowST-NEWcurtain2-fsize11-cos.png> </home/gerald/Documents
/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowST-NEWcurtain2-
fsize11-roi-flow.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/Chapter
OpticalFlowResults/RubberWhale/frame-flowST-NEWcurtain2-fsize11-roi-gt.png (PNG
 copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Rubber
Whale/frame-flowST-NEWblanket2-fsize11-roi.png (PNG copy)> </home/gerald/Docume
nts/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowST-NEWblanke
t2-fsize11-epe.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowRe
sults/RubberWhale/frame-flowST-NEWblanket2-fsize11-cos.png> </home/gerald/Docum
ents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowST-NEWblank
et2-fsize11-roi-flow.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/Cha
pterOpticalFlowResults/RubberWhale/frame-flowST-NEWblanket2-fsize11-roi-gt.png 
(PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Ru
bberWhale/frame-flowL1-NEWwheel-roi.png (PNG copy)> </home/gerald/Documents/The
sis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowL1-NEWwheel-epe.png
> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/
frame-flowL1-NEWwheel-cos.png> </home/gerald/Documents/Thesis/Figures/ChapterOp
ticalFlowResults/RubberWhale/frame-flowL1-NEWwheel-L1-roi-flow.png (PNG copy)> 
</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/fr
ame-flowL1-NEWwheel-roi-gt.png (PNG copy)> </home/gerald/Documents/Thesis/Figur
es/ChapterOpticalFlowResults/RubberWhale/frame-flowL1-NEWboxcorner-roi.png (PNG
 copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Rubber
Whale/frame-flowL1-NEWboxcorner-epe.png> </home/gerald/Documents/Thesis/Figures
/ChapterOpticalFlowResults/RubberWhale/frame-flowL1-NEWboxcorner-cos.png> </hom
e/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-f
lowL1-NEWboxcorner-L1-roi-flow.png (PNG copy)> </home/gerald/Documents/Thesis/F
igures/ChapterOpticalFlowResults/RubberWhale/frame-flowL1-NEWboxcorner-roi-gt.p
ng (PNG copy)>] [32 </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowRe
sults/RubberWhale/frame-flowL1-NEWcurtain2-roi.png (PNG copy)> </home/gerald/Do
cuments/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowL1-NEWcu
rtain2-epe.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResult
s/RubberWhale/frame-flowL1-NEWcurtain2-cos.png> </home/gerald/Documents/Thesis/
Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowL1-NEWcurtain2-L1-roi-f
low.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowRe
sults/RubberWhale/frame-flowL1-NEWcurtain2-roi-gt.png (PNG copy)> </home/gerald
/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowL1-NE
Wblanket2-roi.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpt
icalFlowResults/RubberWhale/frame-flowL1-NEWblanket2-epe.png> </home/gerald/Doc
uments/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowL1-NEWbla
nket2-cos.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults
/RubberWhale/frame-flowL1-NEWblanket2-L1-roi-flow.png (PNG copy)> </home/gerald
/Documents/Thesis/Figures/ChapterOpticalFlowResults/RubberWhale/frame-flowL1-NE
Wblanket2-roi-gt.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/Chapter
OpticalFlowResults/Hydrangea/frame-flowST-NEWhyd3-fsize11-roi.png (PNG copy)> <
/home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/frame
-flowST-NEWhyd3-fsize11-epe.png> </home/gerald/Documents/Thesis/Figures/Chapter
OpticalFlowResults/Hydrangea/frame-flowST-NEWhyd3-fsize11-cos.png> </home/geral
d/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/frame-flowST-NEW
hyd3-fsize11-roi-flow.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/Ch
apterOpticalFlowResults/Hydrangea/frame-flowST-NEWhyd3-fsize11-roi-gt.png (PNG 
copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrang
ea/frame-flowST-NEWhyd4-fsize11-roi.png (PNG copy)> </home/gerald/Documents/The
sis/Figures/ChapterOpticalFlowResults/Hydrangea/frame-flowST-NEWhyd4-fsize11-ep
e.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrang
ea/frame-flowST-NEWhyd4-fsize11-cos.png> </home/gerald/Documents/Thesis/Figures
/ChapterOpticalFlowResults/Hydrangea/frame-flowST-NEWhyd4-fsize11-roi-flow.png 
(PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hy
drangea/frame-flowST-NEWhyd4-fsize11-roi-gt.png (PNG copy)>] [33 </home/gerald/
Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/frame-flowL1-NEWhy
d3-roi.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlo
wResults/Hydrangea/frame-flowL1-NEWhyd3-epe.png> </home/gerald/Documents/Thesis
/Figures/ChapterOpticalFlowResults/Hydrangea/frame-flowL1-NEWhyd3-cos.png> </ho
me/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/frame-fl
owL1-NEWhyd3-L1-roi-flow.png (PNG copy)> </home/gerald/Documents/Thesis/Figures
/ChapterOpticalFlowResults/Hydrangea/frame-flowL1-NEWhyd3-roi-gt.png (PNG copy)
> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/fr
ame-flowL1-NEWhyd4-roi.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/C
hapterOpticalFlowResults/Hydrangea/frame-flowL1-NEWhyd4-epe.png> </home/gerald/
Documents/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/frame-flowL1-NEWhy
d4-cos.png> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Hy
drangea/frame-flowL1-NEWhyd4-L1-roi-flow.png (PNG copy)> </home/gerald/Document
s/Thesis/Figures/ChapterOpticalFlowResults/Hydrangea/frame-flowL1-NEWhyd4-roi-g
t.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResu
lts/EigenValues/QregeigenRubberwhale11_L21em3.png (PNG copy)> </home/gerald/Doc
uments/Thesis/Figures/ChapterOpticalFlowResults/EigenValues/QregeigenRubberwhal
e11_L21em6.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOptica
lFlowResults/EigenValues/QregeigenRubberwhale11_L21em9.png (PNG copy)>]
[34 </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValue
s/bnormRubberwhale11_L21em3.png (PNG copy)> </home/gerald/Documents/Thesis/Figu
res/ChapterOpticalFlowResults/EigenValues/bnormRubberwhale11_L21em6.png (PNG co
py)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/EigenValu
es/bnormRubberwhale11_L21em9.png (PNG copy)>] [35 </home/gerald/Documents/Thesi
s/Figures/ChapterOpticalFlowResults/EigenValues/deltanormRubberwhale11_L21em6.p
ng (PNG copy)>] [36


]
Chapter 5

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModalOpti
calFlow/conditional-spatialstandarddev.pdf, id=239, 526.96875pt x 410.53375pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModa
lOpticalFlow/conditional-spatialstandarddev.pdf Graphic file (type pdf)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModal
OpticalFlow/conditional-spatialstandarddev.pdf>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/MultiModalOpticalFlow/conditional-spatialstandarddev.pdf used on inpu
t line 365.
(pdftex.def)             Requested size: 213.39705pt x 113.80856pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModalOpti
calFlow/thermo-gray-histo.pdf, id=240, 449.68pt x 338.26375pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModa
lOpticalFlow/thermo-gray-histo.pdf Graphic file (type pdf)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/MultiModal
OpticalFlow/thermo-gray-histo.pdf>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/MultiModalOpticalFlow/thermo-gray-histo.pdf used on input line 367.
(pdftex.def)             Requested size: 213.39436pt x 113.81068pt.

Overfull \hbox (5.47504pt too wide) in paragraph at lines 365--368
 [][][] 
 []


LaTeX Warning: Reference `flowmodel' on page 37 undefined on input line 376.


LaTeX Warning: Citation `GoidescuCFRP' on page 37 undefined on input line 378.


LaTeX Warning: Reference `eq:locCondVariance' on page 37 undefined on input lin
e 382.


LaTeX Warning: Reference `fig:condVarianceSigma' on page 37 undefined on input 
line 385.


LaTeX Warning: Reference `fig:condMinSigmaVersWindowsize' on page 37 undefined 
on input line 387.


LaTeX Warning: Reference `fig:multimodalRoi' on page 37 undefined on input line
 402.


</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-555-214-flow07.png, id=241, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-555-214-flow07.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-555-214-flow07.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-555-214-flow07.png used on input line 410.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-555-214-histo.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-555-214-histo.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-555-214-histo.png used on input line 410.
(pdftex.def)             Requested size: 75.86919pt x 56.9055pt.
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-555-214-im0.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-555-214-im0.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-555-214-im0.png used on input line 410.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-555-214-im0warped.png, id=242, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-555-214-im0warped.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-555-214-im0warped.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-555-214-im0warped.png used on input line 41
0.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-555-214-thermo.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-555-214-thermo.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-555-214-thermo.png used on input line 410.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-570-54-flow07.png, id=243, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-570-54-flow07.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-570-54-flow07.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-570-54-flow07.png used on input line 411.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-570-54-histo.png, id=244, 578.16pt x 433.62pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-570-54-histo.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-570-54-histo.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-570-54-histo.png used on input line 411.
(pdftex.def)             Requested size: 75.86919pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-570-54-im0.png, id=245, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-570-54-im0.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-570-54-im0.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-570-54-im0.png used on input line 411.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-570-54-im0warped.png, id=246, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-570-54-im0warped.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-570-54-im0warped.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-570-54-im0warped.png used on input line 411
.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.

</home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-his
to/cfrp-roi-570-54-thermo.png, id=247, 101.37875pt x 101.37875pt>
File: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-570-54-thermo.png Graphic file (type png)

<use /home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi
-histo/cfrp-roi-570-54-thermo.png>
Package pdftex.def Info: /home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-570-54-thermo.png used on input line 411.
(pdftex.def)             Requested size: 56.90628pt x 56.9055pt.


LaTeX Warning: Reference `fig:multimodalRoi' on page 37 undefined on input line
 418.

)
No file thesis-gerald.bbl.
[37] [38 </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Multi
ModalOpticalFlow/conditional-spatialstandarddev.pdf> </home/gerald/Documents/Th
esis/Figures/ChapterOpticalFlowResults/MultiModalOpticalFlow/thermo-gray-histo.
pdf> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults/Edevis/ro
i-histo/cfrp-roi-555-214-flow07.png (PNG copy)> </home/gerald/Documents/Thesis/
Figures/ChapterOpticalFlowResults/Edevis/roi-histo/cfrp-roi-555-214-im0warped.p
ng (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowResults
/Edevis/roi-histo/cfrp-roi-570-54-flow07.png (PNG copy)> </home/gerald/Document
s/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-histo/cfrp-roi-570-54-his
to.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFlowRes
ults/Edevis/roi-histo/cfrp-roi-570-54-im0.png (PNG copy)> </home/gerald/Documen
ts/Thesis/Figures/ChapterOpticalFlowResults/Edevis/roi-histo/cfrp-roi-570-54-im
0warped.png (PNG copy)> </home/gerald/Documents/Thesis/Figures/ChapterOpticalFl
owResults/Edevis/roi-histo/cfrp-roi-570-54-thermo.png (PNG copy)>]
(./thesis-gerald.aux)

LaTeX Warning: There were undefined references.


LaTeX Warning: There were multiply-defined labels.

 ) 
Here is how much of TeX's memory you used:
 6692 strings out of 493304
 141377 string characters out of 6139871
 186519 words of memory out of 5000000
 9702 multiletter control sequences out of 15000+600000
 35378 words of font info for 82 fonts, out of 8000000 for 9000
 1118 hyphenation exceptions out of 8191
 44i,16n,48p,951b,488s stack positions out of 5000i,500n,10000p,200000b,80000s
{/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc}</usr/share/texliv
e/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb></usr/share/texlive/texm
f-dist/fonts/type1/public/amsfonts/cm/cmbx6.pfb></usr/share/texlive/texmf-dist/
fonts/type1/public/amsfonts/cm/cmbx8.pfb></usr/share/texlive/texmf-dist/fonts/t
ype1/public/amsfonts/cm/cmex10.pfb></usr/share/texlive/texmf-dist/fonts/type1/p
ublic/amsfonts/cm/cmmi10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/
amsfonts/cm/cmmi6.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfont
s/cm/cmmi8.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cm
r10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb>
</usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfb></usr/sh
are/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/te
xlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfb></usr/share/texlive/t
exmf-dist/fonts/type1/public/doublestroke/dsrom10.pfb></usr/share/texlive/texmf
-dist/fonts/type1/public/amsfonts/symbols/msam10.pfb></usr/share/texlive/texmf-
dist/fonts/type1/public/amsfonts/symbols/msbm10.pfb></usr/share/texlive/texmf-d
ist/fonts/type1/urw/palatino/uplb8a.pfb></usr/share/texlive/texmf-dist/fonts/ty
pe1/urw/palatino/uplr8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/pala
tino/uplr8a.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplri8a
.pfb>
Output written on thesis-gerald.pdf (38 pages, 4154414 bytes).
PDF statistics:
 346 PDF objects out of 1000 (max. 8388607)
 166 compressed objects within 2 object streams
 0 named destinations out of 1000 (max. 500000)
 546 words of extra memory for PDF output out of 10000 (max. 10000000)