Skip to content
Open
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 OpenCVClient/OpenCVClientViewController.mm
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ - (void)processFrame
cv::Mat grayFrame, output;

// Convert captured frame to grayscale
cv::cvtColor(_lastFrame, grayFrame, cv::COLOR_RGB2GRAY);
cv::cvtColor(_lastFrame, grayFrame, cv::COLOR_BGR2GRAY);

// Perform Canny edge detection using slide values for thresholds
cv::Canny(grayFrame, output,
Expand Down