Victre 2.0 Pipeline  0.0.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
breastMass.hxx
Go to the documentation of this file.
1 
16 #ifndef BREASTMASS_HXX_
17 #define BREASTMASS_HXX_
18 
19 // boost
20 #include <boost/math/special_functions/spherical_harmonic.hpp>
21 #include <boost/program_options.hpp>
22 
23 #include <iostream>
24 #include <math.h>
25 #include <unistd.h>
26 #include <sys/stat.h>
27 
28 #include <omp.h>
29 
30 // vtk
31 #include <vtkVersion.h>
32 #include <vtkSmartPointer.h>
33 #include <vtkMath.h>
34 #include <vtkPNGWriter.h>
35 #include <vtkImageData.h>
36 #include <vtkXMLImageDataWriter.h>
37 #include <vtkMinimalStandardRandomSequence.h>
38 #include <vtkBoxMuellerRandomSequence.h>
39 #include <vtkImageInterpolator.h>
40 
41 // create spiculation segments
42 void createBranch(double, double, double, double, double, double, double, double,
43  double, vtkImageData*, vtkMinimalStandardRandomSequence*, vtkBoxMuellerRandomSequence*, boost::program_options::variables_map);
44 
45 
46 #endif /* BREASTMASS_HXX_ */
void createBranch(double r, double theta, double phi, double thetaDir, double phiDir, double rad, double len, double contProb, double gam, vtkImageData *mass, vtkMinimalStandardRandomSequence *rgen, vtkBoxMuellerRandomSequence *rNormGen, po::variables_map vm)
Definition: breastMass.cxx:586