Skip to content

Commit 6d971b6

Browse files
committed
Version-0.22
1 parent 7d9b63a commit 6d971b6

15 files changed

+1857
-214
lines changed

README.md

+33-8
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,12 @@ Batch conversion of SEM images (``Process -> Batch -> Macro...``) from tiff to p
5454

5555
* Remove all overlays including the scale bar.
5656

57-
##### Misc. Functions (Icon: ?)
57+
##### Misc. Functions (Icon: =)
5858

59-
* `Set pixel size and unit`: Change image scale and unit. Default values are fetched from the selected image. You can then specify the values directly. For the unit, you can also choose from a list of special units for electron microscopy from the `Use special unit` menu. The latter do not shown on my Windows system, but on Linux. Currently in the list: Å, Å$^{-1}$ , and nm$^{-1}$ .
59+
* `Set pixel size and unit`: Change image scale and unit based on pixel size (e.g. copied from DigitalMicrograph). Default values are fetched from the selected image. You can then specify the values directly. For the unit, you can also choose from a list of special units for electron microscopy from the `Use special unit` menu. The latter do not shown on my Windows system, but on Linux. Currently in the list: Å, Å$^{-1}$ , and nm$^{-1}$ .
60+
* `Set image width and unit`: Change image scale and unit based on image width. Other options as above.
61+
* `Calculate electron wavelength`: Calculate relativistic de Broglie wavelength for electrons for a given beam energy.
62+
* `Edit source code`: Opens the source code in the Fiji editor.
6063
* `Help`: Opens the help menu.
6164

6265
## Requirements and Installation
@@ -83,7 +86,7 @@ Currently, only the system types `Helios G4 FX`, `Strata DB`, and `Quanta FEG` a
8386

8487
Warning: Code is not optimized in any way, but should work (?). :-)
8588

86-
###### QuickScaleBar Options
89+
#### QuickScaleBar Options
8790

8891
``Relative height``: Height of scale bar wrt image height in pixel (default: ``0.02``, 2% of image height)
8992

@@ -115,13 +118,19 @@ Warning: Code is not optimized in any way, but should work (?). :-)
115118

116119
``U``: Unit switching factor (default: ``3``). Example: Will switch from µm to nm if image width is below 3 µm. Will switch from nm to µm if image width is larger than 3000 nm.
117120

121+
`Use Angstrom`: Deselect to skip Angstrom between nm and pm.
122+
118123
`Auto re-scale images`: If true/1, automatically rescale (using no interpolation/nearest interpolation) small image width or height to at least `rescale_target_px` value. (default: `0`, false). Useful to resize small cropped areas of larger images. This is the same as using `CTRL+E` and rescaling with `Interpolation: None`.
119124

120125
`rescale_target_px`: Target minimum pixel size for `auto_rescale`. (default: `512`)
121126

122127
`Run custom macro commands`: Run commands specified in next line (default: `false`). In the `Custom macro commands` field, multiple commands must be separated by `;`.
123128

124-
###### FEI Crop Scalebar Options
129+
`Consider additional scale bar values`: You can specify a comma-separated list of values which are considered for the scale bar width in addition to the default values (default: `false` and values `75,150` as an example)
130+
131+
#### FEI Crop Scalebar Options
132+
133+
`Add scale bar`: Add scale bar to the FEI/TFS image (default: `true`). Deselect if you, e.g., just want to crop the data bar and scale the image. This can be useful in combination with batch mode to preprocess (scale and remove FEI data bar) a folder of images.
125134

126135
`Crop data bar`: Crop data bar of FEI/TFS image (default: `true`)
127136

@@ -131,7 +140,7 @@ Warning: Code is not optimized in any way, but should work (?). :-)
131140

132141
`Run custom macro commands`: Run commands specified in next line (default: `false`). In the `Custom macro commands` field, multiple commands must be separated by `;`.
133142

134-
###### Hotkeys:
143+
#### Hotkeys:
135144

