-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstate_global_values.m
More file actions
15 lines (12 loc) · 901 Bytes
/
state_global_values.m
File metadata and controls
15 lines (12 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
% Gabriel Melendez Melendez
% October 2017
function [] = state_global_values()
global comp_in comp_out comp_dec image_path results_path arith_coder_path;
root_path = 'C:\Users\Gabriel\Documents\GitHub\PVOWang\';
comp_in = strcat(root_path,'arithmetic_coder_files\in.txt'); % Files required to use arithmetic coding
comp_out = strcat(root_path,'arithmetic_coder_files\out.txt');
comp_dec = strcat(root_path,'arithmetic_coder_files\salidades.txt');
image_path = strcat(root_path,'img\'); % Images path without name
results_path = strcat(root_path,'results\'); % Path in which image results will be saved
arith_coder_path = strcat(root_path,'codificador_aritmetico.jar'); % Path and name to the arithmetic coder .jar file
end