Skip to content
Snippets Groups Projects
Commit e137c9ae authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

Export 2D images without complaining...

parent bb3bd08a
No related branches found
No related tags found
No related merge requests found
...@@ -92,13 +92,6 @@ public class ExportImagePlusPlugIn implements Command ...@@ -92,13 +92,6 @@ public class ExportImagePlusPlugIn implements Command
return; return;
} }
// check the image dimensionality
if ( imp.getNDimensions() < 3 )
{
IJ.showMessage( "Image must be at least 3-dimensional!" );
return;
}
// get calibration and image size // get calibration and image size
final double pw = imp.getCalibration().pixelWidth; final double pw = imp.getCalibration().pixelWidth;
final double ph = imp.getCalibration().pixelHeight; final double ph = imp.getCalibration().pixelHeight;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment