-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes windows not allowing auto exposure prop for the ov2311 (#1407)
- Loading branch information
Showing
3 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
...main/java/org/photonvision/vision/camera/USBCameras/ArduOV2311WindowsCameraSettables.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* Copyright (C) Photon Vision. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.photonvision.vision.camera.USBCameras; | ||
|
||
import edu.wpi.first.cscore.UsbCamera; | ||
import edu.wpi.first.cscore.VideoException; | ||
import edu.wpi.first.math.MathUtil; | ||
import org.photonvision.common.configuration.CameraConfiguration; | ||
|
||
/* | ||
* This class holds the windows specific camera quirks for the Arducam ov2311. A windows version is needed because windows doesn't expose the auto exposure properties of the arducam. | ||
*/ | ||
public class ArduOV2311WindowsCameraSettables extends GenericUSBCameraSettables { | ||
public ArduOV2311WindowsCameraSettables(CameraConfiguration configuration, UsbCamera camera) { | ||
super(configuration, camera); | ||
} | ||
|
||
@Override | ||
protected void setUpExposureProperties() { | ||
var expProp = | ||
findProperty( | ||
"raw_exposure_absolute", | ||
"raw_exposure_time_absolute", | ||
"exposure", | ||
"raw_Exposure", | ||
"Exposure"); | ||
|
||
exposureAbsProp = expProp.get(); | ||
autoExposureProp = null; | ||
this.minExposure = 1; | ||
this.maxExposure = 140; | ||
} | ||
|
||
@Override | ||
public void setExposureRaw(double exposureRaw) { | ||
if (exposureRaw >= 0.0) { | ||
try { | ||
int propVal = (int) MathUtil.clamp(exposureRaw, minExposure, maxExposure); | ||
camera.setExposureManual(propVal); | ||
this.lastExposureRaw = exposureRaw; | ||
} catch (VideoException e) { | ||
logger.error("Failed to set camera exposure!", e); | ||
} | ||
} | ||
} | ||
|
||
public void setAutoExposure(boolean cameraAutoExposure) { | ||
logger.debug("Setting auto exposure to " + cameraAutoExposure); | ||
|
||
if (!cameraAutoExposure) { | ||
// Most cameras leave exposure time absolute at the last value from their AE | ||
// algorithm. | ||
// Set it back to the exposure slider value | ||
camera.setExposureManual((int) this.lastExposureRaw); | ||
} else { | ||
camera.setExposureAuto(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters