Scripting Resources for DigitalMicrograph™ |
Export Image as Tabbed Text |
|
Function |
Exports the front-most image to a text window as tabbed text. The data is in three tabbed columns: X, Y and Value. This is then saved as a text file, for subsequent import into Excel or other plotting/analysis packages. |
Version |
version:20130808, v1.0 |
Author |
D. R. G. Mitchell |
Acknowledgements |
- |
Comments |
Needs an image or 1D profile to be front-most. In the case of the latter, the Y column will contain only zeroes. The calibration is sourced from the image and if this is selected, values are exported in distance from the origin of the image (top left). If 1 is entered then pixel position (relative to the origin) is exported. |
System Requirements |
Should be compatible with all recent versions of DigitalMicrograph. |
Known Issues |
The extension of the saved file is .s, which is a DM script file. This is just plain text, so opening it in Excel and using the default import parameters will enable it to be read directly in. This is a very slow script. A prompt giving the estimated processing time is shown (eg 512 x 512 ca 25s). The script's progress is shown in the Progress window - so look at that window before assuming the script has crashed. |
Supported |
Yes |
Included Files |
Main script file. |
Source Code |
// calibration and will prompt with it. Selecting that calibration will set x and y values to distance // from the origin (top left of the image). Setting it to 1 will return pixel positions. // This will also work on a 1D spectrum or profile - the y column will be all zero. // It is very for large (>512 x 512) images. An estimate of the processing time will be provided // and the script progress is reported in the Progress window. // D. R. G. Mitchell, adminnospam@dmscripting.com (remove the nospam to make this work)
// Declare function prototypes documentwindow ExportasTabbedData(image profile, number pixelsize);
// Main program number nodocs=countdocumentwindowsoftype(5)
image front:=getfrontimage() number xsize, ysize, scale string units, imgname
scale=front.imagegetdimensionscale(0) units=front.imagegetdimensionunitstring(0)
result("\n\Exporting "+imgname+" as X/Y/Value tabbed text:") result("\nCalibration = "+scale+" "+units+"\n\n")
// Export the image as tabbed text and display the result number pixelsize=scale If(!getnumber("Enter the pixel size = ",pixelsize,pixelsize)) exit(0) documentwindow profiledata=ExportasTabbedData(front, pixelsize)
// Save the text file if(!saveasdialog("Save Tabbed Text Data as . . .",imgname, imgname)) exit(0)
// End of main program
// Function declarations
// Processing function: Pass in an image to create a tab delimited text file thereof in a script window. // Then save the script window as a .s (script) file - this is plain text. // Note this export is VERY slow for big images - it may take minutes. Be patient - it looks like the // script has hung - it probably hasn't. Completion is shown in the Progress window.
documentwindow ExportasTabbedData(image profile, number pixelsize) { // Get some info on the passed in image
string imgname=getname(profile) number scale, origin, xsize, ysize string units profile.imagegetdimensioncalibration(0, origin,scale,units,1) getsize(profile, xsize, ysize) number area =xsize*ysize number processingtime=area/10000 // approximate processing time
// Put up a warning if processing time is getting long - NB time estimate is a bit rubbery
if(processingtime>10) { if(!twobuttondialog("Extimated processing time : "+format(processingtime,"%3.0f")+"s","Proceed","Cancel")) exit(0) }
// create a text window to output the data
documentwindow textoutputwindow textoutputwindow=NewScriptWindow(imgname+" (tabbed text)", 84,202, 726, 740)
// Loop through all the pixels extracting the data and writing it to the text window
number i,j, size, currentsize size=xsize*ysize
For(j=0;j<ysize;j++) { openandsetprogresswindow("Working . . ",""+format(currentsize, "%3.0f")+" % complete","")
for(i=0; i<xsize; i++) { number pixelval=getpixel(profile, i,j) number xval=i*pixelsize number yval=j*pixelsize currentsize=((i*j)/size)*100
editorwindowaddtext(textoutputwindow,format(xval,"%8.4f")+"\t"+format(yval, "%8.4f")+"\t"+pixelval+"\n") } }
// Return the textoutputwindow
openandsetprogresswindow("","","") return textoutputwindow }
|