tado / ofxDeinterlace

Video deinterlacer using GLSL.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ofxDeinterlace

ofxDeinterlace is simple line averaging deinterlacer for openFrameworks.

wikipedia : Interlaced video

This addon use GLSL for deinterlace process. GLSL code refer the discussion topics below.

How to use

You just send video texture reference to the addon in setup() function.

video.loadMovie("1080i.mov");
video.play();
deinterlace = new ofxDeinterlace(video.getTextureReference());

to draw interlaced texture just call draw() method of addon.

deinterlace->draw();

License

ofxDeinterlace is distributed under the MIT License.

About

Video deinterlacer using GLSL.


Languages

Language:C 68.9%Language:Objective-C 29.4%Language:C++ 1.5%Language:Makefile 0.1%