#include <gudhi/Persistence_heat_maps.h>
 
#include <iostream>
#include <vector>
 
 
int main(int argc, char** argv) {
  std::clog << "This program computes average of persistence heat maps stored in files (the files needs to be "
            << "created beforehand).\n"
            << "The parameters of this programs are names of files with persistence heat maps.\n";
 
  if (argc < 3) {
    std::clog << "Wrong number of parameters, the program will now terminate \n";
    return 1;
  }
 
  std::vector<const char*> filenames;
  for (int i = 1; i < argc; ++i) {
    filenames.push_back(argv[i]);
  }
 
  std::vector<Persistence_heat_maps*> maps;
  for (size_t i = 0; i != filenames.size(); ++i) {
    maps.push_back(l);
  }
 
 
  for (size_t i = 0; i != filenames.size(); ++i) {
    delete maps[i];
  }
 
  std::clog << "Average can be found in 'average.mps' file\n";
  return 0;
}
void print_to_file(const char *filename) const
Definition: Persistence_heat_maps.h:813
 
void compute_average(const std::vector< Persistence_heat_maps * > &to_average)
Definition: Persistence_heat_maps.h:951
 
void load_from_file(const char *filename)
Definition: Persistence_heat_maps.h:829
 
Definition: Persistence_heat_maps.h:106