as you can see in the frame from the video, the grids and the image are worse visible (the additional ring is not visible)
how do I change the contrast of a video?
조회 수: 6 (최근 30일)
이전 댓글 표시
the problem is as follows:
this is the result that matlab outputs:
the same frame, but converted to video:
how can this problem be solved?
채택된 답변
Chandler Hall
2022년 11월 8일
편집: Chandler Hall
2022년 11월 8일
By default, videos are created using lossy compression which will remove fine details. Consider
img = ...
v = videowriter('filename.avi', 'Archival');
open(v);
writevideo(v, img);
close(v);
to create a video with no compression.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Audio and Video Data에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!