use of android.filterfw.core.FrameFormat in project android_frameworks_base by DirtyUnicorns.
the class NegativeFilter method process.
@Override
public void process(FilterContext context) {
// Get input frame
Frame input = pullInput("image");
FrameFormat inputFormat = input.getFormat();
// Create output frame
Frame output = context.getFrameManager().newFrame(inputFormat);
// Create program if not created already
if (mProgram == null || inputFormat.getTarget() != mTarget) {
initProgram(context, inputFormat.getTarget());
}
// Process
mProgram.process(input, output);
// Push output
pushOutput("image", output);
// Release pushed frame
output.release();
}
use of android.filterfw.core.FrameFormat in project android_frameworks_base by DirtyUnicorns.
the class PosterizeFilter method process.
@Override
public void process(FilterContext context) {
// Get input frame
Frame input = pullInput("image");
FrameFormat inputFormat = input.getFormat();
// Create output frame
Frame output = context.getFrameManager().newFrame(inputFormat);
// Create program if not created already
if (mProgram == null || inputFormat.getTarget() != mTarget) {
initProgram(context, inputFormat.getTarget());
}
// Process
mProgram.process(input, output);
// Push output
pushOutput("image", output);
// Release pushed frame
output.release();
}
use of android.filterfw.core.FrameFormat in project android_frameworks_base by DirtyUnicorns.
the class RedEyeFilter method process.
@Override
public void process(FilterContext context) {
// Get input frame
Frame input = pullInput("image");
FrameFormat inputFormat = input.getFormat();
// Create output frame
Frame output = context.getFrameManager().newFrame(inputFormat);
// Create program if not created already
if (mProgram == null || inputFormat.getTarget() != mTarget) {
initProgram(context, inputFormat.getTarget());
}
// Check if the frame size has changed
if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
mWidth = inputFormat.getWidth();
mHeight = inputFormat.getHeight();
}
createRedEyeFrame(context);
// Process
Frame[] inputs = { input, mRedEyeFrame };
mProgram.process(inputs, output);
// Push output
pushOutput("image", output);
// Release pushed frame
output.release();
// Release unused frame
mRedEyeFrame.release();
mRedEyeFrame = null;
}
use of android.filterfw.core.FrameFormat in project android_frameworks_base by DirtyUnicorns.
the class ThroughputFilter method process.
@Override
public void process(FilterContext context) {
// Pass through input frame
Frame input = pullInput("frame");
pushOutput("frame", input);
// Update stats
++mTotalFrameCount;
++mPeriodFrameCount;
// Check clock
if (mLastTime == 0) {
mLastTime = SystemClock.elapsedRealtime();
}
long curTime = SystemClock.elapsedRealtime();
// Output throughput info if time period is up
if ((curTime - mLastTime) >= (mPeriod * 1000)) {
FrameFormat inputFormat = input.getFormat();
int pixelCount = inputFormat.getWidth() * inputFormat.getHeight();
Throughput throughput = new Throughput(mTotalFrameCount, mPeriodFrameCount, mPeriod, pixelCount);
Frame throughputFrame = context.getFrameManager().newFrame(mOutputFormat);
throughputFrame.setObjectValue(throughput);
pushOutput("throughput", throughputFrame);
mLastTime = curTime;
mPeriodFrameCount = 0;
}
}
use of android.filterfw.core.FrameFormat in project android_frameworks_base by DirtyUnicorns.
the class DocumentaryFilter method process.
@Override
public void process(FilterContext context) {
// Get input frame
Frame input = pullInput("image");
FrameFormat inputFormat = input.getFormat();
// Create program if not created already
if (mProgram == null || inputFormat.getTarget() != mTarget) {
initProgram(context, inputFormat.getTarget());
}
// Check if the frame size has changed
if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
mWidth = inputFormat.getWidth();
mHeight = inputFormat.getHeight();
initParameters();
}
// Create output frame
Frame output = context.getFrameManager().newFrame(inputFormat);
// Process
mProgram.process(input, output);
// Push output
pushOutput("image", output);
// Release pushed frame
output.release();
}
Aggregations