136145
[ j ] - Save image as jpeg. Prompts for quality/compression factor.
137146

@@ -164,9 +173,27 @@ The next GIF shows an example workflow when working with presentations (here Mic
164173

165174
## Changelog
166175

176+
### v0.22
177+
178+
* Slightly changed the icon styles.
179+
180+
* The grabbed value for `Set pixel size and unit` for the current image is read-out with more decimals.
181+
182+
* New function: `Set image width and unit` to scale the image based on known image width.
183+
184+
* New function: `Calculate electron wavelength` from given beam energy. Will be posted to the log window.
185+
186+
* New function: `Edit source code`. Advanced option to easily access/edit the source code.
187+
188+
* New features for QuickScaleBar: The `Use Angstrom` option can be used to skip/ignore the Angstrom unit for `Auto-unit switching`. It will then switch directly from nm to pm.
189+
190+
`Consider additional scale bar values` can be used to extend the dictionary of "magic values"" for the scale bar width to snap to.
191+
192+
* New features for FEI Crop Scalebar: The new `Add scale bar` checkbox can be deselected to only crop/scale the FEI/TFS image.
193+
167194
### v0.21
168195

169-
* Rewrote ``FEI_crop_scalebar.ijm `` to crop the FEI/TFS info bar based on the `[Scan] VerFieldSize` and `[Scan]PixelHeight` values. This should make the cropping work for every FEI/TFS machine as long as both values are found in the tiff metadata.
196+
* Rewrote ``FEI_crop_scalebar.ijm `` to crop the FEI/TFS info bar based on the `[Scan] VerFieldSize` and `[Scan] PixelHeight` values. This should make the cropping work for every FEI/TFS machine as long as both values are found in the tiff metadata.
170197

171198
* Added an legacy option to use "list-based" cropping as in the old v0.2 version in the `FEI_crop_scalebar.ijm` option menu (`Use list from code for cropping value (legacy option)`). **Important: If your cropping does not work with the new version, copy your determined cropping values into the new if-clause in the code and activate the aforementioned menu option.**
172199

@@ -175,8 +202,6 @@ The next GIF shows an example workflow when working with presentations (here Mic
175202
* A new function `Set pixel size and unit` was added to the drop-down menu. IT will fetch the values from the front-most image. You can then specify the values directly or use some special formats for electron microscopy from the `Use special unit` menu. The latter do not shown on my Windows system, but on Linux. Currently in the list: Å, Å$^{-1}$, and nm$^{-1}$.
176203

177204
* Updated the readme.
178-
179-
180205

181206
### v0.2
182207

README.pdf

9.29 KB
Binary file not shown.

archive/v0.21/README.md

+193
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,193 @@
1+
# em-scalebartools
2+
3+
Fiji macro toolset to quickly add a scale bar with reasonable size to an image. Developed for electron microscopy.
4+
5+
## Examples
6+
7+
Using QuickScaleBar on a HRTEM image. Note the similar size of the scale bars for the 4096² image (center) and the cropped 512² ROI image (right).
8+
9+
<img title="Example 0" src="images/example0.png" alt="Example" data-align="center">
10+
11+
Using FEI Crop Scalebar on an SEM image.
12+
13+
<img title="Example 1" src="images/example1.png" alt="Example" data-align="center">
14+
15+
Batch conversion of SEM images (``Process -> Batch -> Macro...``) from tiff to png using ``FEI_Crop_Scalebar.ijm``.
16+
17+
<img title="Example 1" src="images/example2.png" alt="Example" data-align="center">
18+
19+
## Macro description
20+
21+
##### QuickScaleBar Tool (Icon: <u>SB</u>)
22+
23+
* One-click action to add a scale bar to an image. Right click opens the options menu.
24+
25+
* The scale bar height and font size is adjusted based on image height (or width).
26+
27+
* The scale bar width is adjusted based on scaled image width (or height, or larger/smaller of the two) and rounded to next "good looking" number.
28+
29+
* The scale bar appearance can be set up just like the normal settings for `Analyze -> Tools -> Scale bar...`.
30+
31+
* Optional: Automatically switch units to make scale bar more appealing. E.g., an image with horizontal field width of 0.25 µm will be switched to 250 nm. The scale bar will then also be in nm.
32+
33+
* Optional: Automatically re-scale image to (at least) a specified image size in pixels without interpolation (= nearest neighbor interpolation). This is convenient for programs like PowerPoint which like to automatically interpolate "small" images.
34+
35+
* Optional: Run custom macro commands provided in the options menu, e.g. `run('mpl-viridis');` to change LUT to viridis.
36+
37+
##### FEI Crop Scalebar Tool (Icon: FEI)
38+
39+
* One-click action to crop away the databar from an FEI/TFS SEM/FIB image and to add a scale bar. Right click opens the options menu.
40+
41+
* Scale bar behaviour is the same as for QuickScaleBar tool and settings are taken from the QuickScaleBar options.
42+
43+
* Optional: Run custom macro commands provided in the options menu, e.g. `run('mpl-viridis');` to change LUT to viridis.
44+
45+
* Especially useful for batch conversion of SEM/FIB images (run from `Process -> Batch -> Macro...` ): In the batch processing menu insert the macro command `runMacro('FEI_Crop_Scalebar.ijm');`.
46+
47+
##### Move Overlays Tool (Circle icon)
48+
49+
* Move around scale bar for fine tuning of the position. Will anchor to special positions for easier alignment.
50+
51+
* Taken from: [Overlay Editing Tools](https://imagej.nih.gov/ij/source/macros/Overlay%20Editing%20Tools.txt)
52+
53+
##### Remove Overlays Tool (x icon)
54+
55+
* Remove all overlays including the scale bar.
56+
57+
##### Misc. Functions (Icon: ?)
58+
59+
* `Set pixel size and unit`: Change image scale and unit. Default values are fetched from the selected image. You can then specify the values directly. For the unit, you can also choose from a list of special units for electron microscopy from the `Use special unit` menu. The latter do not shown on my Windows system, but on Linux. Currently in the list: Å, Å$^{-1}$ , and nm$^{-1}$ .
60+
* `Help`: Opens the help menu.
61+
62+
## Requirements and Installation
63+
64+
* Cropping the FEI/TFS info bar requires the useful [EM tool](https://imagej.net/plugins/imbalence) plugin by **IMBalENce** as FEI/TFS images are scaled with [SEM FEI metadata scale](https://imagej.net/plugins/sem-fei-metadata-scale). Install via the Fiji update site.
65+
66+
* Download the latest [release](https://github.com/lukmuk/em-scalebartools/releases), extract the `macros` folder, and copy it to your Fiji installation folder. It will add the``FEI_Crop_Scalebar.ijm`` macro to the macros folder and the `EMScaleBarTools.ijm` toolset to the `macros/toolset` folder.
67+
68+
* Restart Fiji and select the `EMScaleBarTools` from `More Tools...` (>>) menu.
69+
70+
##### Add a new microscope system type
71+
72+
**Important: Should not be required for version 0.21 and higher. The cropping value will be determined automatically based on the extracted metadata.**
73+
74+
Currently, only the system types `Helios G4 FX`, `Strata DB`, and `Quanta FEG` are implemented in `FEI Crop Scalebar`. You can add others in the following way:
75+
76+
- Open a SEM/FIB image of your FEI/TFS machine.
77+
78+
- Run ``EM tool->SEM FEI metadata scale`` and check the Log window for the system type: ``[System] SystemType : ScopeName``
79+
80+
- For images of different size (e.g. 4096 by Y, 2048 by Y, 1024 by Y, ...) check the cut-off point (pixel) between the image and the databar (zoom in). Add a new ``if`` clause to the macro similar to the ones already in the macro (starting with ``if(SystemType == ScopeName)``. E.g., for newer systems (`Helios G4 FX`) the cut-off is a power of two (512, 1024, ...) but for older scopes (such as ``Strata DB``) the values are more 'random' and you can simply specify a list with the cut-off values for different image sizes.
81+
82+
## A short code documentation
83+
84+
Warning: Code is not optimized in any way, but should work (?). :-)
85+
86+
###### QuickScaleBar Options
87+
88+
``Relative height``: Height of scale bar wrt image height in pixel (default: ``0.02``, 2% of image height)
89+
90+
`Scaling factor`: Additional scaling factor that is multiplied with `Relative height` (default: `1`). Useful to quickly adjust scale-bar size by a scaling factor.
91+
92+
`Relative width`: Width of scale bar with respect to `Scalebar size reference`option (default: `0.2`, 20% of image width), will get rounded to next smaller "nice" value, see (``vals`` array in the code).
93+
94+
`Relative fontsize`: Font size wrt `Scalebar height` (default: `3`, point size of scale bar height).
95+
96+
`Scalebar color`: Font size color (default: ``'Black'``).
97+
98+
`Background color`: Background color (default: `'White'`). Use ``'None'`` to remove background.
99+
100+
``Scalebar location``: Location/position of scale bar (default: ``'Lower Right'``).
101+
102+
`Bold`: Bold font (default: `true`).
103+
104+
`Overlay`: Add scale bar as an overlay (default: `true`).
105+
106+
`Serif font`: Serif font (default: `false`).
107+
108+
`Hide`: Hide font, only plot scale bar (default: `false`). Will create a copy of the image with the scale-bar length in the title.
109+
110+
`Scalebar size reference`: Base scale bar size on width/height/smaller/larger edge of the image (default: `'Larger'`). You can adjust this for narrow images to modify scale bar appearance. Use `Height`/`Width` if you want to have identical scale bar sizes for images of same `Height`/`Width`.
111+
112+
`Auto unit-switching`: Automatically adjusts units between m and Å based on `Check`and `U` values. (default: `true`).
113+
114+
`(Auto unit-switching) Check`: Check width/height/both of image for unit switching (default: `'Width'`).
115+
116+
``U``: Unit switching factor (default: ``3``). Example: Will switch from µm to nm if image width is below 3 µm. Will switch from nm to µm if image width is larger than 3000 nm.
117+
118+
`Auto re-scale images`: If true/1, automatically rescale (using no interpolation/nearest interpolation) small image width or height to at least `rescale_target_px` value. (default: `0`, false). Useful to resize small cropped areas of larger images. This is the same as using `CTRL+E` and rescaling with `Interpolation: None`.
119+
120+
`rescale_target_px`: Target minimum pixel size for `auto_rescale`. (default: `512`)
121+
122+
`Run custom macro commands`: Run commands specified in next line (default: `false`). In the `Custom macro commands` field, multiple commands must be separated by `;`.
123+
124+
###### FEI Crop Scalebar Options
125+
126+
`Crop data bar`: Crop data bar of FEI/TFS image (default: `true`)
127+
128+
`Use list from code for cropping value (legacy option)`). Use list-based cropping value as in v0.2 and earlier. **Important: If your cropping does not work with the version 0.21 and higher, copy your determined cropping values into the new if-clause in the code and activate the aforementioned menu option.**
129+
130+
`Show metadata in log window`: Keep log window open or close it (default: `false`).
131+
132+
`Run custom macro commands`: Run commands specified in next line (default: `false`). In the `Custom macro commands` field, multiple commands must be separated by `;`.
133+
134+
###### Hotkeys:
135+
136+
[ j ] - Save image as jpeg. Prompts for quality/compression factor.
137+
138+
[ p ] - Save images as png.
139+
140+
[ c ] - Copy image to system clipboard.
141+
142+
## EMScaleBarTools in action
143+
144+
Examples are from v0.2.
145+
146+
Basic usage with cropping of a TFS/FEI databar, addition of a scale bar, moving and removing of the scale bar:
147+
<img title="Basic usage" src="images/EMscalebartools_01.gif" alt="Example" data-align="center">
148+
149+
The next GIF shows the application of `Auto re-scale images` to upscale a small (in pixels) inset of an image:
150+
<img title="Using Auto re-scale" src="images/EMscalebartools_02.gif" alt="Example" data-align="center">
151+
152+
The next GIF shows an example workflow when working with presentations (here Microsoft PowerPoint). For a horizontal alignment of images (here an SEM and an HAADF-STEM image) with the same desired image height, the scale bar reference is switched to `Height`. Note the automatic handling of unit-switching and rescaling as in the previous example. The image are then copied via the hotkey c to the system clipboard and pasted into PowerPoint.
153+
<img title="Workflow for presentations" src="images/EMscalebartools_03.gif" alt="Example" data-align="center">
154+
155+
## Other useful scalebar tools
156+
157+
* Python: [matplotlib-scalebar](https://github.com/ppinard/matplotlib-scalebar) by ppinard
158+
159+
* DM/GMS: [Scale Bar Control](http://www.dmscripting.com/scalebarcontrol.html) by D. R. G. Mitchell
160+
161+
* Fiji/ImageJ: [asc-ImageJ-Fancy-Labels](https://github.com/peterjlee/asc-ImageJ-Fancy-Labels) by peterjlee
162+
163+
* Fiji/ImageJ: [Scale Bar Tools for Microscopes](http://image.bio.methods.free.fr/ImageJ/?Scale-Bar-Tools-for-Microscopes.html&lang=en) by Gilles Carpentier
164+
165+
## Changelog
166+
167+
### v0.21
168+
169+
* Rewrote ``FEI_crop_scalebar.ijm `` to crop the FEI/TFS info bar based on the `[Scan] VerFieldSize` and `[Scan]PixelHeight` values. This should make the cropping work for every FEI/TFS machine as long as both values are found in the tiff metadata.
170+
171+
* Added an legacy option to use "list-based" cropping as in the old v0.2 version in the `FEI_crop_scalebar.ijm` option menu (`Use list from code for cropping value (legacy option)`). **Important: If your cropping does not work with the new version, copy your determined cropping values into the new if-clause in the code and activate the aforementioned menu option.**
172+
173+
* The `Help` is now found in a new drop-down menu.
174+
175+
* A new function `Set pixel size and unit` was added to the drop-down menu. IT will fetch the values from the front-most image. You can then specify the values directly or use some special formats for electron microscopy from the `Use special unit` menu. The latter do not shown on my Windows system, but on Linux. Currently in the list: Å, Å$^{-1}$, and nm$^{-1}$.
176+
177+
* Updated the readme.
178+
179+
180+
181+
### v0.2
182+
183+
* Renamed `ScaleBarTools.ijm` to `EMScaleBarTools.ijm` because there is also a plugin by [Gilles Carpentier](http://image.bio.methods.free.fr/ImageJ/?Scale-Bar-Tools-for-Microscopes.html&lang=en) with a similar name. Makes it clear that is meant for EM.
184+
185+
* Reorganization of the code: `QuickScaleBar.ijm` was merged into `EMScaleBarTools.ijm`. `FEI_Crop_Scalebar.ijm` is still a stand-alone macro for easier use with batch processing.
186+
187+
* Included option menus for some icon tools, which can be accessed by right-click. More convenient editing than in the source code.
188+
189+
* Options parameters are stored internally in java variables and saved for future sessions (`ij.get` and `ij.set` calls). I took inspiration from another toolsets macro: [Roi 1-click tools](https://imagej.net/plugins/roi-1-click-tools)
190+
191+
* Added more options for scale bar appearance (serif font, bold, hide, ...).
192+
193+
* Added two additional tools in the menu: Move Overlays and Remove Overlays for quick manipulation of the scale bar (which is often an overlay).

0 commit comments

Comments
 (0)