Large image tools - crop does not work?
Answers
-
Hi,
We are also suffering from this problem, we've recently installed surveyor and IPP to produce large tiled images that we can process in IPP. After acquiring a mosaic big tiff file using surveyor we open them in IPP and the large image tools tab appears, we select an ROI and try to crop it but nothing happens.
Regards,
Alex Raven, SCRM, University of Edinburgh
0 -
Hi Alex,
the problem has been solved in the meantime. Please contact VernR from the Media Cybernetics Support. They were very helpful and wrote a macro to solve the problem. It will also be fixed in the software code in the next update.
Kind regards,
Arnulf
0 -
Alex,
I will send you the macro to the email address in your profile.
0 -
This only happens on systems with over 8GB of RAM. It has to do with the image memory usage limit handling.
It is corrected in update 9.1.2
Until the update is available, below is a macro that will allow you to set the limit anywhere from 2% to 95% of usable physical memory. In a machine with 48GB of memory, setting the value to 5% would give a memory limit similar to the default limit of 60% in a 4GB system.
Public Sub AssignImageMemoryUsageLimitPcnt()
Dim dUsageLimitPcnt As Double = CDbl(InputBox("Image memory usage limit (%):", "AssignImageMemoryUsageLimitPcnt","0"))
If dUsageLimitPcnt < 2 OrElse dUsageLimitPcnt > 95 Then
MsgBox("Usage Limit must be between 2 and 95%. No change made.",,"AssignImageMemoryUsageLimitPcnt")
Exit Sub
End If
Dim myRM As McResourceManager = ThisApplication.ResourceManager
myRM.SetMemoryLimit(mcMemoryType.mcmtImageMemory, dUsageLimitPcnt)
End Sub 'AssignImageMemoryUsageLimitPcnt
After 9.1.2 comes out, this macro is no longer needed.
0
Categories
- All Categories
- 961 Image-Pro v9 and higher
- 9 Image-Pro FAQs
- 18 Image-Pro Download & Install
- 448 Image-Pro General Discussions
- 486 Image-Pro Automation (Macros, Apps, Reports)
- 20 AutoQuant Deconvolution
- 2 AutoQuant Download & Install
- 18 AutoQuant General Discussions
- 195 Image-Pro Plus v7 and lower
- 3 Image-Pro Plus Download & Install
- 106 Image-Pro Plus General Discussions
- 86 Image-Pro Plus Automation with Macros
- 19 Legacy Products
- 16 Image-Pro Premier 3D General Discussions
- 26 Image-Pro Insight General Discussions