Can I move an object in an image to the center of FOV?

1 次查看(过去 30 天)
I have a NxN matrix defining the FOV of a camera. Approximately in the middle of FOV is an object that generates a height profile. I want to be able to move the centroid of the object to the exact center of the FOV matrix. I really don't care about the NaNs created by the translation of object. I will fill the NaNs generated by this translation to zeros. What is the best way to accomplish this.Thanks in advance.

采纳的回答

Image Analyst
Image Analyst 2018-12-27
I'd first segment the image to find the object. This really depends on what the object looks like. Then you can get a new image (not a live one though) that has the object at the center by using imtranslate().
  2 个评论
Chockalingam Kumar
Chockalingam Kumar 2018-12-27
Thanks for the quick response. Let me try it and I will let you know how it works.
Image Analyst
Image Analyst 2018-12-27
Use
props = regionprops(mask, 'Centroid');
hold on;
% Plot red crosses at the centroid location(s).
for k = 1 : length(props)
plot(props(k).Centroid(1), props(k).Centroid(2), 'r+', 'MarkerSize', 20, 'LineWidth', 2);
end
to get a list of the centroids of all blobs in your segmented image.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Support Package for USB Webcams 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by