Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OV9282: fix over-exposure outdoors, in sunlight #135

Merged
merged 4 commits into from
May 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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