|
1 | 1 | /***===============================================================================
|
2 | 2 | *
|
3 |
| - * MotiQ_3D Version plugin for ImageJ, Version v0.1.1 |
| 3 | + * MotiQ_3D Version plugin for ImageJ, Version v0.1.3 |
4 | 4 | *
|
5 | 5 | * Copyright (C) 2014-2017 Jan Niklas Hansen
|
6 | 6 | * First version: July 28, 2014
|
7 |
| - * This Version: May 03, 2017 |
| 7 | + * This Version: December 1, 2017 |
8 | 8 | *
|
9 | 9 | * This program is free software; you can redistribute it and/or
|
10 | 10 | * modify it under the terms of the GNU General Public License
|
|
42 | 42 | public class MotiQ_3D implements PlugIn, Measurements{
|
43 | 43 | //Name variables
|
44 | 44 | static final String pluginName = "MotiQ 3D Analyzer";
|
45 |
| - static final String pluginVersion = "v0.1.1"; |
| 45 | + static final String pluginVersion = "v0.1.3"; |
46 | 46 |
|
47 | 47 | DecimalFormat dformat6 = new DecimalFormat("#0.000000");
|
48 | 48 | DecimalFormat dformat3 = new DecimalFormat("#0.000");
|
@@ -610,7 +610,7 @@ public void windowClosing(WindowEvent winEvt) {
|
610 | 610 | }
|
611 | 611 | }
|
612 | 612 |
|
613 |
| - //write points in save collection back to image |
| 613 | + //write points in saveCollection back to image |
614 | 614 | pointSaveCollection.trimToSize();
|
615 | 615 | for(int i = 0; i < pointSaveCollection.size(); i++){
|
616 | 616 | imp.getStack().setVoxel(pointSaveCollection.get(i).x, pointSaveCollection.get(i).y,
|
@@ -855,7 +855,7 @@ public void windowClosing(WindowEvent winEvt) {
|
855 | 855 | if(saveDate) filePrefix += "_" + NameDateFormatter.format(currentDate);
|
856 | 856 |
|
857 | 857 | //Create subfolder to save additional files
|
858 |
| - String subfolderPrefix = "" + dir [task] + filePrefix + System.getProperty("file.separator") + filePrefix; |
| 858 | + String subfolderPrefix = "" + dir [task] + filePrefix + System.getProperty("file.separator") + "M3D"; |
859 | 859 | try{
|
860 | 860 | new File(dir [task] + filePrefix).mkdirs();
|
861 | 861 | }catch(Exception e){
|
|
0 commit comments