Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VSFA's Performance comparision with VIIDEO #22

Closed
stillbetter opened this issue Aug 22, 2020 · 2 comments
Closed

VSFA's Performance comparision with VIIDEO #22

stillbetter opened this issue Aug 22, 2020 · 2 comments

Comments

@stillbetter
Copy link

Hi, Dr.Li:

I find there's a performance comparision with VIIDEO in Table 1. But the VIIDEO algorithm needs luminance as input according to the released code from LIVE.

I want to know if you just transformed the .mp4 file into .yuv and then send it to VIIDEO? Would this cause any disturbance to the final result?

Thanks a lot!

@lidq92
Copy link
Owner

lidq92 commented Aug 22, 2020

@stillbetter For the video with RGB format, we used the MATLAB functions VideoReader, readFrame, rgb2gray to get its luminance component (See below). We did not try pre-processing the video to YUV format first.

v = VideoReader(vidname);
count        = 1;
while hasFrame(v)
    ydis1 = double(rgb2gray(readFrame(v)));
    try
        ydis2 = double(rgb2gray(readFrame(v)));
    catch
        break;
    end
    [feat]                  = computeVIIDEOfeaturevector(ydis1,ydis2,...
                              blocksizerow,blocksizecol,blockrowoverlap, ...
                              blockcoloverlap,filtlength);
    param(count).featvect   = feat;
    count                   = count +1;

end

@stillbetter
Copy link
Author

Great!Thanks for the instant help!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants