mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-22 01:11:40 +00:00
Begin further work on abstraction layout in separate package
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.chameleonvision.classabstraction.pipeline;
|
||||
|
||||
import org.opencv.core.Mat;
|
||||
|
||||
public class DriverVisionPipeline extends CVPipeline<Void> {
|
||||
public DriverVisionPipeline(CVPipelineSettings settings) {
|
||||
super(settings);
|
||||
}
|
||||
|
||||
@Override
|
||||
void initPipeline() {
|
||||
// set exposure/brightness of camera?
|
||||
}
|
||||
|
||||
@Override
|
||||
Void runPipeline(Mat inputMat) {
|
||||
this.outputMat = inputMat;
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
Mat getOutputMat() {
|
||||
return this.outputMat;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user