필터 지우기
필터 지우기

how do I change the contrast of a video?

조회 수: 9 (최근 30일)
Pavel Kuzmitsky
Pavel Kuzmitsky 2022년 11월 8일
편집: Chandler Hall 2022년 11월 8일
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?
  댓글 수: 1
Pavel Kuzmitsky
Pavel Kuzmitsky 2022년 11월 8일
as you can see in the frame from the video, the grids and the image are worse visible (the additional ring is not visible)

댓글을 달려면 로그인하십시오.

채택된 답변

Chandler Hall
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개)

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by