필터 지우기
필터 지우기

How to mask object in a video?

조회 수: 3 (최근 30일)
swathi
swathi 2018년 2월 17일
댓글: swathi 2018년 3월 2일
Hello, I am doing a project on background inpaint of video. I am not getting any hint of how to provide a mask as input along with video? Is it once the video is divided into different frames, mask is provided or before? If before, how do I mask object from a video? Kindly help me with this. I will be very thankful

채택된 답변

Walter Roberson
Walter Roberson 2018년 2월 17일
The only way to process videos in MATLAB is to read frames and process the frames. There is no way in MATLAB to process a video "directly" -- only frames that you read in from the video. The frames that you read from the video are just images.
Therefore you split the work:
  1. read a frame into an array -- a step that is independent of what you are going to do with the array
  2. process the array -- a step that is independent of how you input the array
  3. display or save the processed array -- a step that is independent of how you processed the array
  댓글 수: 13
Walter Roberson
Walter Roberson 2018년 3월 1일
I am not familiar with Ransac
swathi
swathi 2018년 3월 2일
Ok thank you sir

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by