Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You didn't call SuperResolution algorithm, you called frameSource. It should be:

Mat frame_super;

for(;;)
{
    srobj->nextFrame(frame_super);
    imshow("output", frame_super);  

    waitKey(1);
}