Effacer les filtres
Effacer les filtres

open only a field in a large tiff image

8 vues (au cours des 30 derniers jours)
Daniel Balvay
Daniel Balvay le 6 Mar 2020
Commenté : Daniel Balvay le 1 Avr 2021
I would like open only fields in tiff images of very high definition.
In histology, it is possible to work on multi-image tiff formats. Each image corresponds to different spatial scales. Typically, the higher resolution corresponds to images of size 100.000 x 50.000. To preserve memory and processing time, it is possible to define fields in lower resolution to crop the corresponding image at the full size. However I did not found any function wich could crop such image without opening the all tall image. In particular the 'pixelRegion' argument of imread induce a memory overflow event for arbitrary small fields.
do you have a solution ?

Réponses (1)

Nipun Katyal
Nipun Katyal le 9 Mar 2020
MATLAB provides out-of-core processing with the help of bigimage for formats like .tiff, It enables you to read blocks from the original image and process them without any worry about memory usage or processing power usage.
Here is an example on how to read the block
%Read the image
img = bigimage('sample.tif');
%Starting coordinates
coordStart = [250 250];
%Ending Coordinates
coordEnd = [750,750];
%Extract the region between the aforementioned coordinates
blk1 = getRegion(img,1,coordStart, coordEnd);
%Display the image
bigimageshow(bigimage(blk1))
  4 commentaires
Walter Roberson
Walter Roberson le 13 Mar 2021
Thanks for the details, @Hauke Kolster !
Daniel Balvay
Daniel Balvay le 1 Avr 2021
Thanks a lot, I have my complete answer!

Connectez-vous pour commenter.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by