| 33 | */ |
| 34 | |
| 35 | std::string |
| 36 | GetHelpString() |
| 37 | { |
| 38 | return "Usage:\n" |
| 39 | "elxComputeOverlap\n" |
| 40 | "This program computes the overlap of two images.\n" |
| 41 | "The results is computed as:\n" |
| 42 | " 2 * L1( im1 AND im2 )\n" |
| 43 | " ------------------------\n" |
| 44 | " L1( im1 ) + L1( im2 )\n\n" |
| 45 | " -in inputFilename1 inputFilename2"; |
| 46 | // "Supported: 2D, 3D, (unsigned) char, (unsigned) short"; |
| 47 | |
| 48 | } // end GetHelpString() |
| 49 | |
| 50 | //------------------------------------------------------------------------------------- |
| 51 |