How to detect and track Red Blood Cells in a video?

조회 수: 5 (최근 30일)
Hassan Ashraf
Hassan Ashraf 2020년 4월 24일
댓글: Hassan Ashraf 2020년 7월 8일
Hi I am new at video processing and do not know how to detect and track objects in a video. I have video clip in which red blood cells are moving in different wells. See figure below. I have watched and read the documention of the Matlab Computer Vision Toolbox but find nothing relevant to my problem. You can download video from this link
I want to
1) Automatically identify each of the red blood cells (RBCs) contained within one well in the first frame, and then track each of the cells throughout the duration of the movie clip. The code must show the movie frame-by-frame, with tracked RBCS identified. (You can pick any well for which all four sidewalls are visible.)
2)Record position of the center of each RBC with respect to the side walls of the well. For each cell, plot a histogram of incremental displacements occurring between frames (both in Xand Y). Determine whether displacements of two different cells correlate between each other (again, in both directions).
Currently, I have separeted video frames, but dont know what to do next.
vid=VideoReader('Cells-in-wells.avi');
numFrames = vid.NumberOfFrames;
n=numFrames;
for i = 1:1:n
frames = read(vid,i);
imshow (frames);
end
  댓글 수: 2
Ben Timm
Ben Timm 2020년 7월 7일
Hey Hassan,
Did you figure out what to do here?
Hassan Ashraf
Hassan Ashraf 2020년 7월 8일
Unfortunetly, no. I have not found any solution or guidelines.

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

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by