Skip to content

sttomato/YUV-Reader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

YUV-Reader

This repository aims to read YUV frame from a file. I use the newest OpenCV 3.0(above). Feel free to post issues or pull request.

*Usage:

Init YuvReader object:

YuvReader yuvReader(VIDEO_PATH, VIDEO_WIDTH, VIDEO_HEIGHT, DEBUG = true);

Read each frame by while loop:

Mat frame;
while (true) {
	  if (!yuvReader.read(frame)) {
		  return 0;
	  }
	  imshow("Video", frame);
	}

About

YUV Reader for OpenCV 3.0 or above

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages