mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00:00 
			
		
		
		
	* LedDevice - Address clang findings * Fix Windows Warnings * Ensure newInput is initialised * Clean-up unused elements for Plaform Capture * Fix initialization problem and spellings * Address clang findings and spelling corrections * LedDevice clean-ups * Cleanups * Align that getLedCount is int * Have "display" as default for Grabbers * Fix config during start-up for missing elements * Framegrabber Clean-up - Remove non supported grabbers from selection, filter valid options * Typo * Framegrabber.json - Fix property numbering * Preselect active Grabbertype * Sort Grabbernames * Align options with selected element * Fix deletion of pointer to incomplete type 'BonjourBrowserWrapper' * Address macOS compile warnings * Have default layout = 1 LED only to avoid errors as in #673 * Address lgtm findings * Address finding that params passed to LedDevice discovery were not considered * Cleanups after merging with latest master * Update Changelog * Address lgtm findings * Fix comment * Test Fix * Fix Python Warning * Handle Dummy Device assignment correctly * Address delete called on non-final 'commandline::Option' that has virtual functions but non-virtual destructor * Correct that QTimer.start accepts only int * Have Release Python GIL & reset threat state chnage downward compatible * Correct format specifier * LedDevice - add assertions * Readonly DB - Fix merge issue * Smoothing - Fix wrong defaults * LedDevice - correct assertion * Show smoothing config set# in debug and related values. * Suppress error on windows, if default file is "/dev/null" * CMAKE - Allow to define QT_BASE_DIR dynamically via environment-variable * Ignore Visual Studio specific files Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
		
			
				
	
	
		
			183 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			183 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| // STL includes
 | |
| #include <vector>
 | |
| #include <cstdint>
 | |
| #include <cstring>
 | |
| #include <algorithm>
 | |
| #include <cassert>
 | |
| #include <type_traits>
 | |
| #include <utils/ColorRgb.h>
 | |
| 
 | |
| // QT includes
 | |
| #include <QSharedData>
 | |
| 
 | |
| // https://docs.microsoft.com/en-us/windows/win32/winprog/windows-data-types#ssize-t
 | |
| #if defined(_MSC_VER)
 | |
| #include <BaseTsd.h>
 | |
| typedef SSIZE_T ssize_t;
 | |
| #endif
 | |
| 
 | |
| template <typename Pixel_T>
 | |
| class ImageData : public QSharedData
 | |
