Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Query regarding Computer Vision
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Mrinmoyee Bhattacharya
el 30 de Nov. de 2018
Cerrada: MATLAB Answer Bot
el 20 de Ag. de 2021
Can I detect the position of still image in different state ?????Is there any example ???
9 comentarios
Walter Roberson
el 30 de Nov. de 2018
You talk about having "still images". But note that all that a "movie" is, is a series of still images in time lapse.
Respuestas (1)
Image Analyst
el 30 de Nov. de 2018
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.
0 comentarios
La pregunta está cerrada.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!