2013-08-13 11:10:45 +02:00
|
|
|
|
2013-11-11 10:00:37 +01:00
|
|
|
// STL includes
|
|
|
|
#include <cassert>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
// Local includes
|
2013-08-13 11:10:45 +02:00
|
|
|
#include "DispmanxFrameGrabber.h"
|
|
|
|
|
|
|
|
DispmanxFrameGrabber::DispmanxFrameGrabber(const unsigned width, const unsigned height) :
|
2013-08-21 16:37:00 +02:00
|
|
|
_vc_display(0),
|
|
|
|
_vc_resource(0),
|
2013-10-02 09:46:12 +02:00
|
|
|
_vc_flags(0),
|
2013-08-13 11:10:45 +02:00
|
|
|
_width(width),
|
|
|
|
_height(height)
|
|
|
|
{
|
|
|
|
// Initiase BCM
|
|
|
|
bcm_host_init();
|
|
|
|
|
2013-08-21 16:37:00 +02:00
|
|
|
{
|
|
|
|
// Check if the display can be opened and display the current resolution
|
|
|
|
// Open the connection to the display
|
|
|
|
_vc_display = vc_dispmanx_display_open(0);
|
|
|
|
assert(_vc_display > 0);
|
|
|
|
|
|
|
|
// Obtain the display information
|
|
|
|
DISPMANX_MODEINFO_T vc_info;
|
|
|
|
int result = vc_dispmanx_display_get_info(_vc_display, &vc_info);
|
2013-08-21 17:23:32 +02:00
|
|
|
// Keep compiler happy in 'release' mode
|
|
|
|
(void)result;
|
2013-08-21 16:37:00 +02:00
|
|
|
assert(result == 0);
|
|
|
|
std::cout << "Display opened with resolution: " << vc_info.width << "x" << vc_info.height << std::endl;
|
|
|
|
|
|
|
|
// Close the displaye
|
|
|
|
vc_dispmanx_display_close(_vc_display);
|
|
|
|
}
|
2013-08-13 11:10:45 +02:00
|
|
|
|
|
|
|
// Create the resources for capturing image
|
2013-08-21 16:37:00 +02:00
|
|
|
uint32_t vc_nativeImageHandle;
|
|
|
|
_vc_resource = vc_dispmanx_resource_create(
|
2013-11-11 10:00:37 +01:00
|
|
|
VC_IMAGE_RGBA32,
|
2013-08-13 11:10:45 +02:00
|
|
|
width,
|
|
|
|
height,
|
2013-08-21 16:37:00 +02:00
|
|
|
&vc_nativeImageHandle);
|
|
|
|
assert(_vc_resource);
|
2013-08-13 11:10:45 +02:00
|
|
|
|
|
|
|
// Define the capture rectangle with the same size
|
|
|
|
vc_dispmanx_rect_set(&_rectangle, 0, 0, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
DispmanxFrameGrabber::~DispmanxFrameGrabber()
|
|
|
|
{
|
|
|
|
// Clean up resources
|
2013-08-21 16:37:00 +02:00
|
|
|
vc_dispmanx_resource_delete(_vc_resource);
|
2013-08-13 11:10:45 +02:00
|
|
|
|
|
|
|
// De-init BCM
|
|
|
|
bcm_host_deinit();
|
|
|
|
}
|
|
|
|
|
2013-10-02 09:46:12 +02:00
|
|
|
void DispmanxFrameGrabber::setFlags(const int vc_flags)
|
|
|
|
{
|
|
|
|
_vc_flags = vc_flags;
|
|
|
|
}
|
|
|
|
|
2013-11-11 10:00:37 +01:00
|
|
|
void DispmanxFrameGrabber::grabFrame(Image<ColorRgba> & image)
|
2013-08-13 11:10:45 +02:00
|
|
|
{
|
|
|
|
// Sanity check of the given image size
|
|
|
|
assert(image.width() == _width && image.height() == _height);
|
|
|
|
|
2013-08-21 16:37:00 +02:00
|
|
|
// Open the connection to the display
|
|
|
|
_vc_display = vc_dispmanx_display_open(0);
|
|
|
|
|
|
|
|
// Create the snapshot (incl down-scaling)
|
2013-10-14 18:25:54 +02:00
|
|
|
vc_dispmanx_snapshot(_vc_display, _vc_resource, (DISPMANX_TRANSFORM_T) _vc_flags);
|
2013-08-21 16:37:00 +02:00
|
|
|
|
|
|
|
// Read the snapshot into the memory
|
2013-08-13 11:10:45 +02:00
|
|
|
void* image_ptr = image.memptr();
|
2013-11-11 10:00:37 +01:00
|
|
|
const unsigned destPitch = _width * sizeof(ColorRgba);
|
2013-08-21 16:37:00 +02:00
|
|
|
vc_dispmanx_resource_read_data(_vc_resource, &_rectangle, image_ptr, destPitch);
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-08-21 16:37:00 +02:00
|
|
|
// Close the displaye
|
|
|
|
vc_dispmanx_display_close(_vc_display);
|
2013-08-13 11:10:45 +02:00
|
|
|
}
|