| {
 | |
| public:
 | |
| 	typedef Pixel_T pixel_type;
 | |
| 
 | |
| 	ImageData(unsigned width, unsigned height, const Pixel_T background) :
 | |
| 		_width(width),
 | |
| 		_height(height),
 | |
| 		_pixels(new Pixel_T[width * height + 1])
 | |
| 	{
 | |
| 		std::fill(_pixels, _pixels + width * height, background);
 | |
| 	}
 | |
| 
 | |
| 	ImageData(const ImageData & other) :
 | |
| 		QSharedData(other),
 | |
| 		_width(other._width),
 | |
| 		_height(other._height),
 | |
| 		_pixels(new Pixel_T[other._width * other._height + 1])
 | |
| 	{
 | |
| 		memcpy(_pixels, other._pixels, static_cast<ulong>(other._width) * static_cast<ulong>(other._height) * sizeof(Pixel_T));
 | |
| 	}
 | |
| 
 | |
| 	ImageData& operator=(ImageData rhs)
 | |
| 	{
 | |
| 		rhs.swap(*this);
 | |
| 		return *this;
 | |
| 	}
 | |
| 
 | |
| 	void swap(ImageData& s) noexcept
 | |
| 	{
 | |
| 		using std::swap;
 | |
| 		swap(this->_width, s._width);
 | |
| 		swap(this->_height, s._height);
 | |
| 		swap(this->_pixels, s._pixels);
 | |
| 	}
 | |
| 
 | |
| 	ImageData(ImageData&& src) noexcept
 | |
| 		: _width(0)
 | |
| 		, _height(0)
 | |
| 		, _pixels(NULL)
 | |
| 	{
 | |
| 		src.swap(*this);
 | |
| 	}
 | |
| 
 | |
| 	ImageData& operator=(ImageData&& src) noexcept
 | |
| 	{
 | |
| 		src.swap(*this);
 | |
| 		return *this;
 | |
| 	}
 | |
| 
 | |
| 	~ImageData()
 | |
| 	{
 | |
| 		delete[] _pixels;
 | |
| 	}
 | |
| 
 | |
| 	inline unsigned width() const
 | |
| 	{
 | |
| 		return _width;
 | |
| 	}
 | |
| 
 | |
| 	inline unsigned height() const
 | |
| 	{
 | |
| 		return _height;
 | |
| 	}
 | |
| 
 | |
| 	uint8_t red(unsigned pixel) const
 | |
| 	{
 | |
| 		return (_pixels + pixel)->red;
 | |
| 	}
 | |
| 
 | |
| 	uint8_t green(unsigned pixel) const
 | |
| 	{
 | |
| 		return (_pixels + pixel)->green;
 | |
| 	}
 | |
| 
 | |
| 	uint8_t blue(unsigned pixel) const
 | |
| 	{
 | |
| 		return (_pixels + pixel)->blue;
 | |
| 	}
 | |
| 
 | |
| 	const Pixel_T& operator()(unsigned x, unsigned y) const
 | |
| 	{
 | |
| 		return _pixels[toIndex(x,y)];
 | |
| 	}
 | |
| 
 | |
| 	Pixel_T& operator()(unsigned x, unsigned y)
 | |
| 	{
 | |
| 		return _pixels[toIndex(x,y)];
 | |
| 	}
 | |
| 
 | |
| 	void resize(unsigned width, unsigned height)
 | |
| 	{
 | |
| 		if (width == _width && height == _height)
 | |
| 			return;
 | |
| 
 | |
| 		if ((width * height) > unsigned((_width * _height)))
 | |
| 		{
 | |
| 			delete[] _pixels;
 | |
| 			_pixels = new Pixel_T[width*height + 1];
 | |
| 		}
 | |
| 
 | |
| 		_width = width;
 | |
| 		_height = height;
 | |
| 	}
 | |
| 
 | |
| 	Pixel_T* memptr()
 | |
| 	{
 | |
| 		return _pixels;
 | |
| 	}
 | |
| 
 | |
| 	const Pixel_T* memptr() const
 | |
| 	{
 | |
| 		return _pixels;
 | |
| 	}
 | |
| 
 | |
| 	void toRgb(ImageData<ColorRgb>& image) const
 | |
| 	{
 | |
| 		if (image.width() != _width || image.height() != _height)
 | |
| 			image.resize(_width, _height);
 | |
| 
 | |
| 		const unsigned imageSize = _width * _height;
 | |
| 
 | |
| 		for (unsigned idx = 0; idx < imageSize; idx++)
 | |
| 		{
 | |
| 			const Pixel_T & color = _pixels[idx];
 | |
| 			image.memptr()[idx] = ColorRgb{color.red, color.green, color.blue};
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	ssize_t size() const
 | |
| 	{
 | |
| 		return  static_cast<ssize_t>(_width) * static_cast<ssize_t>(_height) * sizeof(Pixel_T);
 | |
| 	}
 | |
| 
 | |
| 	void clear()
 | |
| 	{
 | |
| 		if (_width != 1 || _height != 1)
 | |
| 		{
 | |
| 			_width = 1;
 | |
| 			_height = 1;
 | |
| 			delete[] _pixels;
 | |
| 			_pixels = new Pixel_T[2];
 | |
| 		}
 | |
| 
 | |
| 		memset(_pixels, 0, static_cast<unsigned long>(_width) * static_cast<unsigned long>(_height) * sizeof(Pixel_T));
 | |
| 	}
 | |
| 
 | |
| private:
 | |
| 	inline unsigned toIndex(unsigned x, unsigned y) const
 | |
| 	{
 | |
| 		return y * _width + x;
 | |
| 	}
 | |
| 
 | |
| private:
 | |
| 	/// The width of the image
 | |
| 	unsigned _width;
 | |
| 	/// The height of the image
 | |
| 	unsigned _height;
 | |
| 	/// The pixels of the image
 | |
| 	Pixel_T* _pixels;
 | |
| };
 |