-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrack_calculation.m
110 lines (82 loc) · 3.71 KB
/
track_calculation.m
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
classdef track_calculation < handle
%UNTITLED7 Summary of this class goes here
% Detailed explanation goes here
properties
Detector
BlobAnalyser
nextId
cars_tracking_array
r
end
methods
function obj = track_calculation(d,b,n)
%UNTITLED7 Construct an instance of this class
% Detailed explanation goes here
if nargin==3
obj.Detector=d;
obj.BlobAnalyser=b;
obj.nextId=n;
obj.cars_tracking_array=initializeTracks();
end
end
function [new_track_array]=cam1_calc(obj,f)
%UNTITLED7 Construct an instance of this class
% Detailed explanation goes here
[centroids,b_boxes,~]=detectObjects(f,obj.Detector,obj.BlobAnalyser);
obj.nextId
[next,new_track_array]=detection_analysis(obj.cars_tracking_array,centroids,b_boxes,obj.nextId);
obj.nextId=next;
obj.cars_tracking_array=new_track_array;
end
function [new_track_array]=one_transform_calc(obj,f,transform_matrix)
%UNTITLED7 Construct an instance of this class
% Detailed explanation goes here
[centroids,b_boxes,~]=detectObjects(f,obj.Detector,obj.BlobAnalyser);
if ~isempty(centroids)
[n2,~]=size(centroids);
x_tag_2=[transpose(centroids);ones(1,n2)];
centroids=transpose((transform_matrix)\x_tag_2);
centroids=centroids(:,1:end-1);
end
if ~isempty(b_boxes)
[b2,~]=size(b_boxes);
temp=transpose(b_boxes);
b_box_tag_2=[temp(1:2,:);ones(1,b2)];
temp2=single(b_box_tag_2);
b_boxes_temp_1=inv(transform_matrix)*temp2;
b_boxes_temp_2=transpose(b_boxes_temp_1);
b_boxes=[b_boxes_temp_2(:,1:end-1),b_boxes(:,3:4)];
end
[next,new_track_array]=detection_analysis(obj.cars_tracking_array,centroids,b_boxes,obj.nextId);
obj.nextId=next;
obj.cars_tracking_array=new_track_array;
end
function [next,new_track_array]=two_transforms_calc(obj,f,transform_matrix1,transform_matrix2,n)
%UNTITLED7 Construct an instance of this class
% Detailed explanation goes here
obj.nextId=n;
[centroids,b_boxes,~]=detectObjects(f,obj.Detector,obj.BlobAnalyser);
if ~isempty(centroids)
[n,~]=size(centroids);
x_tag_4=[transpose(centroids);ones(1,n)];
temp_1=inv(transform_matrix1)*(x_tag_4);
temp_2=inv(transform_matrix2)*(temp_1);
temp_3=transpose(temp_2);
centroids=temp_3(:,1:end-1);
end
if ~isempty(b_boxes)
[b,~]=size(b_boxes);
temp=transpose(b_boxes);
b_box_tag_4=[temp(1:2,:);ones(1,b)];
temp2=single(b_box_tag_4);
b_boxes_temp_1=inv(transform_matrix1)*temp2;
b_boxes_temp_2=inv(transform_matrix2)*b_boxes_temp_1;
b_boxes_temp_2=transpose(b_boxes_temp_2);
b_boxes=[b_boxes_temp_2(:,1:end-1),b_boxes(:,3:4)];
end
[next,new_track_array]=detection_analysis(obj.cars_tracking_array,centroids,b_boxes,obj.nextId);
obj.nextId=next;
obj.cars_tracking_array=new_track_array;
end
end
end