You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I've been happily using this code for several years. I recently installed Matlab 2024b and there appears to be no tifflib.mex file packaged this version as there was in 2024a and earlier.
if (exist('tifflib') ~= 3) at line 196 returns 0, resulting in an attempt to copy the empty strTiffLibLoc and the following error:
Error in TIFFStack (line 199)
copyfile(strTiffLibLoc, fullfile(strTIFFStackLoc, 'private'), 'f')
this is easy enough to circumvent by avoiding the attempt to copy an empty value. The rest of the code runs using the "slower non-TiffLib access".
I was just wondering if it is possible to use the "accelerated TIFF library" in this or future versions of Matlab. Or maybe I'm missing something obvious here.
Thanks for your help!
The text was updated successfully, but these errors were encountered:
Hi, I've been happily using this code for several years. I recently installed Matlab 2024b and there appears to be no tifflib.mex file packaged this version as there was in 2024a and earlier.
if (exist('tifflib') ~= 3)
at line 196 returns 0, resulting in an attempt to copy the emptystrTiffLibLoc
and the following error:this is easy enough to circumvent by avoiding the attempt to copy an empty value. The rest of the code runs using the "slower non-TiffLib access".
I was just wondering if it is possible to use the "accelerated TIFF library" in this or future versions of Matlab. Or maybe I'm missing something obvious here.
Thanks for your help!
The text was updated successfully, but these errors were encountered: