フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Query regarding Computer Vision

1 回表示 (過去 30 日間)
Mrinmoyee Bhattacharya
Mrinmoyee Bhattacharya 2018 年 11 月 30 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Can I detect the position of still image in different state ?????Is there any example ???
  9 件のコメント
Mrinmoyee Bhattacharya
Mrinmoyee Bhattacharya 2018 年 11 月 30 日
In this attachment i have given some wind speed image. Yellow points represents wind speed. After seeing you will understand what i want to say. i just want to track the position of wind speed using computer vision or machine learning or anything, which will say the position of the wind speed
Walter Roberson
Walter Roberson 2018 年 11 月 30 日
You talk about having "still images". But note that all that a "movie" is, is a series of still images in time lapse.

回答 (1 件)

Image Analyst
Image Analyst 2018 年 11 月 30 日
There is not much that can be done with your PDF document of map line drawings that you uploaded. It's pretty much useless. But you said you have images of wind speed, like where each pixel represents some number of km per hour at that location. So all you have to do, if you want the centroid location, is to threshold the windspeed image and find the centroid
binaryImage = windSpeedImage > someThreshold; % For example someThreshold = 150 km per hour or whatever.
binaryImage = bwareafilt(binaryImage, 1); % Take just the largest blob.
props = regionprops(binaryImage, 'WeightedCentroid', 'Centroid');
By computing the distance between centroids at those different time point images, you can find out how fast the centroid moves (average velocity) from one time to the other.
See My File Exchange for a full tutorial on image segmentation.

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by