Robobot camera: Difference between revisions
From Rsewiki
| Line 20: | Line 20: | ||
void setup() | void setup() | ||
{ | { | ||
int deviceID = | int deviceID = 0; | ||
int apiID = cv::CAP_V4L2; | int apiID = cv::CAP_V4L2; | ||
// open selected camera using selected API | // open selected camera using selected API | ||
cap.open(deviceID, apiID); | cap.open(deviceID, apiID); | ||
| Line 42: | Line 42: | ||
// debug print of accepted format: | // debug print of accepted format: | ||
union FourChar | union FourChar | ||
{ // the four characters are coded into a 32 bit integer. | { // the four characters are coded into a 32-bit integer. | ||
uint32_t cc4; | uint32_t cc4; | ||
char ccc[4]; | char ccc[4]; | ||
Revision as of 12:15, 6 December 2022
Back to Robobot
camera settings
Data formats
The used camera is a 'Jieli Technology' camera of type 'USB PHY 2.0' (packed by Sandberg).
The camera has limited control capabilities but supports the following data formats.
- MJPG coded 640 x 320 pixels at 25 or 30 FPS
- MJPG coded 1280 x 720 pixels at 25 or 30 FPS
- MJPG coded 1920 x 1080 pixels at 25 or 30 FPS
- MJPG coded 640 x 480 pixels at 25 or 30 FPS, cuts parts of the image to fit the format
It also supports "raw" format as YUYV 4:2:2, but it seems like data loss occurs (fragmented images), so do not use this format.
Use from OpenCV (C++)
void setup() {
int deviceID = 0;
int apiID = cv::CAP_V4L2;
// open selected camera using selected API
cap.open(deviceID, apiID);
// check if we succeeded
camIsOpen = cap.isOpened();
if (not camIsOpen)
{
cerr << "ERROR! Unable to open camera\n";
}
else
{
uint32_t fourcc = cv::VideoWriter::fourcc('M','J','P','G');
cap.set(cv::CAP_PROP_FOURCC, fourcc);
// possible resolutions in JPEG coding
// (rows x columns) 320x640, 720x1280
cap.set(cv::CAP_PROP_FRAME_HEIGHT, 720);
cap.set(cv::CAP_PROP_FRAME_WIDTH, 1280);
cap.set(cv::CAP_PROP_FPS, 25);
// now the camera is ready for frame capture.
// debug print of accepted format:
union FourChar
{ // the four characters are coded into a 32-bit integer.
uint32_t cc4;
char ccc[4];
} fmt;
fmt.cc4 = cap.get(cv::CAP_PROP_FOURCC); // get format
printf("# Video device %d: width=%g, height=%g, format=%c%c%c%c, FPS=%g\n",
dev,
cap.get(cv::CAP_PROP_FRAME_WIDTH),
cap.get(cv::CAP_PROP_FRAME_HEIGHT),
fmt.ccc[0], fmt.ccc[1], fmt.ccc[2], fmt.ccc[3],
cap.get(cv::CAP_PROP_FPS));
}