mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
- refactored framebuffer grabber to use ImageResampler
- added OsxGrabber for OSX - added binary for imx6 (cubox-i) and updated install script Former-commit-id: 2c55e292c842c67e54ce36bd91e4f6303b98687a
This commit is contained in:
@@ -5,10 +5,8 @@
|
||||
#include <linux/fb.h>
|
||||
#include <sys/mman.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <math.h>
|
||||
|
||||
// STL includes
|
||||
#include <cassert>
|
||||
#include <iostream>
|
||||
|
||||
// Local includes
|
||||
@@ -20,59 +18,48 @@ FramebufferFrameGrabber::FramebufferFrameGrabber(const std::string & device, con
|
||||
_fbDevice(device),
|
||||
_width(width),
|
||||
_height(height),
|
||||
_xScale(1),
|
||||
_yScale(1)
|
||||
_imgResampler(new ImageResampler())
|
||||
{
|
||||
int result;
|
||||
struct fb_var_screeninfo vinfo;
|
||||
|
||||
// Check if the framebuffer device can be opened and display the current resolution
|
||||
_fbfd = open(_fbDevice.c_str(), O_RDONLY);
|
||||
assert(_fbfd > 0);
|
||||
|
||||
// get variable screen information
|
||||
result = ioctl (_fbfd, FBIOGET_VSCREENINFO, &vinfo);
|
||||
assert(result == 0);
|
||||
|
||||
std::cout << "Framebuffer opened with resolution: " << vinfo.xres << "x" << vinfo.yres << "@" << vinfo.bits_per_pixel << "bit" << std::endl;
|
||||
|
||||
close(_fbfd);
|
||||
if (_fbfd == 0)
|
||||
{
|
||||
std::cerr << "Error openning " << _fbDevice << std::endl;
|
||||
}
|
||||
else
|
||||
{
|
||||
// get variable screen information
|
||||
result = ioctl (_fbfd, FBIOGET_VSCREENINFO, &vinfo);
|
||||
if (result != 0)
|
||||
{
|
||||
std::cerr << "Could not get screen information" << std::endl;
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cout << "Framebuffer opened with resolution: " << vinfo.xres << "x" << vinfo.yres << "@" << vinfo.bits_per_pixel << "bit" << std::endl;
|
||||
}
|
||||
close(_fbfd);
|
||||
}
|
||||
}
|
||||
|
||||
FramebufferFrameGrabber::~FramebufferFrameGrabber()
|
||||
{
|
||||
delete _imgResampler;
|
||||
}
|
||||
|
||||
void FramebufferFrameGrabber::setVideoMode(const VideoMode videoMode)
|
||||
{
|
||||
switch (videoMode) {
|
||||
case VIDEO_3DSBS:
|
||||
_xScale = 2;
|
||||
_yScale = 1;
|
||||
break;
|
||||
case VIDEO_3DTAB:
|
||||
_xScale = 1;
|
||||
_yScale = 2;
|
||||
break;
|
||||
case VIDEO_2D:
|
||||
default:
|
||||
_xScale = 1;
|
||||
_yScale = 1;
|
||||
break;
|
||||
}
|
||||
_imgResampler->set3D(videoMode);
|
||||
}
|
||||
|
||||
void FramebufferFrameGrabber::grabFrame(Image<ColorRgba> & image)
|
||||
void FramebufferFrameGrabber::grabFrame(Image<ColorRgb> & image)
|
||||
{
|
||||
struct fb_var_screeninfo vinfo;
|
||||
unsigned capSize, px, py, index, bytesPerPixel;
|
||||
float x_scale, y_scale;
|
||||
|
||||
/* resize the given image if needed */
|
||||
if (image.width() != _width || image.height() != _height)
|
||||
{
|
||||
image.resize(_width, _height);
|
||||
}
|
||||
unsigned capSize, bytesPerPixel;
|
||||
PixelFormat pixelFormat;
|
||||
|
||||
/* Open the framebuffer device */
|
||||
_fbfd = open(_fbDevice.c_str(), O_RDONLY);
|
||||
@@ -82,41 +69,37 @@ void FramebufferFrameGrabber::grabFrame(Image<ColorRgba> & image)
|
||||
|
||||
bytesPerPixel = vinfo.bits_per_pixel / 8;
|
||||
capSize = vinfo.xres * vinfo.yres * bytesPerPixel;
|
||||
|
||||
|
||||
if (vinfo.bits_per_pixel == 16)
|
||||
{
|
||||
pixelFormat = PIXELFORMAT_BGR16;
|
||||
}
|
||||
else if (vinfo.bits_per_pixel == 24)
|
||||
{
|
||||
pixelFormat = PIXELFORMAT_BGR24;
|
||||
}
|
||||
else if (vinfo.bits_per_pixel == 32)
|
||||
{
|
||||
pixelFormat = PIXELFORMAT_BGR32;
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << "Unknown pixel format: " << vinfo.bits_per_pixel << " bits per pixel" << std::endl;
|
||||
close(_fbfd);
|
||||
return;
|
||||
}
|
||||
|
||||
/* map the device to memory */
|
||||
_fbp = (unsigned char*)mmap(0, capSize, PROT_READ, MAP_PRIVATE | MAP_NORESERVE, _fbfd, 0);
|
||||
|
||||
/* nearest neighbor downscaling */
|
||||
x_scale = (vinfo.xres / float(_xScale)) / float(_width);
|
||||
y_scale = (vinfo.yres / float(_yScale)) / float(_height);
|
||||
|
||||
ColorRgba *pPixel = image.memptr();
|
||||
for (unsigned i=0; i < _height; i++) {
|
||||
for (unsigned j=0; j < _width; j++) {
|
||||
px = floor(j * x_scale);
|
||||
py = floor(i * y_scale);
|
||||
index = (py * vinfo.xres + px) * bytesPerPixel;
|
||||
|
||||
if (vinfo.bits_per_pixel == 16) {
|
||||
pPixel->blue = (_fbp[index] & 0x1f) << 3;
|
||||
pPixel->green = (((_fbp[index + 1] & 0x7) << 3) | (_fbp[index] & 0xE0) >> 5) << 2;
|
||||
pPixel->red = (_fbp[index + 1] & 0xF8);
|
||||
pPixel->alpha = 255;
|
||||
} else if(vinfo.bits_per_pixel == 24) {
|
||||
pPixel->blue = _fbp[index];
|
||||
pPixel->green = _fbp[index + 1];
|
||||
pPixel->red = _fbp[index + 2];
|
||||
pPixel->alpha = 255;
|
||||
} else if(vinfo.bits_per_pixel == 32) {
|
||||
pPixel->blue = _fbp[index];
|
||||
pPixel->green = _fbp[index + 1];
|
||||
pPixel->red = _fbp[index + 2];
|
||||
pPixel->alpha = _fbp[index + 3];
|
||||
}
|
||||
|
||||
pPixel++;
|
||||
}
|
||||
}
|
||||
_imgResampler->setHorizontalPixelDecimation(vinfo.xres/_width);
|
||||
_imgResampler->setVerticalPixelDecimation(vinfo.yres/_height);
|
||||
_imgResampler->processImage(_fbp,
|
||||
vinfo.xres,
|
||||
vinfo.yres,
|
||||
vinfo.xres * bytesPerPixel,
|
||||
pixelFormat,
|
||||
image);
|
||||
|
||||
munmap(_fbp, capSize);
|
||||
close(_fbfd);
|
||||
|
@@ -2,8 +2,9 @@
|
||||
|
||||
// Utils includes
|
||||
#include <utils/Image.h>
|
||||
#include <utils/ColorRgba.h>
|
||||
#include <utils/ColorRgb.h>
|
||||
#include <utils/VideoMode.h>
|
||||
#include <utils/ImageResampler.h>
|
||||
|
||||
///
|
||||
/// The FramebufferFrameGrabber is used for creating snapshots of the display (screenshots)
|
||||
@@ -35,7 +36,7 @@ public:
|
||||
/// @param[out] image The snapped screenshot (should be initialized with correct width and
|
||||
/// height)
|
||||
///
|
||||
void grabFrame(Image<ColorRgba> & image);
|
||||
void grabFrame(Image<ColorRgb> & image);
|
||||
|
||||
private:
|
||||
/// Framebuffer file descriptor
|
||||
@@ -53,9 +54,6 @@ private:
|
||||
/// Height of the captured snapshot [pixels]
|
||||
const unsigned _height;
|
||||
|
||||
/// width scale factor for 3D image processing
|
||||
float _xScale;
|
||||
|
||||
/// height scale factor for 3D image processing
|
||||
float _yScale;
|
||||
/// Image resampler for downscaling the image
|
||||
ImageResampler * _imgResampler;
|
||||
};
|
||||
|
Reference in New Issue
Block a user