-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptical_flow.m
54 lines (47 loc) · 1.68 KB
/
optical_flow.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
vidReader = VideoReader('DJI_0257_gray.avi');
opticFlow = opticalFlowHS;
h = figure;
BlobAnalyser = vision.BlobAnalysis('BoundingBoxOutputPort', true, ...
'AreaOutputPort', true, 'CentroidOutputPort', true, ...
'MinimumBlobArea', 1500);
Detector = vision.ForegroundDetector('NumGaussians', 3, ...
'NumTrainingFrames', 20, 'MinimumBackgroundRatio', 0.7);
ind=1;
skipFrames=10;
% while hasFrame(vidReader)
% if mod(ind-1, skipFrames) == 0
% frameGray = rgb2gray(readFrame(vidReader));
% fra= Detector.step(frameGray );
% fra = imopen(fra, strel('rectangle', [10,10]));
% fra = imclose(fra, strel('rectangle', [10,10]));
% %
% flow = estimateFlow(opticFlow,fra);
% normflow = flow.Magnitude./max(max(flow.Magnitude));
% % f=normflow<0.5;
% % Kmedian = medfilt2(f);
% % SE = strel('rectangle',[40 40]);
% % BW4 = imdilate(Kmedian,SE);
% [~,centroids, bboxes] = step(BlobAnalyser ,fra);
% centroids
opticFlow = opticalFlowHS;
while hasFrame(vidReader)
if mod(ind-1, skipFrames) == 0
frameGray = rgb2gray(readFrame(vidReader));
fra= Detector.step( frameGray);
fra = imopen(fra, strel('rectangle', [5,5]));
fra = imclose(fra, strel('rectangle', [10,10]));
%
flow = estimateFlow(opticFlow,fra);
normflow = flow.Magnitude./max(max(flow.Magnitude));
l= medfilt2(normflow, [6 5]);
f=l>0.3;
% Kmedian = medfilt2(f);
% SE = strel('rectangle',[40 40]);
% BW4 = imdilate(Kmedian,SE);
[~,centroids, bboxes] = step(BlobAnalyser,f)
mask
imshow(f);
pause(1E-3);
end
ind = ind + 1;
end