mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-22 01:11:40 +00:00
26 lines
551 B
Java
26 lines
551 B
Java
|
|
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;
|
||
|
|
}
|
||
|
|
}
|