-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.m
39 lines (28 loc) · 858 Bytes
/
config.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
%% Computer Vision Challenge 2020 config.m
%% Generall Settings
% Group number:
% group_number = 16;
% Group members:
% members = {'Alaeddine Yacoub', 'Kheireddine Achour', 'Mohamed Mezghanni', 'Oumaima Zneidi', 'Salem Sfaxi'};
% Email-Address (from Moodle!):
% mail = {'[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]'};
%% Setup Image Reader
% Specify Scene Folder
src = "C:\Users\sfaxi\Desktop\CV\P2E_S5";
% Select Cameras
L = 1
R = 2
% Choose a start point
start = 100
% Choose the number of succseeding frames
N = 5
ir = ImageReader(src, L, R, start, N);
%% Output Settings
% Output Path
dest = "output.avi";
% Load Virual Background
bg = imread('C:\Users\sfaxi\Desktop\CV\bg.jpg');
% Select rendering mode
ren_mode = "substitute";
% Store Output?
store = true;