From 20ec321944108cd1fe74b37ea45db3ba1a2d526a Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Mon, 13 Oct 2008 10:10:58 +0200 Subject: [PATCH] automatic commit --- Makefile | 16 +++++++++------- README.txt | 20 ++++++++++---------- boosted_classifier.cc | 4 +++- boosted_classifier.h | 4 +++- chrono.cc | 4 +++- chrono.h | 4 +++- classifier.cc | 4 +++- classifier.h | 4 +++- classifier_reader.cc | 4 +++- classifier_reader.h | 4 +++- decision_tree.cc | 4 +++- decision_tree.h | 4 +++- detector.cc | 4 +++- detector.h | 4 +++- error_rates.cc | 4 +++- error_rates.h | 4 +++- folding.cc | 4 +++- fusion_sort.cc | 4 +++- fusion_sort.h | 4 +++- gaussian.cc | 4 +++- gaussian.h | 4 +++- global.cc | 4 +++- global.h | 4 +++- graph.sh | 4 +++- image.cc | 4 +++- image.h | 4 +++- interval.cc | 4 +++- interval.h | 4 +++- jpeg_misc.cc | 4 +++- jpeg_misc.h | 4 +++- labelled_image.cc | 4 +++- labelled_image.h | 4 +++- labelled_image_pool.cc | 4 +++- labelled_image_pool.h | 4 +++- labelled_image_pool_file.cc | 4 +++- labelled_image_pool_file.h | 4 +++- labelled_image_pool_subset.cc | 4 +++- labelled_image_pool_subset.h | 4 +++- list_to_pool.cc | 4 +++- loss_machine.cc | 4 +++- loss_machine.h | 4 +++- materials.cc | 4 +++- materials.h | 4 +++- misc.cc | 4 +++- misc.h | 4 +++- param_parser.cc | 4 +++- param_parser.h | 4 +++- parsing.cc | 4 +++- parsing.h | 4 +++- parsing_pool.cc | 4 +++- parsing_pool.h | 4 +++- pi_feature.cc | 4 +++- pi_feature.h | 4 +++- pi_feature_family.cc | 4 +++- pi_feature_family.h | 4 +++- pi_referential.cc | 4 +++- pi_referential.h | 4 +++- pose.cc | 4 +++- pose.h | 4 +++- pose_cell.cc | 4 +++- pose_cell.h | 4 +++- pose_cell_hierarchy.cc | 4 +++- pose_cell_hierarchy.h | 4 +++- pose_cell_hierarchy_reader.cc | 4 +++- pose_cell_hierarchy_reader.h | 4 +++- pose_cell_scored_set.cc | 4 +++- pose_cell_scored_set.h | 4 +++- pose_cell_set.cc | 4 +++- pose_cell_set.h | 4 +++- progress_bar.cc | 4 +++- progress_bar.h | 4 +++- rectangle.h | 4 +++- rgb_image.cc | 4 +++- rgb_image.h | 4 +++- rgb_image_subpixel.cc | 4 +++- rgb_image_subpixel.h | 4 +++- rich_image.cc | 4 +++- rich_image.h | 4 +++- run.sh | 4 +++- sample_set.cc | 4 +++- sample_set.h | 4 +++- shared.cc | 4 +++- shared.h | 4 +++- shared_responses.cc | 4 +++- shared_responses.h | 4 +++- storable.cc | 4 +++- storable.h | 4 +++- tools.cc | 4 +++- tools.h | 4 +++- 89 files changed, 280 insertions(+), 104 deletions(-) diff --git a/Makefile b/Makefile index f0a1bed..c4d2907 100644 --- a/Makefile +++ b/Makefile @@ -2,17 +2,19 @@ ######################################################################### # This program is free software: you can redistribute it and/or modify # # it under the terms of the version 3 of the GNU General Public License # -# as published by the Free Software Foundation. # -# # +# as published by the Free Software Foundation. # +# # # This program is distributed in the hope that it will be useful, but # -# WITHOUT ANY WARRANTY; without even the implied warranty of # +# WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # -# General Public License for more details. # -# # +# General Public License for more details. # +# # # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # -# # -# Written by Francois Fleuret, (C) IDIAP # +# # +# Written by Francois Fleuret # +# (C) Idiap Research Institute # +# # # Contact for comments & bug reports # ######################################################################### diff --git a/README.txt b/README.txt index cbfa44a..ddf43b0 100644 --- a/README.txt +++ b/README.txt @@ -1,6 +1,6 @@ -I. INTRODUCTION ---------------- +INTRODUCTION +------------ This is the documentation for the open-source C++ implementation of the folded hierarchy of classifiers for cat detection described in @@ -13,8 +13,8 @@ I. INTRODUCTION Contact Francois Fleuret at fleuret@idiap.ch for comments and bug reports. -II. INSTALLATION ----------------- +INSTALLATION +------------ If you have installed the RateMyKitten images provided on @@ -64,8 +64,8 @@ II. INSTALLATION g++, results may vary with different versions of the compiler and/or different levels of optimization. -III. EXECUTING THE PROGRAM --------------------------- +EXECUTING THE PROGRAM +--------------------- The main command has to be invoked with a list of parameter values, followed by commands to execute. @@ -79,8 +79,8 @@ III. EXECUTING THE PROGRAM ./folding --pool-name=./something.pool open-pool train-detector write-detector -IV. PARAMETERS --------------- +PARAMETERS +---------- For every parameter below, the default value is given between parenthesis. @@ -231,8 +231,8 @@ IV. PARAMETERS Should we display a progress bar during long computations. -V. COMMANDS ------------ +COMMANDS +-------- * open-pool diff --git a/boosted_classifier.cc b/boosted_classifier.cc index 8080ad2..bd4f511 100644 --- a/boosted_classifier.cc +++ b/boosted_classifier.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/boosted_classifier.h b/boosted_classifier.h index 8f52e5a..bf86fca 100644 --- a/boosted_classifier.h +++ b/boosted_classifier.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/chrono.cc b/chrono.cc index c4b7267..3ee78b0 100644 --- a/chrono.cc +++ b/chrono.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/chrono.h b/chrono.h index 8b26bcf..ef11ce8 100644 --- a/chrono.h +++ b/chrono.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/classifier.cc b/classifier.cc index 6cf61e8..657191c 100644 --- a/classifier.cc +++ b/classifier.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/classifier.h b/classifier.h index b5dc2a7..7a93642 100644 --- a/classifier.h +++ b/classifier.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/classifier_reader.cc b/classifier_reader.cc index dcd1e5b..85c9408 100644 --- a/classifier_reader.cc +++ b/classifier_reader.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/classifier_reader.h b/classifier_reader.h index 5d68cee..374c576 100644 --- a/classifier_reader.h +++ b/classifier_reader.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/decision_tree.cc b/decision_tree.cc index e2b3daa..0a1d4a3 100644 --- a/decision_tree.cc +++ b/decision_tree.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/decision_tree.h b/decision_tree.h index 59dba57..70fdcad 100644 --- a/decision_tree.h +++ b/decision_tree.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/detector.cc b/detector.cc index 5eb0867..5ae1de0 100644 --- a/detector.cc +++ b/detector.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/detector.h b/detector.h index 72248af..86d13e6 100644 --- a/detector.h +++ b/detector.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/error_rates.cc b/error_rates.cc index 14d4d8c..ae59d7c 100644 --- a/error_rates.cc +++ b/error_rates.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/error_rates.h b/error_rates.h index 71906d6..1e4d8a0 100644 --- a/error_rates.h +++ b/error_rates.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/folding.cc b/folding.cc index c592955..ac45ee1 100644 --- a/folding.cc +++ b/folding.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/fusion_sort.cc b/fusion_sort.cc index 3774588..4a88cba 100644 --- a/fusion_sort.cc +++ b/fusion_sort.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/fusion_sort.h b/fusion_sort.h index d2c1cd1..c01dea9 100644 --- a/fusion_sort.h +++ b/fusion_sort.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/gaussian.cc b/gaussian.cc index 3278377..3fd109f 100644 --- a/gaussian.cc +++ b/gaussian.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/gaussian.h b/gaussian.h index da02d30..3f510af 100644 --- a/gaussian.h +++ b/gaussian.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/global.cc b/global.cc index de53962..bbefd21 100644 --- a/global.cc +++ b/global.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/global.h b/global.h index afe9dd2..d19596d 100644 --- a/global.h +++ b/global.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/graph.sh b/graph.sh index c1beaee..611eb84 100755 --- a/graph.sh +++ b/graph.sh @@ -13,7 +13,9 @@ # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # # # -# Written and (C) by Francois Fleuret # +# Written by Francois Fleuret # +# (C) Idiap Research Institute # +# # # Contact for comments & bug reports # ######################################################################### diff --git a/image.cc b/image.cc index 1194f06..5162ea3 100644 --- a/image.cc +++ b/image.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/image.h b/image.h index 8c65017..770750c 100644 --- a/image.h +++ b/image.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/interval.cc b/interval.cc index 1d7bde9..85c3605 100644 --- a/interval.cc +++ b/interval.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/interval.h b/interval.h index 3091556..619a496 100644 --- a/interval.h +++ b/interval.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/jpeg_misc.cc b/jpeg_misc.cc index 3d653aa..95dc5e3 100644 --- a/jpeg_misc.cc +++ b/jpeg_misc.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/jpeg_misc.h b/jpeg_misc.h index b6d95ea..b55709d 100644 --- a/jpeg_misc.h +++ b/jpeg_misc.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/labelled_image.cc b/labelled_image.cc index d88e428..e855f71 100644 --- a/labelled_image.cc +++ b/labelled_image.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/labelled_image.h b/labelled_image.h index 5d23402..bac7c6c 100644 --- a/labelled_image.h +++ b/labelled_image.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/labelled_image_pool.cc b/labelled_image_pool.cc index bbfe943..fb4bafb 100644 --- a/labelled_image_pool.cc +++ b/labelled_image_pool.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/labelled_image_pool.h b/labelled_image_pool.h index 6c3e5e7..ca3e013 100644 --- a/labelled_image_pool.h +++ b/labelled_image_pool.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/labelled_image_pool_file.cc b/labelled_image_pool_file.cc index cb099ee..880caa0 100644 --- a/labelled_image_pool_file.cc +++ b/labelled_image_pool_file.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/labelled_image_pool_file.h b/labelled_image_pool_file.h index efa7abe..e83566e 100644 --- a/labelled_image_pool_file.h +++ b/labelled_image_pool_file.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/labelled_image_pool_subset.cc b/labelled_image_pool_subset.cc index 3b46d48..4b85132 100644 --- a/labelled_image_pool_subset.cc +++ b/labelled_image_pool_subset.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/labelled_image_pool_subset.h b/labelled_image_pool_subset.h index cc86696..fa986b2 100644 --- a/labelled_image_pool_subset.h +++ b/labelled_image_pool_subset.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/list_to_pool.cc b/list_to_pool.cc index 9297cd7..6cb9a1d 100644 --- a/list_to_pool.cc +++ b/list_to_pool.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/loss_machine.cc b/loss_machine.cc index 6ff78d5..c596de6 100644 --- a/loss_machine.cc +++ b/loss_machine.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/loss_machine.h b/loss_machine.h index 50a611e..0b84adc 100644 --- a/loss_machine.h +++ b/loss_machine.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/materials.cc b/materials.cc index ad79830..eea7395 100644 --- a/materials.cc +++ b/materials.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/materials.h b/materials.h index a271a22..0756e56 100644 --- a/materials.h +++ b/materials.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/misc.cc b/misc.cc index 2d2258d..46e981a 100644 --- a/misc.cc +++ b/misc.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/misc.h b/misc.h index d2d5b22..b52317e 100644 --- a/misc.h +++ b/misc.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/param_parser.cc b/param_parser.cc index 5ae8a41..79b2604 100644 --- a/param_parser.cc +++ b/param_parser.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/param_parser.h b/param_parser.h index 57d0082..53a6893 100644 --- a/param_parser.h +++ b/param_parser.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/parsing.cc b/parsing.cc index 9d0060d..137c525 100644 --- a/parsing.cc +++ b/parsing.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/parsing.h b/parsing.h index 4f1c9b5..8e3ee3c 100644 --- a/parsing.h +++ b/parsing.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/parsing_pool.cc b/parsing_pool.cc index f12a377..79206dc 100644 --- a/parsing_pool.cc +++ b/parsing_pool.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/parsing_pool.h b/parsing_pool.h index f7b67be..0a73ddf 100644 --- a/parsing_pool.h +++ b/parsing_pool.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pi_feature.cc b/pi_feature.cc index 7f9cf85..6a9b217 100644 --- a/pi_feature.cc +++ b/pi_feature.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pi_feature.h b/pi_feature.h index b03a922..f6186be 100644 --- a/pi_feature.h +++ b/pi_feature.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pi_feature_family.cc b/pi_feature_family.cc index ba3a35e..017a9f7 100644 --- a/pi_feature_family.cc +++ b/pi_feature_family.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pi_feature_family.h b/pi_feature_family.h index 84ac2f0..d7f2dd3 100644 --- a/pi_feature_family.h +++ b/pi_feature_family.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pi_referential.cc b/pi_referential.cc index 3d81b93..07c5011 100644 --- a/pi_referential.cc +++ b/pi_referential.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pi_referential.h b/pi_referential.h index 8d2613e..d5908f6 100644 --- a/pi_referential.h +++ b/pi_referential.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose.cc b/pose.cc index 989f685..3e30e56 100644 --- a/pose.cc +++ b/pose.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose.h b/pose.h index 300aba1..8949269 100644 --- a/pose.h +++ b/pose.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell.cc b/pose_cell.cc index def9b2f..38979a3 100644 --- a/pose_cell.cc +++ b/pose_cell.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell.h b/pose_cell.h index 3744145..4f96baa 100644 --- a/pose_cell.h +++ b/pose_cell.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell_hierarchy.cc b/pose_cell_hierarchy.cc index b8c5eff..e12a32f 100644 --- a/pose_cell_hierarchy.cc +++ b/pose_cell_hierarchy.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell_hierarchy.h b/pose_cell_hierarchy.h index 2ecfde9..f89512d 100644 --- a/pose_cell_hierarchy.h +++ b/pose_cell_hierarchy.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell_hierarchy_reader.cc b/pose_cell_hierarchy_reader.cc index 1d3b5b5..8201265 100644 --- a/pose_cell_hierarchy_reader.cc +++ b/pose_cell_hierarchy_reader.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell_hierarchy_reader.h b/pose_cell_hierarchy_reader.h index 77ae99d..ad082d6 100644 --- a/pose_cell_hierarchy_reader.h +++ b/pose_cell_hierarchy_reader.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell_scored_set.cc b/pose_cell_scored_set.cc index 253c3ee..f4f3806 100644 --- a/pose_cell_scored_set.cc +++ b/pose_cell_scored_set.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell_scored_set.h b/pose_cell_scored_set.h index e3bc877..8e6d4fb 100644 --- a/pose_cell_scored_set.h +++ b/pose_cell_scored_set.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell_set.cc b/pose_cell_set.cc index 62d04dd..5f9659f 100644 --- a/pose_cell_set.cc +++ b/pose_cell_set.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/pose_cell_set.h b/pose_cell_set.h index b0a5fac..68471a3 100644 --- a/pose_cell_set.h +++ b/pose_cell_set.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/progress_bar.cc b/progress_bar.cc index b7800eb..67370a9 100644 --- a/progress_bar.cc +++ b/progress_bar.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/progress_bar.h b/progress_bar.h index 50aa7c4..4449fdd 100644 --- a/progress_bar.h +++ b/progress_bar.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/rectangle.h b/rectangle.h index b8fd645..0d5867e 100644 --- a/rectangle.h +++ b/rectangle.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/rgb_image.cc b/rgb_image.cc index 1fd38cb..c343f47 100644 --- a/rgb_image.cc +++ b/rgb_image.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/rgb_image.h b/rgb_image.h index 9105534..5921c23 100644 --- a/rgb_image.h +++ b/rgb_image.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/rgb_image_subpixel.cc b/rgb_image_subpixel.cc index 3338f50..958d748 100644 --- a/rgb_image_subpixel.cc +++ b/rgb_image_subpixel.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/rgb_image_subpixel.h b/rgb_image_subpixel.h index 393068b..778f084 100644 --- a/rgb_image_subpixel.h +++ b/rgb_image_subpixel.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/rich_image.cc b/rich_image.cc index e1d2112..61b7a84 100644 --- a/rich_image.cc +++ b/rich_image.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/rich_image.h b/rich_image.h index 2d9bd6b..eb2d162 100644 --- a/rich_image.h +++ b/rich_image.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/run.sh b/run.sh index f718d11..678c00e 100755 --- a/run.sh +++ b/run.sh @@ -13,7 +13,9 @@ # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # # # -# Written by Francois Fleuret, (C) IDIAP # +# Written by Francois Fleuret # +# (C) Idiap Research Institute # +# # # Contact for comments & bug reports # ######################################################################### diff --git a/sample_set.cc b/sample_set.cc index bf323e6..f2daf36 100644 --- a/sample_set.cc +++ b/sample_set.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/sample_set.h b/sample_set.h index ed870e8..9841d66 100644 --- a/sample_set.h +++ b/sample_set.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/shared.cc b/shared.cc index 6986ad6..207acd3 100644 --- a/shared.cc +++ b/shared.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/shared.h b/shared.h index b17e6f0..020ab58 100644 --- a/shared.h +++ b/shared.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/shared_responses.cc b/shared_responses.cc index 5d96ece..cebe10e 100644 --- a/shared_responses.cc +++ b/shared_responses.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/shared_responses.h b/shared_responses.h index 28b9a62..2f88cb3 100644 --- a/shared_responses.h +++ b/shared_responses.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/storable.cc b/storable.cc index 4e57ae1..a565773 100644 --- a/storable.cc +++ b/storable.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/storable.h b/storable.h index d9fca51..7bdf5ee 100644 --- a/storable.h +++ b/storable.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/tools.cc b/tools.cc index 1834cd8..d6d068a 100644 --- a/tools.cc +++ b/tools.cc @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// diff --git a/tools.h b/tools.h index ec35551..99b1ade 100644 --- a/tools.h +++ b/tools.h @@ -12,7 +12,9 @@ // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // // // -// Written by Francois Fleuret, (C) IDIAP // +// Written by Francois Fleuret // +// (C) Idiap Research Institute // +// // // Contact for comments & bug reports // /////////////////////////////////////////////////////////////////////////// -- 2.20.1