I want to read HEVC compressed video and extract the frames in compressed(encoded) video file to extract some information from frames like motion vectors etc..
can anyone help me how to read the compressed HEVC video file, and how to extract frames using matlab in windows OS.
VideoReader in matlab will read upto H.264 encoded videos but not H.265/HEVC encoded videos.
I have downloaded few HEVC compressed videos from http://www.elecard.com/en/download/videos.html and downloaded the codec tool kit from this website , I can play these videos.
AFAIK there is no public code or library that enables reading an HEVC datastream directly from MATLAB.
When faced with this same problem, I modified the reference HEVC decoder to write a separate CSV file as it decodes the HEVC video. MATLAB can then read the CSV file.
I borrowed this approach from GitlHEVCAnalyzer. See TSysuAnalyzerOutput.cpp, where the author writes a number of different text files during HEVC decoding. The analyzer then reads the text files.