mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
353 lines
13 KiB
353 lines
13 KiB
9 years ago
|
#include "opencv2/videoio.hpp"
|
||
|
#include "opencv2/highgui.hpp"
|
||
11 years ago
|
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace cv;
|
||
|
using namespace std;
|
||
|
|
||
9 years ago
|
static bool g_printStreamSetting;
|
||
|
static int g_imageStreamProfileIdx;
|
||
|
static int g_depthStreamProfileIdx;
|
||
|
static bool g_irStreamShow;
|
||
|
static double g_imageBrightness;
|
||
|
static double g_imageContrast;
|
||
|
static bool g_printTiming;
|
||
|
static bool g_showClosedPoint;
|
||
11 years ago
|
|
||
|
|
||
|
static int g_closedDepthPoint[2];
|
||
|
|
||
11 years ago
|
static void printUsage(const char *arg0)
|
||
11 years ago
|
{
|
||
11 years ago
|
const char *filename = arg0;
|
||
11 years ago
|
while (*filename)
|
||
|
filename++;
|
||
11 years ago
|
while ((arg0 <= filename) && ('\\' != *filename) && ('/' != *filename))
|
||
11 years ago
|
filename--;
|
||
|
filename++;
|
||
|
|
||
|
cout << "This program demonstrates usage of camera supported\nby Intel Perceptual computing SDK." << endl << endl;
|
||
9 years ago
|
cout << "usage: " << filename << "[-ps] [-isp=IDX] [-dsp=IDX]\n [-ir] [-imb=VAL] [-imc=VAL]" << endl << endl;
|
||
11 years ago
|
cout << " -ps, print streams setting and profiles" << endl;
|
||
9 years ago
|
cout << " -isp=IDX, set profile index of the image stream" << endl;
|
||
|
cout << " -dsp=IDX, set profile index of the depth stream" << endl;
|
||
11 years ago
|
cout << " -ir, show data from IR stream" << endl;
|
||
7 years ago
|
cout << " -imb=VAL, set brightness value for an image stream" << endl;
|
||
9 years ago
|
cout << " -imc=VAL, set contrast value for a image stream" << endl;
|
||
11 years ago
|
cout << " -pts, print frame index and frame time" << endl;
|
||
|
cout << " --show-closed, print frame index and frame time" << endl;
|
||
|
cout << endl;
|
||
|
}
|
||
|
|
||
|
static void parseCMDLine(int argc, char* argv[])
|
||
|
{
|
||
9 years ago
|
cv::CommandLineParser parser(argc, argv,
|
||
|
"{ h help | | }"
|
||
|
"{ ps print-streams | | }"
|
||
|
"{ isp image-stream-prof | -1 | }"
|
||
|
"{ dsp depth-stream-prof | -1 | }"
|
||
|
"{ir||}{imb||}{imc||}{pts||}{show-closed||}");
|
||
|
if (parser.has("h"))
|
||
11 years ago
|
{
|
||
|
printUsage(argv[0]);
|
||
9 years ago
|
exit(0);
|
||
11 years ago
|
}
|
||
9 years ago
|
g_printStreamSetting = parser.has("ps");
|
||
|
g_imageStreamProfileIdx = parser.get<int>("isp");
|
||
|
g_depthStreamProfileIdx = parser.get<int>("dsp");
|
||
|
g_irStreamShow = parser.has("ir");
|
||
|
if (parser.has("imb"))
|
||
|
g_imageBrightness = parser.get<double>("imb");
|
||
11 years ago
|
else
|
||
9 years ago
|
g_imageBrightness = -DBL_MAX;
|
||
|
if (parser.has("imc"))
|
||
|
g_imageContrast = parser.get<double>("imc");
|
||
|
else
|
||
|
g_imageContrast = -DBL_MAX;
|
||
|
g_printTiming = parser.has("pts");
|
||
|
g_showClosedPoint = parser.has("show-closed");
|
||
|
if (!parser.check())
|
||
|
{
|
||
|
parser.printErrors();
|
||
|
exit(-1);
|
||
|
}
|
||
|
if (g_showClosedPoint && (-1 == g_depthStreamProfileIdx))
|
||
11 years ago
|
{
|
||
9 years ago
|
cerr << "For --show-closed depth profile has be selected" << endl;
|
||
|
exit(-1);
|
||
11 years ago
|
}
|
||
|
}
|
||
|
|
||
|
static void printStreamProperties(VideoCapture &capture)
|
||
|
{
|
||
11 years ago
|
size_t profilesCount = (size_t)capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_INTELPERC_PROFILE_COUNT);
|
||
11 years ago
|
cout << "Image stream." << endl;
|
||
11 years ago
|
cout << " Brightness = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_BRIGHTNESS) << endl;
|
||
|
cout << " Contrast = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_CONTRAST) << endl;
|
||
|
cout << " Saturation = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_SATURATION) << endl;
|
||
|
cout << " Hue = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_HUE) << endl;
|
||
|
cout << " Gamma = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_GAMMA) << endl;
|
||
|
cout << " Sharpness = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_SHARPNESS) << endl;
|
||
|
cout << " Gain = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_GAIN) << endl;
|
||
|
cout << " Backligh = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_BACKLIGHT) << endl;
|
||
11 years ago
|
cout << "Image streams profiles:" << endl;
|
||
|
for (size_t i = 0; i < profilesCount; i++)
|
||
|
{
|
||
11 years ago
|
capture.set(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_INTELPERC_PROFILE_IDX, (double)i);
|
||
11 years ago
|
cout << " Profile[" << i << "]: ";
|
||
11 years ago
|
cout << "width = " <<
|
||
11 years ago
|
(int)capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_FRAME_WIDTH);
|
||
11 years ago
|
cout << ", height = " <<
|
||
11 years ago
|
(int)capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_FRAME_HEIGHT);
|
||
11 years ago
|
cout << ", fps = " <<
|
||
11 years ago
|
capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_FPS);
|
||
11 years ago
|
cout << endl;
|
||
|
}
|
||
|
|
||
11 years ago
|
profilesCount = (size_t)capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_PROFILE_COUNT);
|
||
11 years ago
|
cout << "Depth stream." << endl;
|
||
11 years ago
|
cout << " Low confidence value = " << capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_DEPTH_LOW_CONFIDENCE_VALUE) << endl;
|
||
|
cout << " Saturation value = " << capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_DEPTH_SATURATION_VALUE) << endl;
|
||
|
cout << " Confidence threshold = " << capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_DEPTH_CONFIDENCE_THRESHOLD) << endl;
|
||
|
cout << " Focal length = (" << capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_HORZ) << ", "
|
||
|
<< capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_VERT) << ")" << endl;
|
||
11 years ago
|
cout << "Depth streams profiles:" << endl;
|
||
|
for (size_t i = 0; i < profilesCount; i++)
|
||
|
{
|
||
11 years ago
|
capture.set(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_PROFILE_IDX, (double)i);
|
||
11 years ago
|
cout << " Profile[" << i << "]: ";
|
||
11 years ago
|
cout << "width = " <<
|
||
11 years ago
|
(int)capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_FRAME_WIDTH);
|
||
11 years ago
|
cout << ", height = " <<
|
||
11 years ago
|
(int)capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_FRAME_HEIGHT);
|
||
11 years ago
|
cout << ", fps = " <<
|
||
11 years ago
|
capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_FPS);
|
||
11 years ago
|
cout << endl;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void imshowImage(const char *winname, Mat &image, VideoCapture &capture)
|
||
|
{
|
||
11 years ago
|
if (g_showClosedPoint)
|
||
11 years ago
|
{
|
||
|
Mat uvMap;
|
||
11 years ago
|
if (capture.retrieve(uvMap, CAP_INTELPERC_UVDEPTH_MAP))
|
||
11 years ago
|
{
|
||
|
float *uvmap = (float *)uvMap.ptr() + 2 * (g_closedDepthPoint[0] * uvMap.cols + g_closedDepthPoint[1]);
|
||
|
int x = (int)((*uvmap) * image.cols); uvmap++;
|
||
|
int y = (int)((*uvmap) * image.rows);
|
||
|
|
||
|
if ((0 <= x) && (0 <= y))
|
||
|
{
|
||
|
static const int pointSize = 4;
|
||
|
for (int row = y; row < min(y + pointSize, image.rows); row++)
|
||
|
{
|
||
|
uchar* ptrDst = image.ptr(row) + x * 3 + 2;//+2 -> Red
|
||
|
for (int col = 0; col < min(pointSize, image.cols - x); col++, ptrDst+=3)
|
||
|
{
|
||
|
*ptrDst = 255;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
imshow(winname, image);
|
||
|
}
|
||
|
static void imshowIR(const char *winname, Mat &ir)
|
||
|
{
|
||
|
Mat image;
|
||
|
if (g_showClosedPoint)
|
||
|
{
|
||
|
image.create(ir.rows, ir.cols, CV_8UC3);
|
||
|
for (int row = 0; row < ir.rows; row++)
|
||
|
{
|
||
|
uchar* ptrDst = image.ptr(row);
|
||
|
short* ptrSrc = (short*)ir.ptr(row);
|
||
|
for (int col = 0; col < ir.cols; col++, ptrSrc++)
|
||
|
{
|
||
|
uchar val = (uchar) ((*ptrSrc) >> 2);
|
||
|
*ptrDst = val; ptrDst++;
|
||
|
*ptrDst = val; ptrDst++;
|
||
|
*ptrDst = val; ptrDst++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static const int pointSize = 4;
|
||
|
for (int row = g_closedDepthPoint[0]; row < min(g_closedDepthPoint[0] + pointSize, image.rows); row++)
|
||
|
{
|
||
|
uchar* ptrDst = image.ptr(row) + g_closedDepthPoint[1] * 3 + 2;//+2 -> Red
|
||
|
for (int col = 0; col < min(pointSize, image.cols - g_closedDepthPoint[1]); col++, ptrDst+=3)
|
||
|
{
|
||
|
*ptrDst = 255;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
image.create(ir.rows, ir.cols, CV_8UC1);
|
||
|
for (int row = 0; row < ir.rows; row++)
|
||
|
{
|
||
|
uchar* ptrDst = image.ptr(row);
|
||
|
short* ptrSrc = (short*)ir.ptr(row);
|
||
|
for (int col = 0; col < ir.cols; col++, ptrSrc++, ptrDst++)
|
||
|
{
|
||
|
*ptrDst = (uchar) ((*ptrSrc) >> 2);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
imshow(winname, image);
|
||
|
}
|
||
|
static void imshowDepth(const char *winname, Mat &depth, VideoCapture &capture)
|
||
|
{
|
||
11 years ago
|
short lowValue = (short)capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_DEPTH_LOW_CONFIDENCE_VALUE);
|
||
|
short saturationValue = (short)capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_DEPTH_SATURATION_VALUE);
|
||
11 years ago
|
|
||
|
Mat image;
|
||
|
if (g_showClosedPoint)
|
||
|
{
|
||
|
image.create(depth.rows, depth.cols, CV_8UC3);
|
||
|
for (int row = 0; row < depth.rows; row++)
|
||
|
{
|
||
|
uchar* ptrDst = image.ptr(row);
|
||
|
short* ptrSrc = (short*)depth.ptr(row);
|
||
|
for (int col = 0; col < depth.cols; col++, ptrSrc++)
|
||
|
{
|
||
|
if ((lowValue == (*ptrSrc)) || (saturationValue == (*ptrSrc)))
|
||
|
{
|
||
|
*ptrDst = 0; ptrDst++;
|
||
|
*ptrDst = 0; ptrDst++;
|
||
|
*ptrDst = 0; ptrDst++;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
uchar val = (uchar) ((*ptrSrc) >> 2);
|
||
|
*ptrDst = val; ptrDst++;
|
||
|
*ptrDst = val; ptrDst++;
|
||
|
*ptrDst = val; ptrDst++;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static const int pointSize = 4;
|
||
|
for (int row = g_closedDepthPoint[0]; row < min(g_closedDepthPoint[0] + pointSize, image.rows); row++)
|
||
|
{
|
||
|
uchar* ptrDst = image.ptr(row) + g_closedDepthPoint[1] * 3 + 2;//+2 -> Red
|
||
|
for (int col = 0; col < min(pointSize, image.cols - g_closedDepthPoint[1]); col++, ptrDst+=3)
|
||
|
{
|
||
|
*ptrDst = 255;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
image.create(depth.rows, depth.cols, CV_8UC1);
|
||
|
for (int row = 0; row < depth.rows; row++)
|
||
|
{
|
||
|
uchar* ptrDst = image.ptr(row);
|
||
|
short* ptrSrc = (short*)depth.ptr(row);
|
||
|
for (int col = 0; col < depth.cols; col++, ptrSrc++, ptrDst++)
|
||
|
{
|
||
|
if ((lowValue == (*ptrSrc)) || (saturationValue == (*ptrSrc)))
|
||
|
*ptrDst = 0;
|
||
|
else
|
||
|
*ptrDst = (uchar) ((*ptrSrc) >> 2);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
imshow(winname, image);
|
||
|
}
|
||
|
|
||
11 years ago
|
int main(int argc, char* argv[])
|
||
11 years ago
|
{
|
||
|
parseCMDLine(argc, argv);
|
||
|
|
||
|
VideoCapture capture;
|
||
11 years ago
|
capture.open(CAP_INTELPERC);
|
||
11 years ago
|
if (!capture.isOpened())
|
||
|
{
|
||
|
cerr << "Can not open a capture object." << endl;
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
if (g_printStreamSetting)
|
||
|
printStreamProperties(capture);
|
||
|
|
||
|
if (-1 != g_imageStreamProfileIdx)
|
||
|
{
|
||
11 years ago
|
if (!capture.set(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_INTELPERC_PROFILE_IDX, (double)g_imageStreamProfileIdx))
|
||
11 years ago
|
{
|
||
|
cerr << "Can not setup a image stream." << endl;
|
||
|
return -1;
|
||
|
}
|
||
|
}
|
||
|
if (-1 != g_depthStreamProfileIdx)
|
||
|
{
|
||
11 years ago
|
if (!capture.set(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_PROFILE_IDX, (double)g_depthStreamProfileIdx))
|
||
11 years ago
|
{
|
||
|
cerr << "Can not setup a depth stream." << endl;
|
||
|
return -1;
|
||
|
}
|
||
|
}
|
||
|
else if (g_irStreamShow)
|
||
|
{
|
||
11 years ago
|
if (!capture.set(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_INTELPERC_PROFILE_IDX, 0.0))
|
||
11 years ago
|
{
|
||
|
cerr << "Can not setup a IR stream." << endl;
|
||
|
return -1;
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
cout << "Streams not selected" << endl;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
7 years ago
|
//Setup additional properties only after set profile of the stream
|
||
11 years ago
|
if ( (-10000.0 < g_imageBrightness) && (g_imageBrightness < 10000.0))
|
||
11 years ago
|
capture.set(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_BRIGHTNESS, g_imageBrightness);
|
||
11 years ago
|
if ( (0 < g_imageContrast) && (g_imageContrast < 10000.0))
|
||
11 years ago
|
capture.set(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_BRIGHTNESS, g_imageContrast);
|
||
11 years ago
|
|
||
|
int frame = 0;
|
||
|
for(;;frame++)
|
||
|
{
|
||
|
Mat bgrImage;
|
||
|
Mat depthImage;
|
||
|
Mat irImage;
|
||
|
|
||
|
if (!capture.grab())
|
||
|
{
|
||
|
cout << "Can not grab images." << endl;
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
11 years ago
|
if ((-1 != g_depthStreamProfileIdx) && (capture.retrieve(depthImage, CAP_INTELPERC_DEPTH_MAP)))
|
||
11 years ago
|
{
|
||
11 years ago
|
if (g_showClosedPoint)
|
||
11 years ago
|
{
|
||
11 years ago
|
double minVal = 0.0; double maxVal = 0.0;
|
||
11 years ago
|
minMaxIdx(depthImage, &minVal, &maxVal, g_closedDepthPoint);
|
||
|
}
|
||
|
imshowDepth("depth image", depthImage, capture);
|
||
|
}
|
||
11 years ago
|
if ((g_irStreamShow) && (capture.retrieve(irImage, CAP_INTELPERC_IR_MAP)))
|
||
11 years ago
|
imshowIR("ir image", irImage);
|
||
11 years ago
|
if ((-1 != g_imageStreamProfileIdx) && (capture.retrieve(bgrImage, CAP_INTELPERC_IMAGE)))
|
||
11 years ago
|
imshowImage("color image", bgrImage, capture);
|
||
|
|
||
|
if (g_printTiming)
|
||
|
{
|
||
11 years ago
|
cout << "Image frame: " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_POS_FRAMES)
|
||
|
<< ", Depth(IR) frame: " << capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_POS_FRAMES) << endl;
|
||
|
cout << "Image frame: " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_POS_MSEC)
|
||
|
<< ", Depth(IR) frame: " << capture.get(CAP_INTELPERC_DEPTH_GENERATOR | CAP_PROP_POS_MSEC) << endl;
|
||
11 years ago
|
}
|
||
|
if( waitKey(30) >= 0 )
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
11 years ago
|
}
|