save pixel coordinate in image
Mostrar comentarios más antiguos
Hi, I wanna to save pixel coordinate of a point from a video, please help me how can I do this, thanks for devote your time for me in advance
Respuestas (2)
Walter Roberson
el 10 de Ag. de 2016
0 votos
save() ?
store it in a cell array?
store it as a column in a numeric array?
1 comentario
Walter Roberson
el 10 de Ag. de 2016
for frameidx = 1 : 10
this_frame = get_a_frame_here();
[x, y] = your_find_pixel_coordinate_routine(this_frame);
saved_xy(:, frameidx) = [x; y];
end
mohamad almasi
el 10 de Ag. de 2016
0 votos
Categorías
Más información sobre Video Formats and Interfaces en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!