フィルターのクリア

How do I track the displacement of a particle captured in a stack of tiff images?

4 ビュー (過去 30 日間)
I have generated a stack of tiff images that have a circle at different location and I want to track the location of the circle in each frame. This is a simulation and eventually, I will get actual tiff stacks, which will have the displacement of a particle. Please I really need help, this is my senior year project

採用された回答

Walter Roberson
Walter Roberson 2013 年 2 月 27 日
This is essentially the same as http://www.mathworks.co.uk/matlabcentral/answers/64079-for-object-tracking-of-many-objects with just a different method of getting the input.
  6 件のコメント
EngStudent
EngStudent 2013 年 2 月 27 日
編集済み: Walter Roberson 2013 年 2 月 27 日
for the function obj = setupSystemObjects(), I used the code below instead of the videofilereader
file_name = 'stack.tif'; %TIFF Stack
image_info = imfinfo(file_name);
numImg = length(image_info); %Number of images in stack
for i=1:numImg %Read Each Frame
fImg=imread(file_name,i, 'Info',image_info);
BWimg = 1 - im2bw(fImg,0.5); %Convert Image to Black-and
end
I wanted your opinion on the code
EngStudent
EngStudent 2013 年 2 月 27 日
Also what do use in place of a video mask player

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Data についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by