Skip to content

Commit

Permalink
Merge pull request #135 from luxonis/ov9282_over_exposure_fix
Browse files Browse the repository at this point in the history
OV9282: fix over-exposure outdoors, in sunlight
  • Loading branch information
alex-luxonis committed May 24, 2021
2 parents 5eac50c + 7fee3fe commit c7982f0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmake/Depthai/DepthaiDeviceSideConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set(DEPTHAI_DEVICE_SIDE_MATURITY "snapshot")

# "full commit hash of device side binary"
set(DEPTHAI_DEVICE_SIDE_COMMIT "cd8f39616c6cd09899c29faa2191e645b60d7235")
set(DEPTHAI_DEVICE_SIDE_COMMIT "6719f4f4f8b8a8f95701d3b811ce7ddf2631fa6d")

# "version if applicable"
set(DEPTHAI_DEVICE_SIDE_VERSION "")
9 changes: 8 additions & 1 deletion include/depthai/pipeline/node/MonoCamera.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,17 @@ class MonoCamera : public Node {
/**
* Outputs ImgFrame message that carries RAW8 encoded (grayscale) frame data.
*
* Suitable for use StereoDepth node
* Suitable for use StereoDepth node. Processed by ISP
*/
Output out{*this, "out", Output::Type::MSender, {{DatatypeEnum::ImgFrame, false}}};

/**
* Outputs ImgFrame message that carries RAW10-packed (MIPI CSI-2 format) frame data.
*
* Captured directly from the camera sensor
*/
Output raw{*this, "raw", Output::Type::MSender, {{DatatypeEnum::ImgFrame, false}}};

/**
* Specify which board socket to use
* @param boardSocket Board socket to use
Expand Down
2 changes: 1 addition & 1 deletion src/pipeline/node/MonoCamera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ std::string MonoCamera::getName() const {
}

std::vector<Node::Output> MonoCamera::getOutputs() {
return {out};
return {out, raw};
}

std::vector<Node::Input> MonoCamera::getInputs() {
Expand Down

0 comments on commit c7982f0

Please sign in to comment.