Skip to content
This repository has been archived by the owner on Jan 12, 2021. It is now read-only.

Commit

Permalink
补漏
Browse files Browse the repository at this point in the history
  • Loading branch information
lasttaoist committed Jul 18, 2019
1 parent fc6cc2a commit 7bbc174
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package cc.eguid.cv.corelib.videoimageshot.grabber;

import org.bytedeco.javacpp.avutil.AVFrame;

/**
* 通用抓取器接口
* @author eguid
*
*/
public interface Grabber {

/**
* 保存RGB像素帧
* @param pFrameRGB -默认rgb像素
* @param width
* @param height
* @return
*/
byte[] saveFrame(AVFrame pFrameRGB, int width, int height);
}

0 comments on commit 7bbc174

Please sign in to comment.