|
Dear all,
I'm facing a calibration conflict (error message in checkbox) while
opening .tiff files.
The images are 748x577 pixels and have a size of 844kb.
Does anyone know what could be the reason or where to tweak the
calibration in order to have it working.
Clicking ok is not an option, because I have a large batch of images to
be analysed.
Selecting: disable global calibration or disable these messages doesn't
help.
If I open the images manually by File Open... there is no error.
So it should be in my macro which consists of a for loop to analyze the
complete batch of images:
-----------------------------------------------------------------
dir = getDirectory( "Choose a directory" );
listFiles(dir);
function listFiles(dir) {
list = getFileList(dir);
for (q=0; q<list.length; q++) {
title = list[q];
if (endsWith(title,".TIFF")||endsWith(title,".tiff")) {
open(dir+list[q]);
... code
}
}
}
-----------------------------------------------------------------
Christian Breukers
---------------------------------------------------
Biophysical Engineering Group
Faculty of Science and Technology
University of Twente
The Netherlands
---------------------------------------------------
|