save pixel coordinate in image
이전 댓글 표시
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
답변 (2개)
Walter Roberson
2016년 8월 10일
0 개 추천
save() ?
store it in a cell array?
store it as a column in a numeric array?
댓글 수: 1
Walter Roberson
2016년 8월 10일
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
카테고리
도움말 센터 및 File Exchange에서 Video Formats and Interfaces에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!