-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoriginal_log.txt
1396 lines (933 loc) · 51.2 KB
/
original_log.txt
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
commit d268d9aea475382acb6c2abfcdb53ffac7f1323d
Author: Douglas Barker <[email protected]>
Date: Sat Mar 16 23:54:56 2013 -0400
updated file paths in tests
commit 9256a03dd1cd7b8c11c325f2561cab96eae3a1c6
Author: Douglas Barker <[email protected]>
Date: Sat Mar 16 23:00:38 2013 -0400
removed unneeded files from being tracked in repo, added testes
commit 32dafc166313a5ae6ae977fcecd9ca486e703f6f
Author: Douglas Barker <[email protected]>
Date: Sat Mar 16 20:49:22 2013 -0400
minor updates
commit c35208d45f230c33a00aecb5dad370d223b0ca8d
Author: Douglas Barker <[email protected]>
Date: Sat Mar 16 20:28:48 2013 -0400
more updates to repo structure
commit f9cdd3ef10a1250525fa2609a61f28d49e480def
Author: Douglas Barker <[email protected]>
Date: Sat Mar 16 17:32:28 2013 -0400
updated structure and changed to lpt
commit c9921303469c87b25dbb453c923ef21e013d4460
Author: Doug Barker <[email protected]>
Date: Tue Oct 23 22:14:44 2012 -0400
changed file paths to be platform independent, minor cleanups
commit 6c55b3a716ce7f2b57a87bdfa4cf6163dee379d1
Author: Doug Barker (ACER Aspire) <[email protected]>
Date: Fri Sep 28 01:42:54 2012 -0400
added application to calculate particle postion standard uncertainties
commit e4768a1779974c5816c7832ff4ae06ec6bd236c3
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Aug 30 10:40:53 2012 -0500
reduced queue size in virtual cameras app
commit f7101c457e6bacdb95614904174bb94b6fab3b87
Author: Doug Barker (ACER Aspire) <[email protected]>
Date: Thu Aug 30 10:29:04 2012 -0500
minor changes to cmake main file
commit 4cc55e9a9568d74d945143b78e9d64d9dde2f91b
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Aug 30 10:07:24 2012 -0500
fixed bugs
commit 01fb71358700e90fd2f3f0bfb503d86a6385b8b9
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Aug 24 21:22:30 2012 -0500
changed input and output file location, added comments to data acquisition and cleaned up that module
commit 0863c89f132a57650bdf62f2e0707d131c1a7ff8
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Aug 15 17:08:15 2012 -0500
modified visualizer to allow setting of grid dimensions at main cpp file
commit c2c259ef97eec9a3109ea8f3f712398df3c9252a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Aug 15 15:31:36 2012 -0500
major clean up of source tree. Streaming pipeline class created to provide clearer structure
commit e31935826cafa252c5af3cb5516d2c46eaf6d48a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Aug 8 15:06:04 2012 -0500
moved visualization implimentation code to src cpp file from header
commit 6e15b199263e826c3862341b10e20f2e34f1a611
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Jul 18 19:11:25 2012 -0500
cleaned up tracker and removed template code
commit d7c04e18db2564b7a87214f8247b15864a605a4f
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Jul 18 16:35:17 2012 -0500
cleaning up samples
commit 12e8aa6e8fb2a2abd468fc76fa2d05c3f4e9eb1c
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Jul 6 02:07:18 2012 -0500
updated virtual cams, timing fragments, tracking test
commit 69d75311e52036ba38a11a6ccd6e6a45c51a6520
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Jun 12 20:47:30 2012 -0500
fixed eularian pressure calc bug, added trajectory coloring based on acceleration or velocity, added accumulator to determine centroid uncertainty of static points, added ability to save data to file
commit ad54e7d52118af84800f5b00f95d85e372536b43
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Jun 8 01:39:37 2012 -0500
updated uncertainty calculation, added svd 3D reconstruction, added measurement function in visualization for velocity test and 3d position test
commit 97ccf20e09c30ccd30e3e6f0037f4e9ae5693c31
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu May 31 18:10:36 2012 -0500
added image creation using focal length, distance and intensity to calculate proper particle image
commit eff98f33e5657f592603f1067be6d4b89b3543d0
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue May 29 22:02:35 2012 -0500
added centriod pixel uncertainty calc to camera calibration using boost accumulators
commit 77f0cf33ef7f281a1056ab298ed59ccfa17eaebe
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri May 25 18:46:39 2012 -0500
Uncertainty analysis works well now, results are very reasonable
commit 4a698740253c2bf791414ed34e4b3b108e38c143
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu May 24 22:00:14 2012 -0500
fixed bugs in uncertainty analysis, it now prints uncertainties to file, and analyzes multiple 3d points
commit b53172d72155a76871c8330acd79ff58718cdc89
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed May 23 19:10:20 2012 -0500
uncertainty calculation is complete, including distortion coefficients
commit eff5c5ab1dd8d514d429136b9f341c82c725b4db
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue May 22 01:46:00 2012 -0500
completed 3D position uncertainty calculation, appears to be working
commit 163dcf8833b8bb5e2afdc180ea3df8872585bb0a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri May 18 12:09:43 2012 -0500
added 3D position uncertainty calculation class, changed scale factor of pivstd data
commit 66e4215255c0c4000e5565b7c5b1383f9d139949
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu May 10 20:26:41 2012 -0500
particle trajectory path view now shows colored tails and the tails trail the particle by a set length
commit acfdac5370591d65497f0af0c274d7cf0073f3c6
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu May 10 11:24:40 2012 -0500
Added lagrangian pressure caluclation and visualization
commit 9282c189d39da52fcf918773225ea8969ff66c53
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Apr 27 17:02:23 2012 -0500
added vorticity vector plot, added separate thread to calculate pressure field
commit 14c1bb638d93dac7bead62cfb9f49481138cc4c3
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Apr 26 17:06:12 2012 -0500
updated visualization pipeline for use in creating trajectory fate probability map
commit ca3e66be62504d893dba7ae065fe8c13f24ba92c
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Apr 25 01:25:19 2012 -0500
added visualization thread to handle the queue of trajectories for visualization and updating accumulators
commit aa5af25d01bfa1958af5d6d83b0e217c2c856138
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Apr 24 21:35:16 2012 -0500
added gpu selection and initialization in pointmatchercuda
commit e50ad9beda6077381e79e000d6df79e37324e19b
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Apr 24 17:52:03 2012 -0500
modified correspond class to include multi-thread frame work, original findMatches approach works still
commit 2e0bdf0e70b5623b999b32569528fc8b4cec54ae
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Apr 23 00:11:36 2012 -0500
added producer/consumer model conncurent_queue, now CPU usage is down to about 20% from 65%
commit 6c859562ec4fa37028012c63944cc8c8b6e0b8fe
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sun Apr 22 21:55:24 2012 -0500
modified matching to unify gpu and host versions, updated virtual cams main file, started producer consumer switch over from polling
commit 8dac4254dce56d0d7ce4564ee8453342d9fd1b8b
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Apr 21 01:09:30 2012 -0500
cleaned up correspond code removed match map from particle image data structure, made image processing done on cpu for segment precision and mjpeg modes, cleaned up usage of pointers and new command
commit 1595770f25ce1dc77fb054c7a62fb4d795af66af
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Apr 18 19:32:42 2012 -0500
added two step pressure solver based on steady state reynolds averaged navier stokes equations
commit d8c18a22a650e8476360e72d56fe69c91ac45715
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Apr 14 03:30:00 2012 -0500
added covariance accumulator to calculate reynolds stress tensor, calculates and displays turbulent energy and dissipation, but disspation is wrong now..should not go negative
commit ef8d49ba9baf2e435696c840bfa6abee7c8bf36f
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Apr 13 02:46:27 2012 -0500
interpolation added based on 26 neighbor cells, works awesome, pressure poisson solve may work after all, need to include all source terms to improve convergence
commit 83e567cc47e1d9ccfd32e9a623b53ca8e562133a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Apr 12 21:18:14 2012 -0500
removed accumulators from pressuresolver and added vectors for velocity and acceleration fields
commit d1f882b5586768e284727995046eb90469d3dabb
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Apr 12 01:07:14 2012 -0500
updated poisson pressure solver and it appears to work now
commit 0692edcba792e3b1d267821d3784bfdc82b60b7b
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Apr 10 02:32:59 2012 -0500
added stat accumulators to each vis mode to automatically adjust the color bars, histogram is not working well
commit 1a21b55e67bf23ffbae740026aecb12bbb4d1a4b
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Apr 9 18:51:44 2012 -0500
added histogram plot (doesnt work well) and mass residual calculation (works well)
commit bb6812977437cc7e5f6599b4275b996d6a0f7ca9
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Apr 7 05:40:51 2012 -0500
updated pressure poisson solver, but used wrong bc, next will try to use navier stokes equations as bc
commit 2a745a92214e7e62a54efe4e1b0bcb867bbf11c0
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Apr 6 22:04:23 2012 -0500
added initial try at pressure calculation from poisson equation
commit 371e4e862489b5ef1f3825f0d616b026e8897424
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Apr 5 02:10:52 2012 -0500
small changes to visualizer
commit f5495070403fbc1f54c4aee47948f3d3edb1eb44
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Apr 4 22:53:44 2012 -0500
improved rendering by removing grid actor before update
commit ed1997f5e0e2f01aaedbba153487cb1ac40210e0
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Apr 4 20:22:27 2012 -0500
added visualization for error of mean for accel and velocity, ready for pressure vis
commit 9647049a8121e68bbd0413464ea5a3ac8baaed64
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Apr 4 00:55:51 2012 -0500
acceleration vector view is working well, velocity and acceleration finite differece equations moved to visualizer
commit a4feffad7bdee3336c858d807943b3d15eb112f1
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Apr 3 00:22:32 2012 -0500
added framerate variable to camerasystem, added acceleration switch to set vectors
commit ae07a0ff6ca72bfd70cfd2810fb169107ed8e7cd
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Apr 2 17:52:31 2012 -0500
added controls for camera display, add camera id text to display, added coordinate widget
commit c3d44deb376740a3e2a925bae772dc59303e0412
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Apr 2 00:38:57 2012 -0500
unified visualization vtkCommand handlers and added camera visualizaiton, all appears to work, vector field updates appears to have slowed, need to optimize
commit b22e84b5ff02d8e7632ca11cb762e1dd42fea307
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Mar 30 01:13:52 2012 -0500
Added Camera views to vtk vis, added implicit plane widget to visualize cell data on finitevolumegrid: Something is wrong with shutdown of visuializer and an error causes the program to crash
commit bfd9dcc739520260195056258995759da9fd9df3
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Mar 16 03:04:33 2012 -0500
added visualization of camera views
commit 4234584c5cf4a7e3a0cf2ad1df484ebd7242a691
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Mar 8 16:54:11 2012 -0600
modified monitor display stride to match visualizer
commit 4d5cfd2eddd378c53d103b9f7310993b530468ad
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Mar 8 13:41:54 2012 -0600
minor format changes
commit f86c0da939527cc3a4fa207faf2e74e01ba5b577
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Mar 8 01:17:09 2012 -0600
gpu matcher works but easily overwhelms the match buffer, need to add sorting in findmatch kernels
commit 900656b93f8b5ef6e223cf2f25b3b35ced4b1333
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Mar 7 23:09:34 2012 -0600
moved thrusttest.cu .h to gpu folder and created module correspondcuda
commit a72bb42a7c15095b45a30e2958e19526929511f4
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Mar 7 00:12:18 2012 -0600
cleaned up cuda matcher, ready to integrate into coorespond module
commit 58cf24b9727512e0dd680a252d79d4e10c0bbbd5
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Mar 6 18:19:43 2012 -0600
added random shuffle to test case frames, found bug in cuda code and fixed it, now working properly
commit 5addd0a26591ef256dd9d3e020962ab8b983ed83
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Mar 6 14:40:49 2012 -0600
cuda matching code passes tests with pivstd data sets, old serial matching code appears to have problems with accuracy when matching threshold is increased
commit 7e18efe73fe82996bd36da65d4caacc8cad45252
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Mar 6 00:41:35 2012 -0600
gpu matcher works in total, find2wayMatches and findMatches, slight differences with gpu and serial code in tests (gpu code finds two less matches of 6cams frame one
commit a8dbe31699e6a4eba685b8d21db2cfaca1b714f7
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Mar 3 20:58:34 2012 -0600
fixed bug and now 11 camera data set is solved correctly with cuda code
commit bf617cf39e1b4037ddfd2f14044da29a34f9a37a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Mar 3 17:18:40 2012 -0600
fixed several bugs in cuda code, solution is different for 11 cam case, but correct for 4 and 6 cameras
commit 0c3683eeedb884b4ea3d702de76aa3fdad3c014b
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Mar 3 00:14:04 2012 -0600
updated traj vis to show smoother trajectories
commit 0d8181220dbfb4a75cc455fe601871847c7ddb70
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Mar 1 23:57:30 2012 -0600
got streaming with cuda working, ~5-8x faster
commit 5aa4e8fdb62c363e257119e4f36daf0552af2955
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Feb 29 20:23:57 2012 -0600
added cuda streams, but no speed up
commit 9791fb3feaf21ebdec1a33673c83f56aedfb6378
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Feb 27 23:00:03 2012 -0600
added two kernel matching code, it is slower but still works
commit 95dec259a2875c029a1f486780431d2ed6cffc14
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Feb 27 12:52:12 2012 -0600
cuda matching code works but is slow, ~1.5x speedup
commit 7f53eafc2434fd6649301b240e18290915e6759d
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Feb 24 00:27:15 2012 -0600
serial comparison added to thrusttest pointmatcher code, cuda version does not match serial now
commit 99335020a685fb5602ea23fb20649440f41a1772
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Feb 23 23:57:18 2012 -0600
all in one epipolar residual kernel compiles and runs without failure...now check accuracy
commit 00e72d110dd11c8963540b978c66700a6216470f
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Feb 22 20:03:15 2012 -0600
added thrust vector to kernel array implicit conversion
commit 16386f98a008659858e69fa7de28c62f71a991d9
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Feb 22 16:19:21 2012 -0600
PointMatcherCUDA has a basic framework now
commit 859a7e675cca9d20b8c45aee93237a8fbbb176df
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Feb 14 14:06:26 2012 -0600
removed 2 particle trajs from visualizations
commit 060b0db4f3192ab0624b3da813ad8e85becf94ac
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Feb 14 03:55:49 2012 -0600
can now reset vector field
commit 510295d6a6fd7ce2df0d1385c4ad70473f82aa52
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Feb 14 03:12:53 2012 -0600
colored glyphs, vectors, and traj tails all viewable
commit 3ab5a78cbcea3cd442d6b598f81440d10ddea07a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Feb 14 02:01:23 2012 -0600
vector and traj views selectible
commit 91aeda96dd49073184f270be5ca316899f2ecdb9
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Feb 13 22:34:20 2012 -0600
vectors handler is working at a basic level
commit c2c3786ebec8d05fbda7dce5f8112462441be2ef
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sun Feb 12 20:57:01 2012 -0600
adding vector plotting
commit 0a944302887e11d9d3c4c1cec01b2a068d43a320
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Feb 6 23:24:00 2012 -0600
working on vector visualization
commit 9795bc731fa7d8d5dd203d0eadbbe6655a4b03e7
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sun Feb 5 21:38:01 2012 -0600
added distance display to vtk window, updated vtk code for smart pointers
commit d5724760c5665ed0a91dde9a11c089001438ff95
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Feb 2 17:01:23 2012 -0600
updated vtk test code to show 3d colored vectors
commit b67dfbf93d3b82edd166a794e05c76052f358fb0
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Wed Feb 1 23:58:36 2012 -0600
added some code for vtk structured grid glyphs
commit 6b5b86920969aa9e77e06adb1fe799c1a4b049ff
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Feb 1 19:26:34 2012 -0600
improved speed of findMatches function
commit f6191f5647446c367232f06d42be88aec012e2ca
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Jan 31 22:44:22 2012 -0600
formatting
commit 0c31bbb2edc782ced88ae5987a4dd4f53c1de154
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Jan 31 20:39:34 2012 -0600
added find4way and 3way match functions
commit f36a2a30640c7f92bfe7a1a9ca3312ba2cb3d7f3
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Jan 31 16:01:37 2012 -0600
added 6cam virtual data
commit 894d5a5cfe2475d2d3858a60ce43804d9dfbd09f
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Jan 26 18:07:55 2012 -0600
cuda example is working, need to update to cmake 2.8.7
commit b32bf9746026bc5a53f8279ec1e78b099e323d57
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Jan 26 14:12:42 2012 -0600
added limit on trajectory lengths while visualizing in 3d
commit 92582ed92371fc65a086154578217550fd62a464
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Jan 26 00:51:08 2012 -0600
updated tube filter and stride parameters to view at heigher frame rates
commit 50841bd83031328c4d322274a39b85817ced97ab
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Jan 25 23:39:54 2012 -0600
trajectories are properly added and removed from the visualization
commit 4ea7788b0656f93d506f1ec16cc3d1aa81fd9265
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Jan 25 19:56:15 2012 -0600
trajectory visualization works with streamdata app
commit 801de7e4a9b426186d8c6241e7f4ca821252b484
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Tue Jan 24 23:26:15 2012 -0600
visualizer now works with virtual cameras app
commit 0335c4aa3712e6236d12a7419368826701938702
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Jan 24 00:20:36 2012 -0600
added trajectory visualization sample and updated module
commit 4f52cd2f84c8f9962b9d49a0a54bc5354ebf82c0
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Jan 23 15:55:52 2012 -0600
cuda sample does not cause cmake to fail, but still does not build
commit c2931dc593fee8718b37f00395f937014e7b4ab2
Merge: 53facf1 abd30c6
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Jan 23 15:37:48 2012 -0600
Merge remote-tracking branch 'taub/newwork' into newwork
commit 53facf100bbd244899f7b934a7d1a8b7eb1a17a9
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Jan 23 15:36:12 2012 -0600
added coordinate vectors to vtk visualization and a visualization module
commit abd30c6a439e3b2d180f89c093b0a2dd7c47f8d2
Merge: 916f724 58f4aec
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Sun Jan 22 19:15:53 2012 -0600
fixed merge
commit 7db26e03ce0aa97876b678c64ae303cd104d91e2
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Jan 21 14:49:44 2012 -0600
vtk trajectories are self contained now, ready to make visualization module and add example
commit c76cb6741ac619444721b0712782b95d061dd913
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Jan 20 23:26:20 2012 -0600
vtk test renders trajectories lines and spheres
commit b696b0787ee10a33f66f8ef0ccfdbfce711d3d39
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Jan 19 23:00:00 2012 -0600
vtk test with moving particles works
commit 58f4aec735b4b9384eee7e7d0555a856d246c019
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Jan 19 16:32:37 2012 -0600
added vtk sample
commit 916f724298d91a7f676ba617c9c11d1513288599
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Tue Jan 17 18:59:48 2012 -0600
working on adding cuda
commit 763f89afa3928f929a07d54954db93ee39a83aaa
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Tue Jan 17 12:25:05 2012 -0600
working on adding cuda
commit 3bb622d232ce5f004dd7e24ed45a9a8578055383
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Jan 12 13:40:37 2012 -0600
added qt sample and started on cuda sample
commit 3c24c3a1d94ad2352915352916cd1a3f38e05569
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Jan 9 15:04:19 2012 -0600
added extra thread for 2 way matching
commit 834b892af3f7ef6655a519a5df1a49946cfcf5bd
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Mon Jan 9 00:11:28 2012 -0600
added virtual camera project
commit f464d24f6004e01f33b52a603666821abd7423a8
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Jan 6 22:43:55 2012 -0600
updated tracking and all bugs appear to be fixed, added random color to trajectories, incorporated std::move into all logical places
commit 8bcccb3eb6949500cde0cc77abd7afed173f6804
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Jan 6 13:58:59 2012 -0600
removed usage of static methods in trajectory_ class for extrapolated particle position and appears to solve strange bug that depended on external events
commit a2a1127292e78ff68b4882df33af5f013a1da33b
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Jan 5 20:50:50 2012 -0600
in the middle of debugging a major problem with tracking
commit 439e824bd53852154e1ffe678106b220ac5aa7f3
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Jan 5 00:09:43 2012 -0600
completed first draft of unified tracker class, complies, runs , but appears to have trouble creating long trajectories
commit 3bed44498272f74de385e8657194866671ce4f10
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Jan 3 19:18:12 2012 -0600
hacked to fix imageproc threads hanging at exit
commit a8858efac8be9d54820f4dcd1fc2451d4a6dd4d6
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Jan 3 17:06:30 2012 -0600
draw trajectory function working
commit a58792df53ba7cff6537ccd3058b9389c7effcb6
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Jan 2 19:54:44 2012 -0600
tracking appears to be working, also there is a persistant problem with threads getting stuck while exiting image processer
commit bbed64f68a850c75f5fe55a74270f110461e7b3b
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Dec 31 13:23:04 2011 -0600
incoporated Frame3d templated object frame into frame3D_queue and updated tracking.hpp to prepare for incorporation of initial tracking code
commit b029f994fdaaf360f5979c709c45337e56abf8d1
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Dec 30 20:21:57 2011 -0600
shared pointers in correspond code changed to regular pointers to eliminate major memory leak
commit 19a08bbf1987288dec8950cffe05b70bcf468f52
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Dec 30 17:35:22 2011 -0600
sealed a few memory leaks, major leak still exists
commit 459f0dd32c51e85b8a0358bce10b039551df156c
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Dec 30 14:30:17 2011 -0600
initial thread deadlock appears to be solved, but may still happen. The imageproc threads may still find a deadlock at camera shutdown
commit ebec6d35d39d5bfcbbf8199f160c10c95ddfb781
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Dec 21 04:55:12 2011 -0600
changes a lot but broke the streaming app, system freezes at startup, possibly tied to ObjectFrame class and templates
commit fc3136ef94db697dd4d51c48c729ecd2ba572868
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Dec 20 16:53:13 2011 -0600
fixed bug in tracking. Regression search class does not work due to the final calculation of predicted particle coordinate. Need to make the calculation simular to that of the finite diff method
commit efa8496374a64a3856471aa63fa289df0a00d4d8
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Dec 20 11:49:33 2011 -0600
4-way matching is complete and only allows unique matches to come through
commit 4f54e61cca22d9a3a48689de0e851f694c72b773
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Dec 20 10:36:48 2011 -0600
cleaned up calibrator initialization and destructors for calibration and recorder
commit 5119e60d8e3c5a4936ea2ee99887b71101e1d024
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Dec 20 01:05:19 2011 -0600
correspondence is working for all cameras along with 3D reconstruction on its own thread
commit e09d517eb3e15ba2ec9373def40c1fc9668147dd
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Sun Dec 18 23:20:03 2011 -0600
virtual cameras works with 3d reconstruction and 4 camera matching
commit 13a42e7d7bff7c2694fa81f00a02365fdb88b1b2
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sun Dec 18 18:39:44 2011 -0600
correspondece is implimented and compiles but has runtime errors due to unknown states
commit 7f06c07e05614b9a4e5da88c4e4fd07ad3fa2b7a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Dec 17 22:18:26 2011 -0600
corrected bug in finding 3point line objects
commit 38c436a1aac5a3111d67132821a1087a0972fcb4
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Dec 17 21:24:36 2011 -0600
3D reconstructed particles can now be drawn in each frame
commit 594953d8548ec9f0b494055f62c3c958f1db050a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Dec 17 20:27:30 2011 -0600
3D reconstruction working with < 1 mm error
commit 0dee67b963b596d8e4af4450eb83deae1fec9741
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Dec 16 19:42:06 2011 -0600
full streaming framework is working, 3d reconstruction and 3pointline matcher appear to be working, need to check accuracy
commit b91c9cbbd3ef29051093aab0474d3ca592e0242e
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Dec 15 23:49:08 2011 -0600
added tracking placeholders
commit 91814d3bdc3481a252c30749146a17c6c3dc4a6a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Dec 15 23:27:52 2011 -0600
created matcher derived classes and framework
commit 2ad2494b5c1f759c843b9053e9b7047613b848f7
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Dec 15 21:10:44 2011 -0600
global reference finder complete, started 3D reconstruction code for 3 point wand
commit 9e00bc4def3f808c4d82c5f93d459de890e064ba
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Dec 13 23:58:52 2011 -0600
calibration is working after solved bug with undistortpoints
commit 2a629149662c08de974bb366493711d40e46fa31
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Dec 13 00:03:36 2011 -0600
calibration works for internal and F mat params, need to add global ref next
commit f9957a24c085f6c674a752ec7e37dba08306a273
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sun Dec 11 22:51:31 2011 -0600
basic calibration internal params and F mats is working in real time
commit 5b9a531c54d277717dc7a6509db97503443ea2a6
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Dec 9 21:23:59 2011 -0600
find fund mat works, need to clean up though
commit ceb37452fca268a95208ca48cfdc8d7607d9a03d
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Dec 9 19:01:36 2011 -0600
changes
commit c9929f452b5364b567f946d0c1316b028772de7b
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Fri Dec 9 03:21:44 2011 -0600
working on calib
commit 1d4221f66dfff70cee953783b4c5d1c4242ff28b
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Dec 8 18:51:32 2011 -0600
almost done with 3 point wand calibration and fund mat calc
commit eb6558eab4b65b5811bda6d3848fe045178557aa
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Dec 7 18:11:28 2011 -0600
working on calibration module for real-time calibration
commit b8e6fa36fa2d09a375fe8783625b2e1b762b3ba0
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Wed Dec 7 02:17:56 2011 -0600
Virtual Cameras works in release mode now and several bugs fixed
commit 0ebbfb7bcb517caff67de49bfc6ab08f9a08e8ad
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Dec 5 16:01:36 2011 -0600
Virtual Cameras works but GFTT is still broken due to CV_Assert() and uchar
commit 40f9a490766ef126b4166f00eac9252e11549abc
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Mon Dec 5 05:10:23 2011 -0600
updated initialization of virtual cameras but now having problems adding image processor controls to the control window
commit 5be1ba190ff6ff9252df27190f7998fa58e92457
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Dec 2 21:26:09 2011 -0600
runs multiple video streams to screen and flushes queues
commit 02a12b9baf587a5986854de0d4e2af85518c281c
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Dec 1 21:20:44 2011 -0600
updated virtual camera system, need to finished VC initialization for datagenerator member
commit 1a6b394d69452194bc41600bda75256e08a8a94e
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Thu Dec 1 18:34:19 2011 -0600
yeahgit status -s realtime detection achieved for six cameras at 120 fps
commit 2c2049e03704ad8e6a3c8e9155a611a9c5069d23
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Thu Dec 1 00:26:57 2011 -0600
completed untested code for virtual cameras and threaded image processing
commit cff0d96da5fa6042ca4e5896f2b2b9ac7e31215a
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Nov 30 19:27:30 2011 -0600
video creator class update and image proc update, gftt does not work with new example, needs further testing
commit b19258bf2ea05535ea19cd4545a8cbcd17659ca0
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Nov 29 16:16:44 2011 -0600
CameraSystem class interface is working now for Optitrack
commit f03b1bd32769a812c506f99a4d095ed4ccf5f478
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Tue Nov 29 01:35:52 2011 -0600
major changes to pt::CameraSystem interface and derived classes including Optitrack. The code compiles now but may not run
commit 08a1bf17bce17927707fde9f8700a63d9e68b9bf
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Wed Nov 23 18:38:45 2011 -0600
reworked datagen into a more coherent class and separate functions, made unified CameraSystem base class and in progress now, surely broken at this point. Next find a way to display both processed and raw images while poping from a queue and keeping frames of common timestep together
commit 921bc0ce4b4272268e818ce52934421ceffc5633
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Tue Nov 22 09:44:01 2011 -0600
small changes
commit 893eaf2cda3941e295626056fe853c5c5537acf2
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Tue Nov 22 01:23:42 2011 -0600
overhaul of image processor test app, update to include WIN64 def in camera sdk, sync is a pointer
commit 4b29f410898667b514785b5a885388880422fb87
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Mon Nov 21 05:36:27 2011 -0600
fixed GFTT
commit 7bc88a141536bdd81bb47d746a360d9419dce318
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Mon Nov 21 05:11:45 2011 -0600
found bug in imageproc, pure virtual functions were added to solve linking error, imageprocessor app was verified with new interface, need to debug gaussian fitting function of GFTT
commit 4a1ef9fa25cd5ab41a29ad7668f434cf7de2ce1f
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Nov 21 03:37:11 2011 -0600
added image processing and feature detection classes, streamdata does not compile, linking problem exists
commit 41b2e1c4a7a0f5a2af156c68f931c4131fe7a63d
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Sun Nov 20 03:23:38 2011 -0600
baboon pic added, small changes to imageproc and datagen
commit 02d60b9727f5e395fef1135f561654f8ddaf2015
Author: Doug Barker (Y550PWR-linux) <[email protected]>
Date: Sat Nov 19 05:23:01 2011 -0600
added project directives and fixed compile errors in linux
commit a596bc2341a27eb45a48cb3b63a53d319efc6641
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Sat Nov 19 01:17:41 2011 -0600
added boost circular buffer to framegroup listener, added use-np-camera-sdk #def to dataaq module
commit d4eab0c77264080d9cadaf42c75594fe9c09b947
Merge: c5f7e75 779d132
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Nov 18 23:51:17 2011 -0600
Merge branch 'newwork' of ssh://taub.campuscluster.illinois.edu/home/dbarker2/openPT into newwork
commit c5f7e751152210e26fcc8bd2d22a7319ac014533
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Fri Nov 18 23:46:33 2011 -0600
big update to boost threads and Optitrack class ..it works
commit 779d132fabad0c76eec126e787056f7ad2851a13
Author: Doug Barker (Y550PWR Win) <[email protected]>
Date: Fri Nov 18 04:11:01 2011 -0600
removed boost tarball
commit bb2703b45186a27ac80aeb7daafb9b0bd1daa289
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Nov 16 23:52:44 2011 -0600
Added CameraSystem class and Optitrack
commit d90af03fa34086982a7539986ff21c505122ce28
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Wed Nov 16 22:09:12 2011 -0600
small changes
commit 90a5371be318fb8ed065f3f8e1ded6f536c979a0
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Nov 14 18:37:21 2011 -0600
renamed image aqusition to data aquisition and reformatted files
commit 3b3f4e719c1faf55aadb528de397f8403c37a656
Author: Doug Barker (colfax-Windows) <[email protected]>
Date: Mon Nov 14 00:38:15 2011 -0600
imageaquisition code was separated into .hpp and .cpp files
commit 3d9c7140a9237dbd88ce065ba958e1c3fd2db741