------------------------------------------------------------------------------ GetHelpString
| 68 | //------------------------------------------------------------------------------ |
| 69 | // GetHelpString |
| 70 | std::string |
| 71 | GetHelpString() |
| 72 | { |
| 73 | return "Usage:\n" |
| 74 | "itkGPUResampleImageFilterTest\n" |
| 75 | " -in input file name\n" |
| 76 | " -out output file names.(outputCPU outputGPU)\n" |
| 77 | " -rmse acceptable rmse error\n" |
| 78 | " [-i] interpolator, one of {NearestNeighbor, Linear, BSpline}, default NearestNeighbor\n" |
| 79 | " [-t] transforms, one of {Affine, Translation, BSpline, Euler, Similarity} or combinations with " |
| 80 | "option \"-c\", default Affine\n" |
| 81 | " [-c] use combo transform, default false\n" |
| 82 | " [-p] parameter file for the B-spline transform\n" |
| 83 | " [-threads] number of threads, default maximum\n"; |
| 84 | |
| 85 | } // end GetHelpString() |
| 86 | |
| 87 | |
| 88 | //------------------------------------------------------------------------------ |