I have made the programe for locating centroid point on an object in a video. I have converted the video into image frames and located the point successfully but unable to convert the image again to video frame so as to move the point in the video. An error is coming
figure(5);
imshow(im,[]);colormap(gray);
figure(6)
M=im2frame(im);
Error using im2frame
double-precision indexed CData values must be legal colormap indices: 1.0 <= value <= length(colormap)
Error in a1 (line 70) M=im2frame(im);

 채택된 답변

Image Analyst
Image Analyst 2017년 3월 1일

0 개 추천

Evidently your im is double. It must be integer, like uint8 or uint16.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Convert Image Type에 대해 자세히 알아보기

태그

질문:

2017년 3월 1일

댓글:

2017년 3월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by