Returns the DICOM tags of the specified file as a string.
(String path)
| 193 | |
| 194 | /** Returns the DICOM tags of the specified file as a string. */ |
| 195 | public String getInfo(String path) { |
| 196 | showErrors = false; |
| 197 | gettingInfo = true; |
| 198 | run(path); |
| 199 | return info; |
| 200 | } |
| 201 | |
| 202 | /** Convert 16-bit signed to unsigned if all pixels>=0. */ |
| 203 | void convertToUnsigned(ImagePlus imp, FileInfo fi) { |