Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CLI/ComputeMeanShapes/computeMean.hxx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "computeMean.h"

#include <iostream>



vtkStandardNewMacro(ComputeMean);
Expand Down
3 changes: 2 additions & 1 deletion CLI/SurfaceFeaturesExtractor/surfacefeaturesextractor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <vtkPolyDataReader.h>
#include <vtkPolyDataWriter.h>

#include <iostream>
#include <iterator>


Expand All @@ -12,7 +13,7 @@ int main (int argc, char *argv[])
PARSE_ARGS;

if(inputMesh.compare("") == 0){
cout<<"type --help to learn how to use this program."<<endl;
std::cout<<"type --help to learn how to use this program."<<std::endl;
return 1;
}

Expand Down
1 change: 1 addition & 0 deletions CLI/SurfaceFeaturesExtractor/surfacefeaturesextractor.hxx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "surfacefeaturesextractor.h"
#include <vtkDoubleArray.h>
#include <iostream>
#include <sstream>
#include <vtkObjectFactory.h>

Expand Down