plateform
stringclasses
1 value
repo_name
stringlengths
13
113
name
stringlengths
3
74
ext
stringclasses
1 value
path
stringlengths
12
229
size
int64
23
843k
source_encoding
stringclasses
9 values
md5
stringlengths
32
32
text
stringlengths
23
843k
github
jeremiedecock/snippets-master
delete_functions_and_variables_in_memory.m
.m
snippets-master/octave/delete_functions_and_variables_in_memory.m
1,633
utf_8
0067eb57dd0b302113c62f19f836aa83
#!/usr/bin/octave -q % Copyright (c) 2014 Jérémie DECOCK (http://www.jdhp.org) % Permission is hereby granted, free of charge, to any person obtaining a copy % of this software and associated documentation files (the "Software"), to deal % in the Software without restriction, including without limitation the rights %...
github
jeremiedecock/snippets-master
function_hello.m
.m
snippets-master/octave/function_hello.m
1,261
utf_8
342ca991ab161bed6a55d06923a4ff3e
#!/usr/bin/octave -q % Copyright (c) 2014 Jérémie DECOCK (http://www.jdhp.org) % Permission is hereby granted, free of charge, to any person obtaining a copy % of this software and associated documentation files (the "Software"), to deal % in the Software without restriction, including without limitation the rights %...
github
mckapur/CourseraMachineLearning-master
submit.m
.m
CourseraMachineLearning-master/ex6/mlclass/submit.m
16,836
utf_8
d4c87e5dbf32a81bdaf04fd017fe4cb3
function submit(partId, webSubmit) %SUBMIT Submit your code and output to the ml-class servers % SUBMIT() will connect to the ml-class server and submit your solution fprintf('==\n== [ml-class] Submitting Solutions | Programming Exercise %s\n==\n', ... homework_id()); if ~exist('partId', 'var') || isem...
github
mckapur/CourseraMachineLearning-master
porterStemmer.m
.m
CourseraMachineLearning-master/ex6/mlclass/porterStemmer.m
9,902
utf_8
7ed5acd925808fde342fc72bd62ebc4d
function stem = porterStemmer(inString) % Applies the Porter Stemming algorithm as presented in the following % paper: % Porter, 1980, An algorithm for suffix stripping, Program, Vol. 14, % no. 3, pp 130-137 % Original code modeled after the C version provided at: % http://www.tartarus.org/~martin/PorterStemmer/c.tx...
github
mckapur/CourseraMachineLearning-master
submitWeb.m
.m
CourseraMachineLearning-master/ex6/mlclass/submitWeb.m
827
utf_8
bfb2fa08cac9d8d797e3071d3fdd7ca1
% submitWeb Creates files from your code and output for web submission. % % If the submit function does not work for you, use the web-submission mechanism. % Call this function to produce a file for the part you wish to submit. Then, % submit the file to the class servers using the "Web Submission" button on ...
github
mckapur/CourseraMachineLearning-master
costFunctionReg.m
.m
CourseraMachineLearning-master/ex2/mlclass/costFunctionReg.m
1,730
utf_8
2c4e3a131f58bb025af4078029753e09
function [J, grad] = costFunctionReg(theta, X, y, lambda) %COSTFUNCTIONREG Compute cost and gradient for logistic regression with regularization % J = COSTFUNCTIONREG(theta, X, y, lambda) computes the cost of using % theta as the parameter for regularized logistic regression and the % gradient of the cost w.r.t. ...
github
mckapur/CourseraMachineLearning-master
submit.m
.m
CourseraMachineLearning-master/ex2/mlclass/submit.m
17,086
utf_8
7b02ce6b9daa919a9a66ef0adb401b07
function submit(partId, webSubmit) %SUBMIT Submit your code and output to the ml-class servers % SUBMIT() will connect to the ml-class server and submit your solution fprintf('==\n== [ml-class] Submitting Solutions | Programming Exercise %s\n==\n', ... homework_id()); if ~exist('partId', 'var') || isem...
github
mckapur/CourseraMachineLearning-master
submitWeb.m
.m
CourseraMachineLearning-master/ex2/mlclass/submitWeb.m
827
utf_8
bfb2fa08cac9d8d797e3071d3fdd7ca1
% submitWeb Creates files from your code and output for web submission. % % If the submit function does not work for you, use the web-submission mechanism. % Call this function to produce a file for the part you wish to submit. Then, % submit the file to the class servers using the "Web Submission" button on ...
github
mckapur/CourseraMachineLearning-master
costFunction.m
.m
CourseraMachineLearning-master/ex2/mlclass/costFunction.m
1,452
utf_8
214ade9632cff678fdbab3aa61d0fcb4
function [J, grad] = costFunction(theta, X, y) %COSTFUNCTION Compute cost and gradient for logistic regression % J = COSTFUNCTION(theta, X, y) computes the cost of using theta as the % parameter for logistic regression and the gradient of the cost % w.r.t. to the parameters. % Initialize some useful values m = l...
github
mckapur/CourseraMachineLearning-master
submit.m
.m
CourseraMachineLearning-master/ex4/mlclass/submit.m
17,129
utf_8
917c487f37cf14037c77e3c57ad78ce1
function submit(partId, webSubmit) %SUBMIT Submit your code and output to the ml-class servers % SUBMIT() will connect to the ml-class server and submit your solution fprintf('==\n== [ml-class] Submitting Solutions | Programming Exercise %s\n==\n', ... homework_id()); if ~exist('partId', 'var') || isem...
github
mckapur/CourseraMachineLearning-master
submitWeb.m
.m
CourseraMachineLearning-master/ex4/mlclass/submitWeb.m
827
utf_8
bfb2fa08cac9d8d797e3071d3fdd7ca1
% submitWeb Creates files from your code and output for web submission. % % If the submit function does not work for you, use the web-submission mechanism. % Call this function to produce a file for the part you wish to submit. Then, % submit the file to the class servers using the "Web Submission" button on ...
github
mckapur/CourseraMachineLearning-master
submit.m
.m
CourseraMachineLearning-master/ex3/mlclass/submit.m
17,041
utf_8
07a62d95df0814b4ffbc6c2f4b433e22
function submit(partId, webSubmit) %SUBMIT Submit your code and output to the ml-class servers % SUBMIT() will connect to the ml-class server and submit your solution fprintf('==\n== [ml-class] Submitting Solutions | Programming Exercise %s\n==\n', ... homework_id()); if ~exist('partId', 'var') || isem...
github
mckapur/CourseraMachineLearning-master
submitWeb.m
.m
CourseraMachineLearning-master/ex3/mlclass/submitWeb.m
827
utf_8
bfb2fa08cac9d8d797e3071d3fdd7ca1
% submitWeb Creates files from your code and output for web submission. % % If the submit function does not work for you, use the web-submission mechanism. % Call this function to produce a file for the part you wish to submit. Then, % submit the file to the class servers using the "Web Submission" button on ...
github
mckapur/CourseraMachineLearning-master
submit.m
.m
CourseraMachineLearning-master/ex1/mlclass/submit.m
17,317
utf_8
14dfeccc6eb749406cb5d77fabb6bf47
function submit(partId, webSubmit) %SUBMIT Submit your code and output to the ml-class servers % SUBMIT() will connect to the ml-class server and submit your solution fprintf('==\n== [ml-class] Submitting Solutions | Programming Exercise %s\n==\n', ... homework_id()); if ~exist('partId', 'var') || isem...
github
mckapur/CourseraMachineLearning-master
submitWeb.m
.m
CourseraMachineLearning-master/ex1/mlclass/submitWeb.m
827
utf_8
bfb2fa08cac9d8d797e3071d3fdd7ca1
% submitWeb Creates files from your code and output for web submission. % % If the submit function does not work for you, use the web-submission mechanism. % Call this function to produce a file for the part you wish to submit. Then, % submit the file to the class servers using the "Web Submission" button on ...
github
mckapur/CourseraMachineLearning-master
submit.m
.m
CourseraMachineLearning-master/ex5/mlclass/submit.m
17,211
utf_8
057662350ffa8db95583373185a26a6b
function submit(partId, webSubmit) %SUBMIT Submit your code and output to the ml-class servers % SUBMIT() will connect to the ml-class server and submit your solution fprintf('==\n== [ml-class] Submitting Solutions | Programming Exercise %s\n==\n', ... homework_id()); if ~exist('partId', 'var') || isem...
github
mckapur/CourseraMachineLearning-master
submitWeb.m
.m
CourseraMachineLearning-master/ex5/mlclass/submitWeb.m
827
utf_8
bfb2fa08cac9d8d797e3071d3fdd7ca1
% submitWeb Creates files from your code and output for web submission. % % If the submit function does not work for you, use the web-submission mechanism. % Call this function to produce a file for the part you wish to submit. Then, % submit the file to the class servers using the "Web Submission" button on ...
github
nicklhy/vehicle_detector-master
voc_eval.m
.m
vehicle_detector-master/third-parties/fast-rcnn/datasets/VOCdevkit-matlab-wrapper/voc_eval.m
1,389
utf_8
fd77d0da53b2585aa65e0da5edc5fe33
function res = voc_eval(path, comp_id, test_set, output_dir, rm_res) VOCopts = get_voc_opts(path); VOCopts.testset = test_set; for i = 1:length(VOCopts.classes) cls = VOCopts.classes{i}; res(i) = voc_eval_cls(cls, VOCopts, comp_id, output_dir, rm_res); end fprintf('\n~~~~~~~~~~~~~~~~~~~~\n'); fprintf('Results:\n...
github
vigneshba/Drone_TLD-master
bb_isdef.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_isdef.m
732
utf_8
1911c216dcf53052fa1e497573834331
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_height.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_height.m
741
utf_8
6d7277c3472c784c9c53d3f0eda4ecf8
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_burn.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_burn.m
1,175
utf_8
acc90a8e4518d726de86c2141e1dba25
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_square.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_square.m
903
utf_8
3458eefd11e60ce622e450b3558ad54d
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_scan.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_scan.m
2,046
utf_8
ae24572e546e70ee24940ae7a9c9df03
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_size.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_size.m
745
utf_8
a583129dbbebd247c1dd3bb123d7f530
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_distance.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_distance.m
826
utf_8
0ee0b871301af032107c3737be1458ec
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_predict.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_predict.m
1,025
utf_8
5aa21d6b12c0d9707a0f2bc04780d2bb
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_cluster.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_cluster.m
1,326
utf_8
2742daa26d0d81fb7c6db11ea05cc707
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_scale.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_scale.m
804
utf_8
454ed5f8e993a84eb0d2aa5f5064a337
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_rescale_relative.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_rescale_relative.m
912
utf_8
ad87dc76f67de2068a9f1808d313ee46
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_width.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_width.m
740
utf_8
9362e273a835829d0de7d40c96239d63
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_get_similar.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_get_similar.m
784
utf_8
db1d2f79a46c7ebdac8cefc1977518db
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_click.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_click.m
1,105
utf_8
8be105ff1e78e341477b283c9b2fbefa
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_isout.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_isout.m
808
utf_8
779e56379651316cafbfccacfe5b21a4
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_hull.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_hull.m
790
utf_8
ca09f538a86cf63e22404d5aaefad906
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_isin.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_isin.m
803
utf_8
45b983accd3e42de44963d9ea40d0d60
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_draw.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_draw.m
1,155
utf_8
28bdce4ae624e796995b29d5034d959b
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_normalize.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_normalize.m
980
utf_8
b312f50bdd94a926d446f2b33c4e8f59
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_shift_absolute.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_shift_absolute.m
846
utf_8
6c1838f152b86c2b0f99344fc37c3e7e
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_click_move.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_click_move.m
862
utf_8
6d617aeb74431afdbf7b6bb09b205097
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_rescale_absolute.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_rescale_absolute.m
813
utf_8
071c6af95702f513508d30af111d847a
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_center.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_center.m
808
utf_8
5ada95fd1ef912475d45243c66291d0c
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_cluster_confidence.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_cluster_confidence.m
1,551
utf_8
6331470e8f82e25481ffe1da8a478afb
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_points.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_points.m
1,312
utf_8
b43873b44ea7379ee282558c6fd2db23
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_shift_relative.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_shift_relative.m
932
utf_8
7b5118e2267558eb484122a9c3a8f8e5
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
bb_correct.m
.m
Drone_TLD-master/Drone_TLD/bbox/bb_correct.m
1,353
utf_8
b0e79b0b80fc5246f1b60eabf84c95f4
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
idx2id.m
.m
Drone_TLD-master/Drone_TLD/utils/idx2id.m
750
utf_8
574d29cdf4f4b5a9faf3a03594679489
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
uniquecount.m
.m
Drone_TLD-master/Drone_TLD/utils/uniquecount.m
859
utf_8
8563d64ec1cc8dcc6043b38a065fae44
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
mat2img.m
.m
Drone_TLD-master/Drone_TLD/utils/mat2img.m
1,360
utf_8
33584080e1db51e5748523903c887797
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
median2.m
.m
Drone_TLD-master/Drone_TLD/utils/median2.m
752
utf_8
fa7cb1fb75e29a57bbde1af0fb49fafc
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
pseudorandom_indexes.m
.m
Drone_TLD-master/Drone_TLD/utils/pseudorandom_indexes.m
754
utf_8
dbc5ffed0a95ba76aa1afca772698716
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
n2s.m
.m
Drone_TLD-master/Drone_TLD/utils/n2s.m
754
utf_8
e6fe82f0094c30da4540119043bd9ba0
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
randvalues.m
.m
Drone_TLD-master/Drone_TLD/utils/randvalues.m
953
utf_8
04c8a9d9e944d47c3de96858af2f7ee7
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
vnormp.m
.m
Drone_TLD-master/Drone_TLD/utils/vnormp.m
755
utf_8
fdf0e0a9b670c038f62d153c1806af4a
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
ntuples.m
.m
Drone_TLD-master/Drone_TLD/utils/ntuples.m
974
utf_8
fa5a7c36c097c4edd9874d960c171a4a
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
repcel.m
.m
Drone_TLD-master/Drone_TLD/utils/repcel.m
791
utf_8
265200bfa76cdb0fd1c540d03fa86970
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldSaveImages.m
.m
Drone_TLD-master/Drone_TLD/tld/tldSaveImages.m
889
utf_8
359c033397e7c609741c94ccd98c3f0b
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldGenerateNegativeData.m
.m
Drone_TLD-master/Drone_TLD/tld/tldGenerateNegativeData.m
1,179
utf_8
46733f065a43cf57b6ab6d293721a46e
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldTrack_occlusion.m
.m
Drone_TLD-master/Drone_TLD/tld/tldTrack_occlusion.m
3,502
utf_8
f87df433904501fe28480644cada0be7
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldGetPattern.m
.m
Drone_TLD-master/Drone_TLD/tld/tldGetPattern.m
1,308
utf_8
7e0f7dd5b3ca2db06fe2028dcc3a23ad
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldGenerateAprioriData.m
.m
Drone_TLD-master/Drone_TLD/tld/tldGenerateAprioriData.m
1,203
utf_8
bec45284c1cba979102ee898f512a916
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldLearning.m
.m
Drone_TLD-master/Drone_TLD/tld/tldLearning.m
2,467
utf_8
cdc46f2ea4719b1fdb7fd140a0da8998
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldTrack.m
.m
Drone_TLD-master/Drone_TLD/tld/tldTrack.m
1,402
utf_8
1bc0965fad3a4689c88f4c5c352fd322
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldDisplay.m
.m
Drone_TLD-master/Drone_TLD/tld/tldDisplay.m
7,614
utf_8
fe876ca8e8b721b0120f9d1d23a9edd7
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldDemo.m
.m
Drone_TLD-master/Drone_TLD/tld/tldDemo.m
5,551
utf_8
8ea31d3f546c40ea764b6ad226cc2d87
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldInitSource.m
.m
Drone_TLD-master/Drone_TLD/tld/tldInitSource.m
975
utf_8
08e75cd4898e8b472f85d93722901367
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldUpdateDetectorConservative.m
.m
Drone_TLD-master/Drone_TLD/tld/tldUpdateDetectorConservative.m
3,177
utf_8
d06513b5b90c467cfe65c2964e73d106
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldExample.m
.m
Drone_TLD-master/Drone_TLD/tld/tldExample.m
2,602
utf_8
d1c86aa29e79431b9437565e913527dc
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldTrack_occlusion.2.m
.m
Drone_TLD-master/Drone_TLD/tld/tldTrack_occlusion.2.m
2,288
utf_8
56fa54c6bfa68c571a138ae6ca3f7113
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldPatch2Pattern.m
.m
Drone_TLD-master/Drone_TLD/tld/tldPatch2Pattern.m
849
utf_8
378a5d6d2515fb297fe82ee68489e335
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldGetPattern_fast.m
.m
Drone_TLD-master/Drone_TLD/tld/tldGetPattern_fast.m
1,228
utf_8
4594f838f805a5f6a925d9b1313f00a1
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldInitFirstFrame.m
.m
Drone_TLD-master/Drone_TLD/tld/tldInitFirstFrame.m
1,338
utf_8
c968f20efb8e0dfa7a161ddc7d5898f0
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldUpdateDetector.m
.m
Drone_TLD-master/Drone_TLD/tld/tldUpdateDetector.m
2,747
utf_8
9b6b47a94d7a83e80cd6c6aa0d12e798
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldProcessFrame.m
.m
Drone_TLD-master/Drone_TLD/tld/tldProcessFrame.m
3,415
utf_8
a5f36f149092612e36294fca4ca313dc
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldMinMaxVar.m
.m
Drone_TLD-master/Drone_TLD/tld/tldMinMaxVar.m
787
utf_8
6bc7abd74b3a198002dad281fd338e9a
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldGeneratePositiveData.m
.m
Drone_TLD-master/Drone_TLD/tld/tldGeneratePositiveData.m
1,930
utf_8
b715a773628674eb9a260032b7b7be71
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldInitDetector.m
.m
Drone_TLD-master/Drone_TLD/tld/tldInitDetector.m
1,658
utf_8
cb9c98dd92b363cb7881a0c9a49ae7fb
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldSplitNegativeData.m
.m
Drone_TLD-master/Drone_TLD/tld/tldSplitNegativeData.m
997
utf_8
d67c9e67476f38a124adca519c196434
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldDetection.m
.m
Drone_TLD-master/Drone_TLD/tld/tldDetection.m
2,958
utf_8
5b414e75959c825c5048ff36b48ac986
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldTracking.m
.m
Drone_TLD-master/Drone_TLD/tld/tldTracking.m
2,342
utf_8
df229de81b01ba4cfb3698668098fec4
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldTrainNN.m
.m
Drone_TLD-master/Drone_TLD/tld/tldTrainNN.m
1,753
utf_8
dec2d5a84f83264c476b9a5b5bc02dfb
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldNN.m
.m
Drone_TLD-master/Drone_TLD/tld/tldNN.m
2,298
utf_8
75cc563cbd90565b6a089cd87a305f32
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldLoadAprioriImages.m
.m
Drone_TLD-master/Drone_TLD/tld/tldLoadAprioriImages.m
872
utf_8
9cde39b6db46df85a3f57d7c3bdcb92c
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldGenerateFeatures.m
.m
Drone_TLD-master/Drone_TLD/tld/tldGenerateFeatures.m
1,506
utf_8
d2eec948f5d50de841ac554a5778890a
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldInit.m
.m
Drone_TLD-master/Drone_TLD/tld/tldInit.m
4,374
utf_8
854f51e947f87a057a09954b2fd6b7e4
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
tldGeneratePositiveData_single_bbox.m
.m
Drone_TLD-master/Drone_TLD/tld/tldGeneratePositiveData_single_bbox.m
1,176
utf_8
2a6f3cfd36a1340a0c7bc5d0c885522a
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
img_dir.m
.m
Drone_TLD-master/Drone_TLD/img/img_dir.m
1,035
utf_8
704b570af268c1abe9c1e688d676d8c1
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
img_get.m
.m
Drone_TLD-master/Drone_TLD/img/img_get.m
891
utf_8
0fed0485616c03d1535b7537b126f535
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
img_blur.m
.m
Drone_TLD-master/Drone_TLD/img/img_blur.m
944
utf_8
1e9180adb6663c278888e9cfbdf6c9b0
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
img_patch.m
.m
Drone_TLD-master/Drone_TLD/img/img_patch.m
2,443
utf_8
cf5a3b392dd0e5c3485d8d39f6dc500d
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
img_alloc.m
.m
Drone_TLD-master/Drone_TLD/img/img_alloc.m
1,104
utf_8
1604212cb1ac801b6234738e7e1586c7
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
vigneshba/Drone_TLD-master
cam_wait.m
.m
Drone_TLD-master/Drone_TLD/img/cam_wait.m
973
utf_8
cb695fe1789b0c7dbcf19b49b893d714
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
xiaoganghan/humble-video-master
echo_diagnostic.m
.m
humble-video-master/humble-video-captive/src/main/gnu/libspeex/csrc/libspeex/echo_diagnostic.m
2,076
utf_8
8d5e7563976fbd9bd2eda26711f7d8dc
% Attempts to diagnose AEC problems from recorded samples % % out = echo_diagnostic(rec_file, play_file, out_file, tail_length) % % Computes the full matrix inversion to cancel echo from the % recording 'rec_file' using the far end signal 'play_file' using % a filter length of 'tail_length'. The output is saved to 'o...
github
htm-community/nupic.audio-master
runSpringerSegmentationAlgorithm.m
.m
nupic.audio-master/CinC2016Challenge_PCG/examples/nupic2016/runSpringerSegmentationAlgorithm.m
2,719
utf_8
3992cddf5ce19695b582ab458a27e675
% function assigned_states = runSpringerSegmentationAlgorithm(audio_data, Fs, B_matrix, pi_vector, total_observation_distribution, figures) % % A function to assign states to a PCG recording using a duration dependant % logisitic regression-based HMM, using the trained B_matrix and pi_vector % trained in "trainSpringer...
github
htm-community/nupic.audio-master
getHeartRateSchmidt.m
.m
nupic.audio-master/CinC2016Challenge_PCG/examples/nupic2016/getHeartRateSchmidt.m
3,744
utf_8
1ed442555a04142f56a009968f3ce1bb
% function [heartRate systolicTimeInterval] = getHeartRateSchmidt(audio_data, Fs, figures) % % Derive the heart rate and the sytolic time interval from a PCG recording. % This is used in the duration-dependant HMM-based segmentation of the PCG % recording. % % This method is based on analysis of the autocorrelation fun...
github
htm-community/nupic.audio-master
get_duration_distributions.m
.m
nupic.audio-master/CinC2016Challenge_PCG/examples/nupic2016/get_duration_distributions.m
3,838
utf_8
73e1d0a24c75a37aaec86578d7edde9d
% function [d_distributions max_S1 min_S1 max_S2 min_S2 max_systole min_systole max_diastole min_diastole] = get_duration_distributions(heartrate,systolic_time) % % This function calculates the duration distributions for each heart cycle % state, and the minimum and maximum times for each state. % %% Inputs: % heartrat...
github
htm-community/nupic.audio-master
butterworth_low_pass_filter.m
.m
nupic.audio-master/CinC2016Challenge_PCG/examples/nupic2016/butterworth_low_pass_filter.m
2,910
utf_8
b7646abeb8d9ef0bef5bb0390bf19e89
% function low_pass_filtered_signal = butterworth_low_pass_filter(original_signal,order,cutoff,sampling_frequency, figures) % % Low-pass filter a given signal using a forward-backward, zero-phase % butterworth low-pass filter. % %% INPUTS: % original_signal: The 1D signal to be filtered % order: The order of the...
github
htm-community/nupic.audio-master
getDWT.m
.m
nupic.audio-master/CinC2016Challenge_PCG/examples/nupic2016/getDWT.m
2,523
utf_8
e3cb331767f9a35456289a7afdfebf3b
% function [cD cA] = getDWT(X,N,Name) % % finds the discrete wavelet transform at level N for signal X using the % wavelet specified by Name. % %% Inputs: % X: the original signal % N: the decomposition level % Name: the wavelet name to use % %% Outputs: % cD is a N-row matrix containing the detail coefficie...
github
htm-community/nupic.audio-master
default_Springer_HSMM_options.m
.m
nupic.audio-master/CinC2016Challenge_PCG/examples/nupic2016/default_Springer_HSMM_options.m
1,639
utf_8
c60c752c26e15c49182f51bf63b927b0
% function springer_options = default_Springer_HSMM_options() % % The default options to be used with the Springer segmentation algorithm. % USAGE: springer_options = default_Springer_HSMM_options % % Developed for use in the paper: % D. Springer et al., "Logistic Regression-HSMM-based Heart Sound % Segmentation," IEE...
github
htm-community/nupic.audio-master
viterbiDecodePCG_Springer.m
.m
nupic.audio-master/CinC2016Challenge_PCG/examples/nupic2016/viterbiDecodePCG_Springer.m
15,252
utf_8
1506ed816b87a08f7bb7b54bd5811f35
% function [delta, psi, qt] = viterbiDecodePCG_Springer(observation_sequence, pi_vector, b_matrix, total_obs_distribution, heartrate, systolic_time, Fs, figures) % % This function calculates the delta, psi and qt matrices associated with % the Viterbi decoding algorithm from: % L. R. Rabiner, "A tutorial on hidden Mark...
github
htm-community/nupic.audio-master
schmidt_spike_removal.m
.m
nupic.audio-master/CinC2016Challenge_PCG/examples/nupic2016/schmidt_spike_removal.m
4,383
utf_8
04f80bbfe14d805f7ea10c8f7274427e
% function [despiked_signal] = schmidt_spike_removal(original_signal, fs) % % This function removes the spikes in a signal as done by Schmidt et al in % the paper: % Schmidt, S. E., Holst-Hansen, C., Graff, C., Toft, E., & Struijk, J. J. % (2010). Segmentation of heart sound recordings by a duration-dependent % hidden ...