필터 지우기
필터 지우기

open only a field in a large tiff image

조회 수: 8 (최근 30일)
Daniel Balvay
Daniel Balvay 2020년 3월 6일
댓글: Daniel Balvay 2021년 4월 1일
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 ?

답변 (1개)

Nipun Katyal
Nipun Katyal 2020년 3월 9일
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
Walter Roberson
Walter Roberson 2021년 3월 13일
Thanks for the details, @Hauke Kolster !
Daniel Balvay
Daniel Balvay 2021년 4월 1일
Thanks a lot, I have my complete answer!

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by