diff --git a/HyperionProcessor.cpp b/HyperionProcessor.cpp index 507307e..a27f44f 100644 --- a/HyperionProcessor.cpp +++ b/HyperionProcessor.cpp @@ -123,7 +123,7 @@ void HyperionProcessor::buildLedMap(int imageWidth, int imageHeight, const Black double vScanEnd = double(i + 1) / _layout.left; int yStart = border.horizontalSize + int(vScanStart * contentHeight); // Sample from top of region int yEnd = border.horizontalSize + int(vScanEnd * contentHeight); // To bottom of region - int xStart = border.verticalSize; // Sample from leftmost region + int xStart = border.verticalSize; // Sample leftmost region int xEnd = border.verticalSize + vSamplingThickness; // To right of region qDebug() << "LED" << ledIndex << ": xStart=" << xStart << "xEnd=" << xEnd << "yStart=" << yStart << "yEnd=" << yEnd; @@ -168,4 +168,4 @@ QColor HyperionProcessor::getAverageColor(const QImage &image, const QVector #include #include +#include #include "hyperiongrabber.h" #include "HyperionProcessor.h" #include "LedColorMapping.h" +#include "wledclient.h" // ANSI escape code to clear the screen const QString ANSI_RESET = "\033[0m"; +const QString ANSI_CLEAR_SCREEN = "\033[2J\033[1;1H"; // Function to get a printable block with a specific background color QString getAnsiColorBlock(const QColor& color) { @@ -20,12 +23,64 @@ QString getAnsiColorBlock(const QColor& color) { return QString("\033[48;2;%1;%2;%3m ").arg(color.red()).arg(color.green()).arg(color.blue()); } -void printLedColorsAsBoxes(const QVector& ledColors) { +void printAsciiLayout(const QVector& ledColors, const LedLayout& layout) { QTextStream cout(stdout); - for (const QColor& color : ledColors) { - cout << getAnsiColorBlock(color); + cout << ANSI_CLEAR_SCREEN; + + // Calculate grid dimensions based on the maximum extent of LEDs on each side + int max_h_extent = qMax(layout.bottom, layout.top); + int max_v_extent = qMax(layout.left, layout.right); + + // Add 2 for the corner LEDs (one for left side, one for right side) + int grid_width = max_h_extent + 2; + // Add 2 for the corner LEDs (one for top side, one for bottom side) + int grid_height = max_v_extent + 2; + + // Create a 2D grid to store the color blocks + QVector> grid(grid_height, QVector(grid_width, " ")); + + // Populate the grid with LED colors + int currentLedIndex = 0; + + // Bottom LEDs (left to right) + for (int i = 0; i < layout.bottom; ++i) { + if (currentLedIndex < ledColors.size()) { + grid[grid_height - 1][1 + i] = getAnsiColorBlock(ledColors.value(currentLedIndex)); + } + currentLedIndex++; + } + + // Right LEDs (bottom to top) + for (int i = 0; i < layout.right; ++i) { + if (currentLedIndex < ledColors.size()) { + grid[grid_height - 2 - i][grid_width - 1] = getAnsiColorBlock(ledColors.value(currentLedIndex)); + } + currentLedIndex++; + } + + // Top LEDs (right to left) + for (int i = 0; i < layout.top; ++i) { + if (currentLedIndex < ledColors.size()) { + grid[0][grid_width - 2 - i] = getAnsiColorBlock(ledColors.value(currentLedIndex)); + } + currentLedIndex++; + } + + // Left LEDs (top to bottom) + for (int i = 0; i < layout.left; ++i) { + if (currentLedIndex < ledColors.size()) { + grid[1 + i][0] = getAnsiColorBlock(ledColors.value(currentLedIndex)); + } + currentLedIndex++; + } + + // Print the grid + for (int r = 0; r < grid_height; ++r) { + for (int c = 0; c < grid_width; ++c) { + cout << grid[r][c]; + } + cout << ANSI_RESET << "\n"; } - cout << ANSI_RESET << "\n"; cout.flush(); } @@ -33,6 +88,7 @@ void printLedColorsAsBoxes(const QVector& ledColors) { static HyperionGrabber *grabber = nullptr; static QApplication *app = nullptr; static HyperionProcessor *processor = nullptr; +static WledClient *wledClient = nullptr; void quit(int) { if (grabber != nullptr) { @@ -41,6 +97,9 @@ void quit(int) { if (processor != nullptr) { delete processor; } + if (wledClient != nullptr) { + delete wledClient; + } if (app != nullptr) { app->quit(); } @@ -51,21 +110,42 @@ class GrabberConfigurator : public QObject Q_OBJECT public: - GrabberConfigurator(const QHash &opts, const LedLayout& layout, const QJsonObject& config, QObject *parent = nullptr) + GrabberConfigurator(const QHash &opts, const LedLayout& layout, const QJsonObject& config, const QString& wledAddress, quint16 wledPort, QObject *parent = nullptr) : QObject(parent), _layout(layout) { grabber = new HyperionGrabber(opts); processor = new HyperionProcessor(layout, config); - connect(grabber, &HyperionGrabber::imageReady, this, &GrabberConfigurator::processFrame); + wledClient = new WledClient(wledAddress, wledPort, this); + + // Connect grabber to a new slot that will trigger the timer + connect(grabber, &HyperionGrabber::imageReady, this, &GrabberConfigurator::onImageReady); + + _timer = new QTimer(this); + _timer->setInterval(1000); // 1 second + connect(_timer, &QTimer::timeout, this, &GrabberConfigurator::processCurrentFrame); + _timer->start(); } public slots: - void processFrame(const QImage &image) { - qDebug() << "GrabberConfigurator::processFrame called."; - if (image.isNull()) return; + void onImageReady(const QImage &image) { + _currentImage = image; // Store the latest image + } + + void processCurrentFrame() { + QTextStream cout(stdout); + cout << "\n\n\n"; // Print newlines for separation + qDebug() << "GrabberConfigurator::processCurrentFrame called."; + + if (_currentImage.isNull()) { + qDebug() << "No image available yet."; + return; + } // Process the image with HyperionProcessor - QVector ledColors = processor->process(image); + QVector ledColors = processor->process(_currentImage); + + // Send colors to WLED + wledClient->setLedsColor(ledColors); // Debugging: Print some sample LED colors if (!ledColors.isEmpty()) { @@ -76,46 +156,14 @@ public slots: if (ledColors.size() > _layout.bottom + _layout.right) qDebug() << " LED (bottom+right+1):" << ledColors.at(_layout.bottom + _layout.right).name(); } - // Get the processed image dimensions and border info - QSize processedImageSize = processor->getLastImageSize(); - BlackBorder border = processor->getLastBorder(); - - // Calculate the content rectangle - int xOffset = border.verticalSize; - int yOffset = border.horizontalSize; - int contentWidth = processedImageSize.width() - (2 * border.verticalSize); - int contentHeight = processedImageSize.height() - (2 * border.horizontalSize); - - if (contentWidth > 0 && contentHeight > 0) { - // QImage croppedImage = image.copy(xOffset, yOffset, contentWidth, contentHeight); - - // Debugging: Print ledMap details - const QVector>& ledMap = processor->getLedMap(); - qDebug() << "ledMap size:" << ledMap.size(); - - for (int i = 0; i < ledColors.size(); ++i) { - const QColor& color = ledColors.at(i); - const QVector& pixels = ledMap.at(i); - qDebug() << " LED" << i << "pixels size:" << pixels.size(); - - // Debugging: Print rectangle dimensions (if needed, can be re-enabled) - // int minX = image.width(); int minY = image.height(); int maxX = 0; int maxY = 0; - // for (const QPoint& p : pixels) { minX = qMin(minX, p.x()); minY = qMin(minY, p.y()); maxX = qMax(maxX, p.x()); maxY = qMax(maxY, p.y()); } - // int rectMinX = minX - xOffset; int rectMinY = minY - yOffset; - // int rectWidth = qMax(1, maxX - minX + 1); int rectHeight = qMax(1, maxY - minY + 1); - // qDebug() << "LED" << i << ": Rect(" << rectMinX << "," << rectMinY << "," << rectWidth << "," << rectHeight << ") Color:" << color.name(); - } - - // Print LED colors as a line of boxes in the terminal - printLedColorsAsBoxes(ledColors); - - } else { - qDebug() << "No content to process after black border removal."; - } + // Remove terminal visualization + // printAsciiLayout(ledColors, _layout); } private: LedLayout _layout; // Still needed for HyperionProcessor constructor + QTimer *_timer; + QImage _currentImage; }; int main(int argc, char *argv[]) @@ -143,10 +191,23 @@ int main(int argc, char *argv[]) parser.addOption(QCommandLineOption(QStringList() << "leds-left", "Number of LEDs on the left edge.", "count", "20")); // Add options for the processor - parser.addOption(QCommandLineOption(QStringList() << "bbt", "Black border threshold (0.0 to 1.0).", "threshold", "0.1")); + parser.addOption(QCommandLineOption(QStringList() << "bbt", "Black border threshold (0.0 to 1.0).", "threshold", "0.2")); // Increased threshold + + // Add WLED options + parser.addOption(QCommandLineOption(QStringList() << "a" << "address", "IP address of the WLED device.", "address")); + parser.addOption(QCommandLineOption(QStringList() << "p" << "port", "UDP port of the WLED device.", "port", "21324")); parser.process(*app); + // Validate WLED address + if (!parser.isSet("address")) { + qCritical() << "Error: WLED IP address not provided. Use -a or --address."; + parser.showHelp(1); + } + + QString wledAddress = parser.value("address"); + quint16 wledPort = parser.value("port").toUShort(); + QHash grabberOpts; grabberOpts.insert("scale", parser.value("scale")); grabberOpts.insert("frameskip", parser.value("frameskip")); @@ -160,18 +221,11 @@ int main(int argc, char *argv[]) QJsonObject processorConfig; processorConfig["blackBorderThreshold"] = parser.value("bbt").toDouble(); - // No QLabel or QWidget needed for this visualization - // QWidget window; - // QLabel label; - // label.setParent(&window); - // label.setScaledContents(true); - // window.show(); + GrabberConfigurator configurator(grabberOpts, layout, processorConfig, wledAddress, wledPort); - GrabberConfigurator configurator(grabberOpts, layout, processorConfig); - - qInfo() << "Starting GrabberConfigurator. A line of colored boxes should appear in the terminal. Press Ctrl+C to exit."; + qInfo() << "Starting GrabberConfigurator. Sending LED colors to WLED device." << wledAddress << ":" << wledPort << ". Press Ctrl+C to exit."; return app->exec(); } -#include "grabberconfigurator.moc" \ No newline at end of file +#include "grabberconfigurator.moc" diff --git a/grabberconfigurator_autogen/include/grabberconfigurator.moc b/grabberconfigurator_autogen/include/grabberconfigurator.moc index 31dc28b..5251269 100644 --- a/grabberconfigurator_autogen/include/grabberconfigurator.moc +++ b/grabberconfigurator_autogen/include/grabberconfigurator.moc @@ -38,16 +38,19 @@ template <> constexpr inline auto GrabberConfigurator::qt_create_metaobjectdata< namespace QMC = QtMocConstants; QtMocHelpers::StringRefStorage qt_stringData { "GrabberConfigurator", - "processFrame", + "onImageReady", "", - "image" + "image", + "processCurrentFrame" }; QtMocHelpers::UintData qt_methods { - // Slot 'processFrame' + // Slot 'onImageReady' QtMocHelpers::SlotData(1, 2, QMC::AccessPublic, QMetaType::Void, {{ { QMetaType::QImage, 3 }, }}), + // Slot 'processCurrentFrame' + QtMocHelpers::SlotData(4, 2, QMC::AccessPublic, QMetaType::Void), }; QtMocHelpers::UintData qt_properties { }; @@ -71,7 +74,8 @@ void GrabberConfigurator::qt_static_metacall(QObject *_o, QMetaObject::Call _c, auto *_t = static_cast(_o); if (_c == QMetaObject::InvokeMetaMethod) { switch (_id) { - case 0: _t->processFrame((*reinterpret_cast< std::add_pointer_t>(_a[1]))); break; + case 0: _t->onImageReady((*reinterpret_cast< std::add_pointer_t>(_a[1]))); break; + case 1: _t->processCurrentFrame(); break; default: ; } } @@ -96,14 +100,14 @@ int GrabberConfigurator::qt_metacall(QMetaObject::Call _c, int _id, void **_a) if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) + if (_id < 2) qt_static_metacall(this, _c, _id, _a); - _id -= 1; + _id -= 2; } if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) + if (_id < 2) *reinterpret_cast(_a[0]) = QMetaType(); - _id -= 1; + _id -= 2; } return _id; } diff --git a/output.txt b/output.txt new file mode 100644 index 0000000..205970d --- /dev/null +++ b/output.txt @@ -0,0 +1,77731 @@ +WledClient initialized for host: "192.168.1.177" port: 4048 +qt.multimedia.ffmpeg: Using Qt multimedia with FFmpeg version n7.1.1 GPL version 3 or later +Screen size: 4096 x 1152 +Starting GrabberConfigurator. A rectangular ASCII layout of colored boxes should appear in the terminal. Press Ctrl+C to exit. +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d7d9dd" + LED 1: "#d7d9dd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d4d7da" + LED 1: "#d4d6da" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d2d4d7" + LED 1: "#d2d4d7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#cfd1d4" + LED 1: "#cfd1d4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#cecfd1" + LED 1: "#ced0d2" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#ccccce" + LED 1: "#cdcdcf" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#c6c7c9" + LED 1: "#c9cacb" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#c4c4c5" + LED 1: "#c8c8c9" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#c3c2c4" + LED 1: "#c5c5c6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#c3c3c3" + LED 1: "#c5c4c5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#c4c3c3" + LED 1: "#c3c3c3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#c1c0c0" + LED 1: "#c1c0c0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bfbebd" + LED 1: "#bfbdbd" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bcbbba" + LED 1: "#bcbbba" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b7" + LED 1: "#bab8b7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a7a5" + LED 1: "#aaa8a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#9d9a98" + LED 1: "#9f9b99" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#999593" + LED 1: "#9a9694" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#9b9795" + LED 1: "#9c9996" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a19d9c" + LED 1: "#a29f9d" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a8a5a4" + LED 1: "#a9a6a4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aeacab" + LED 1: "#afadac" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b3b1b1" + LED 1: "#b4b2b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b6b5" + LED 1: "#b8b6b5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b8b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b7b6" + LED 1: "#b8b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b6b5" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b3b3" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b7b6b5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 8 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 8 border.horizontalSize= 0 +buildLedMap: contentWidth= 624 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 8 xEnd= 16 yStart= 171 yEnd= 180 +LED 1 : xStart= 16 xEnd= 25 yStart= 171 yEnd= 180 +LED 2 : xStart= 25 xEnd= 34 yStart= 171 yEnd= 180 +LED 3 : xStart= 34 xEnd= 43 yStart= 171 yEnd= 180 +LED 4 : xStart= 43 xEnd= 52 yStart= 171 yEnd= 180 +LED 5 : xStart= 52 xEnd= 61 yStart= 171 yEnd= 180 +LED 6 : xStart= 61 xEnd= 70 yStart= 171 yEnd= 180 +LED 7 : xStart= 70 xEnd= 79 yStart= 171 yEnd= 180 +LED 8 : xStart= 79 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 114 yStart= 171 yEnd= 180 +LED 12 : xStart= 114 xEnd= 123 yStart= 171 yEnd= 180 +LED 13 : xStart= 123 xEnd= 132 yStart= 171 yEnd= 180 +LED 14 : xStart= 132 xEnd= 141 yStart= 171 yEnd= 180 +LED 15 : xStart= 141 xEnd= 150 yStart= 171 yEnd= 180 +LED 16 : xStart= 150 xEnd= 159 yStart= 171 yEnd= 180 +LED 17 : xStart= 159 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 480 yStart= 171 yEnd= 180 +LED 53 : xStart= 480 xEnd= 489 yStart= 171 yEnd= 180 +LED 54 : xStart= 489 xEnd= 498 yStart= 171 yEnd= 180 +LED 55 : xStart= 498 xEnd= 507 yStart= 171 yEnd= 180 +LED 56 : xStart= 507 xEnd= 516 yStart= 171 yEnd= 180 +LED 57 : xStart= 516 xEnd= 525 yStart= 171 yEnd= 180 +LED 58 : xStart= 525 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 560 yStart= 171 yEnd= 180 +LED 62 : xStart= 560 xEnd= 569 yStart= 171 yEnd= 180 +LED 63 : xStart= 569 xEnd= 578 yStart= 171 yEnd= 180 +LED 64 : xStart= 578 xEnd= 587 yStart= 171 yEnd= 180 +LED 65 : xStart= 587 xEnd= 596 yStart= 171 yEnd= 180 +LED 66 : xStart= 596 xEnd= 605 yStart= 171 yEnd= 180 +LED 67 : xStart= 605 xEnd= 614 yStart= 171 yEnd= 180 +LED 68 : xStart= 614 xEnd= 623 yStart= 171 yEnd= 180 +LED 69 : xStart= 623 xEnd= 632 yStart= 171 yEnd= 180 +LED 70 : xStart= 601 xEnd= 632 yStart= 171 yEnd= 180 +LED 71 : xStart= 601 xEnd= 632 yStart= 162 yEnd= 171 +LED 72 : xStart= 601 xEnd= 632 yStart= 153 yEnd= 162 +LED 73 : xStart= 601 xEnd= 632 yStart= 144 yEnd= 153 +LED 74 : xStart= 601 xEnd= 632 yStart= 135 yEnd= 144 +LED 75 : xStart= 601 xEnd= 632 yStart= 125 yEnd= 135 +LED 76 : xStart= 601 xEnd= 632 yStart= 117 yEnd= 125 +LED 77 : xStart= 601 xEnd= 632 yStart= 108 yEnd= 117 +LED 78 : xStart= 601 xEnd= 632 yStart= 99 yEnd= 108 +LED 79 : xStart= 601 xEnd= 632 yStart= 90 yEnd= 99 +LED 80 : xStart= 601 xEnd= 632 yStart= 80 yEnd= 90 +LED 81 : xStart= 601 xEnd= 632 yStart= 72 yEnd= 80 +LED 82 : xStart= 601 xEnd= 632 yStart= 62 yEnd= 72 +LED 83 : xStart= 601 xEnd= 632 yStart= 54 yEnd= 62 +LED 84 : xStart= 601 xEnd= 632 yStart= 45 yEnd= 54 +LED 85 : xStart= 601 xEnd= 632 yStart= 35 yEnd= 45 +LED 86 : xStart= 601 xEnd= 632 yStart= 27 yEnd= 35 +LED 87 : xStart= 601 xEnd= 632 yStart= 17 yEnd= 27 +LED 88 : xStart= 601 xEnd= 632 yStart= 9 yEnd= 17 +LED 89 : xStart= 601 xEnd= 632 yStart= 0 yEnd= 9 +LED 90 : xStart= 623 xEnd= 632 yStart= 0 yEnd= 9 +LED 91 : xStart= 614 xEnd= 623 yStart= 0 yEnd= 9 +LED 92 : xStart= 605 xEnd= 614 yStart= 0 yEnd= 9 +LED 93 : xStart= 596 xEnd= 605 yStart= 0 yEnd= 9 +LED 94 : xStart= 587 xEnd= 596 yStart= 0 yEnd= 9 +LED 95 : xStart= 578 xEnd= 587 yStart= 0 yEnd= 9 +LED 96 : xStart= 569 xEnd= 578 yStart= 0 yEnd= 9 +LED 97 : xStart= 560 xEnd= 569 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 560 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 525 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 516 xEnd= 525 yStart= 0 yEnd= 9 +LED 103 : xStart= 507 xEnd= 516 yStart= 0 yEnd= 9 +LED 104 : xStart= 498 xEnd= 507 yStart= 0 yEnd= 9 +LED 105 : xStart= 489 xEnd= 498 yStart= 0 yEnd= 9 +LED 106 : xStart= 480 xEnd= 489 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 480 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 159 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 150 xEnd= 159 yStart= 0 yEnd= 9 +LED 144 : xStart= 141 xEnd= 150 yStart= 0 yEnd= 9 +LED 145 : xStart= 132 xEnd= 141 yStart= 0 yEnd= 9 +LED 146 : xStart= 123 xEnd= 132 yStart= 0 yEnd= 9 +LED 147 : xStart= 114 xEnd= 123 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 114 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 79 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 70 xEnd= 79 yStart= 0 yEnd= 9 +LED 153 : xStart= 61 xEnd= 70 yStart= 0 yEnd= 9 +LED 154 : xStart= 52 xEnd= 61 yStart= 0 yEnd= 9 +LED 155 : xStart= 43 xEnd= 52 yStart= 0 yEnd= 9 +LED 156 : xStart= 34 xEnd= 43 yStart= 0 yEnd= 9 +LED 157 : xStart= 25 xEnd= 34 yStart= 0 yEnd= 9 +LED 158 : xStart= 16 xEnd= 25 yStart= 0 yEnd= 9 +LED 159 : xStart= 8 xEnd= 16 yStart= 0 yEnd= 9 +LED 160 : xStart= 8 xEnd= 39 yStart= 0 yEnd= 9 +LED 161 : xStart= 8 xEnd= 39 yStart= 9 yEnd= 18 +LED 162 : xStart= 8 xEnd= 39 yStart= 18 yEnd= 27 +LED 163 : xStart= 8 xEnd= 39 yStart= 27 yEnd= 36 +LED 164 : xStart= 8 xEnd= 39 yStart= 36 yEnd= 45 +LED 165 : xStart= 8 xEnd= 39 yStart= 45 yEnd= 54 +LED 166 : xStart= 8 xEnd= 39 yStart= 54 yEnd= 62 +LED 167 : xStart= 8 xEnd= 39 yStart= 62 yEnd= 72 +LED 168 : xStart= 8 xEnd= 39 yStart= 72 yEnd= 81 +LED 169 : xStart= 8 xEnd= 39 yStart= 81 yEnd= 90 +LED 170 : xStart= 8 xEnd= 39 yStart= 90 yEnd= 99 +LED 171 : xStart= 8 xEnd= 39 yStart= 99 yEnd= 108 +LED 172 : xStart= 8 xEnd= 39 yStart= 108 yEnd= 117 +LED 173 : xStart= 8 xEnd= 39 yStart= 117 yEnd= 125 +LED 174 : xStart= 8 xEnd= 39 yStart= 125 yEnd= 135 +LED 175 : xStart= 8 xEnd= 39 yStart= 135 yEnd= 144 +LED 176 : xStart= 8 xEnd= 39 yStart= 144 yEnd= 153 +LED 177 : xStart= 8 xEnd= 39 yStart= 153 yEnd= 162 +LED 178 : xStart= 8 xEnd= 39 yStart= 162 yEnd= 171 +LED 179 : xStart= 8 xEnd= 39 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b8b7" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#281b0f" + LED 1: "#bab8b7" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#291a0b" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#44382c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#655c53" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170a" + LED 1: "#807a74" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170a" + LED 1: "#8a847f" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170a" + LED 1: "#8f8a86" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170a" + LED 1: "#9f9b98" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#24160a" + LED 1: "#b4b2b0" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#51473f" + LED 1: "#bab8b7" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 4 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 4 border.horizontalSize= 0 +buildLedMap: contentWidth= 632 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 4 xEnd= 13 yStart= 171 yEnd= 180 +LED 1 : xStart= 13 xEnd= 22 yStart= 171 yEnd= 180 +LED 2 : xStart= 22 xEnd= 31 yStart= 171 yEnd= 180 +LED 3 : xStart= 31 xEnd= 40 yStart= 171 yEnd= 180 +LED 4 : xStart= 40 xEnd= 49 yStart= 171 yEnd= 180 +LED 5 : xStart= 49 xEnd= 58 yStart= 171 yEnd= 180 +LED 6 : xStart= 58 xEnd= 67 yStart= 171 yEnd= 180 +LED 7 : xStart= 67 xEnd= 76 yStart= 171 yEnd= 180 +LED 8 : xStart= 76 xEnd= 85 yStart= 171 yEnd= 180 +LED 9 : xStart= 85 xEnd= 94 yStart= 171 yEnd= 180 +LED 10 : xStart= 94 xEnd= 103 yStart= 171 yEnd= 180 +LED 11 : xStart= 103 xEnd= 112 yStart= 171 yEnd= 180 +LED 12 : xStart= 112 xEnd= 121 yStart= 171 yEnd= 180 +LED 13 : xStart= 121 xEnd= 130 yStart= 171 yEnd= 180 +LED 14 : xStart= 130 xEnd= 139 yStart= 171 yEnd= 180 +LED 15 : xStart= 139 xEnd= 148 yStart= 171 yEnd= 180 +LED 16 : xStart= 148 xEnd= 157 yStart= 171 yEnd= 180 +LED 17 : xStart= 157 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 482 yStart= 171 yEnd= 180 +LED 53 : xStart= 482 xEnd= 491 yStart= 171 yEnd= 180 +LED 54 : xStart= 491 xEnd= 500 yStart= 171 yEnd= 180 +LED 55 : xStart= 500 xEnd= 509 yStart= 171 yEnd= 180 +LED 56 : xStart= 509 xEnd= 518 yStart= 171 yEnd= 180 +LED 57 : xStart= 518 xEnd= 527 yStart= 171 yEnd= 180 +LED 58 : xStart= 527 xEnd= 536 yStart= 171 yEnd= 180 +LED 59 : xStart= 536 xEnd= 545 yStart= 171 yEnd= 180 +LED 60 : xStart= 545 xEnd= 554 yStart= 171 yEnd= 180 +LED 61 : xStart= 554 xEnd= 563 yStart= 171 yEnd= 180 +LED 62 : xStart= 563 xEnd= 572 yStart= 171 yEnd= 180 +LED 63 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 64 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 65 : xStart= 590 xEnd= 599 yStart= 171 yEnd= 180 +LED 66 : xStart= 599 xEnd= 608 yStart= 171 yEnd= 180 +LED 67 : xStart= 608 xEnd= 617 yStart= 171 yEnd= 180 +LED 68 : xStart= 617 xEnd= 626 yStart= 171 yEnd= 180 +LED 69 : xStart= 626 xEnd= 636 yStart= 171 yEnd= 180 +LED 70 : xStart= 605 xEnd= 636 yStart= 171 yEnd= 180 +LED 71 : xStart= 605 xEnd= 636 yStart= 162 yEnd= 171 +LED 72 : xStart= 605 xEnd= 636 yStart= 153 yEnd= 162 +LED 73 : xStart= 605 xEnd= 636 yStart= 144 yEnd= 153 +LED 74 : xStart= 605 xEnd= 636 yStart= 135 yEnd= 144 +LED 75 : xStart= 605 xEnd= 636 yStart= 125 yEnd= 135 +LED 76 : xStart= 605 xEnd= 636 yStart= 117 yEnd= 125 +LED 77 : xStart= 605 xEnd= 636 yStart= 108 yEnd= 117 +LED 78 : xStart= 605 xEnd= 636 yStart= 99 yEnd= 108 +LED 79 : xStart= 605 xEnd= 636 yStart= 90 yEnd= 99 +LED 80 : xStart= 605 xEnd= 636 yStart= 80 yEnd= 90 +LED 81 : xStart= 605 xEnd= 636 yStart= 72 yEnd= 80 +LED 82 : xStart= 605 xEnd= 636 yStart= 62 yEnd= 72 +LED 83 : xStart= 605 xEnd= 636 yStart= 54 yEnd= 62 +LED 84 : xStart= 605 xEnd= 636 yStart= 45 yEnd= 54 +LED 85 : xStart= 605 xEnd= 636 yStart= 35 yEnd= 45 +LED 86 : xStart= 605 xEnd= 636 yStart= 27 yEnd= 35 +LED 87 : xStart= 605 xEnd= 636 yStart= 17 yEnd= 27 +LED 88 : xStart= 605 xEnd= 636 yStart= 9 yEnd= 17 +LED 89 : xStart= 605 xEnd= 636 yStart= 0 yEnd= 9 +LED 90 : xStart= 626 xEnd= 636 yStart= 0 yEnd= 9 +LED 91 : xStart= 617 xEnd= 626 yStart= 0 yEnd= 9 +LED 92 : xStart= 608 xEnd= 617 yStart= 0 yEnd= 9 +LED 93 : xStart= 599 xEnd= 608 yStart= 0 yEnd= 9 +LED 94 : xStart= 590 xEnd= 599 yStart= 0 yEnd= 9 +LED 95 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 96 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 97 : xStart= 563 xEnd= 572 yStart= 0 yEnd= 9 +LED 98 : xStart= 554 xEnd= 563 yStart= 0 yEnd= 9 +LED 99 : xStart= 545 xEnd= 554 yStart= 0 yEnd= 9 +LED 100 : xStart= 536 xEnd= 545 yStart= 0 yEnd= 9 +LED 101 : xStart= 527 xEnd= 536 yStart= 0 yEnd= 9 +LED 102 : xStart= 518 xEnd= 527 yStart= 0 yEnd= 9 +LED 103 : xStart= 509 xEnd= 518 yStart= 0 yEnd= 9 +LED 104 : xStart= 500 xEnd= 509 yStart= 0 yEnd= 9 +LED 105 : xStart= 491 xEnd= 500 yStart= 0 yEnd= 9 +LED 106 : xStart= 482 xEnd= 491 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 482 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 157 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 148 xEnd= 157 yStart= 0 yEnd= 9 +LED 144 : xStart= 139 xEnd= 148 yStart= 0 yEnd= 9 +LED 145 : xStart= 130 xEnd= 139 yStart= 0 yEnd= 9 +LED 146 : xStart= 121 xEnd= 130 yStart= 0 yEnd= 9 +LED 147 : xStart= 112 xEnd= 121 yStart= 0 yEnd= 9 +LED 148 : xStart= 103 xEnd= 112 yStart= 0 yEnd= 9 +LED 149 : xStart= 94 xEnd= 103 yStart= 0 yEnd= 9 +LED 150 : xStart= 85 xEnd= 94 yStart= 0 yEnd= 9 +LED 151 : xStart= 76 xEnd= 85 yStart= 0 yEnd= 9 +LED 152 : xStart= 67 xEnd= 76 yStart= 0 yEnd= 9 +LED 153 : xStart= 58 xEnd= 67 yStart= 0 yEnd= 9 +LED 154 : xStart= 49 xEnd= 58 yStart= 0 yEnd= 9 +LED 155 : xStart= 40 xEnd= 49 yStart= 0 yEnd= 9 +LED 156 : xStart= 31 xEnd= 40 yStart= 0 yEnd= 9 +LED 157 : xStart= 22 xEnd= 31 yStart= 0 yEnd= 9 +LED 158 : xStart= 13 xEnd= 22 yStart= 0 yEnd= 9 +LED 159 : xStart= 4 xEnd= 13 yStart= 0 yEnd= 9 +LED 160 : xStart= 4 xEnd= 35 yStart= 0 yEnd= 9 +LED 161 : xStart= 4 xEnd= 35 yStart= 9 yEnd= 18 +LED 162 : xStart= 4 xEnd= 35 yStart= 18 yEnd= 27 +LED 163 : xStart= 4 xEnd= 35 yStart= 27 yEnd= 36 +LED 164 : xStart= 4 xEnd= 35 yStart= 36 yEnd= 45 +LED 165 : xStart= 4 xEnd= 35 yStart= 45 yEnd= 54 +LED 166 : xStart= 4 xEnd= 35 yStart= 54 yEnd= 62 +LED 167 : xStart= 4 xEnd= 35 yStart= 62 yEnd= 72 +LED 168 : xStart= 4 xEnd= 35 yStart= 72 yEnd= 81 +LED 169 : xStart= 4 xEnd= 35 yStart= 81 yEnd= 90 +LED 170 : xStart= 4 xEnd= 35 yStart= 90 yEnd= 99 +LED 171 : xStart= 4 xEnd= 35 yStart= 99 yEnd= 108 +LED 172 : xStart= 4 xEnd= 35 yStart= 108 yEnd= 117 +LED 173 : xStart= 4 xEnd= 35 yStart= 117 yEnd= 125 +LED 174 : xStart= 4 xEnd= 35 yStart= 125 yEnd= 135 +LED 175 : xStart= 4 xEnd= 35 yStart= 135 yEnd= 144 +LED 176 : xStart= 4 xEnd= 35 yStart= 144 yEnd= 153 +LED 177 : xStart= 4 xEnd= 35 yStart= 153 yEnd= 162 +LED 178 : xStart= 4 xEnd= 35 yStart= 162 yEnd= 171 +LED 179 : xStart= 4 xEnd= 35 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#5c544d" + LED 1: "#bab8b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3a3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#96918f" + LED 1: "#bab8b7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b3b0af" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#b2afae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a5a3a2" + LED 1: "#a7a4a3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#9d9a99" + LED 1: "#969493" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a09e9c" + LED 1: "#878585" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b2b0" + LED 1: "#817f7f" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b2b0" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b2b0" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b3b1" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b3b1" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b3b1" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b2" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b2" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b2" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b4b2" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b4b2" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b4b2" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b4b2" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b4b2" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b2" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b4b2" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b2" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b4b2" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b4b2" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b2" + LED 1: "#b5b3b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b3b1" + LED 1: "#b7b4b2" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b4b1af" + LED 1: "#b5b3b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2afad" + LED 1: "#b1aeac" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b5b3b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b5b4" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" + [48;2;61;44;21m                                                                       +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b5b3b2" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#5f513e" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#7d7364" + LED (bottom+right+1): "#363933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#979086" + LED (bottom+right+1): "#343733" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 10 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 10 border.horizontalSize= 0 +buildLedMap: contentWidth= 620 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 10 xEnd= 18 yStart= 171 yEnd= 180 +LED 1 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 2 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 3 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 4 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 5 : xStart= 54 xEnd= 63 yStart= 171 yEnd= 180 +LED 6 : xStart= 63 xEnd= 72 yStart= 171 yEnd= 180 +LED 7 : xStart= 72 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 89 yStart= 171 yEnd= 180 +LED 9 : xStart= 89 xEnd= 98 yStart= 171 yEnd= 180 +LED 10 : xStart= 98 xEnd= 107 yStart= 171 yEnd= 180 +LED 11 : xStart= 107 xEnd= 116 yStart= 171 yEnd= 180 +LED 12 : xStart= 116 xEnd= 125 yStart= 171 yEnd= 180 +LED 13 : xStart= 125 xEnd= 134 yStart= 171 yEnd= 180 +LED 14 : xStart= 134 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 169 yStart= 171 yEnd= 180 +LED 18 : xStart= 169 xEnd= 178 yStart= 171 yEnd= 180 +LED 19 : xStart= 178 xEnd= 187 yStart= 171 yEnd= 180 +LED 20 : xStart= 187 xEnd= 196 yStart= 171 yEnd= 180 +LED 21 : xStart= 196 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 249 yStart= 171 yEnd= 180 +LED 27 : xStart= 249 xEnd= 258 yStart= 171 yEnd= 180 +LED 28 : xStart= 258 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 390 yStart= 171 yEnd= 180 +LED 43 : xStart= 390 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 452 yStart= 171 yEnd= 180 +LED 50 : xStart= 452 xEnd= 461 yStart= 171 yEnd= 180 +LED 51 : xStart= 461 xEnd= 470 yStart= 171 yEnd= 180 +LED 52 : xStart= 470 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 514 yStart= 171 yEnd= 180 +LED 57 : xStart= 514 xEnd= 523 yStart= 171 yEnd= 180 +LED 58 : xStart= 523 xEnd= 532 yStart= 171 yEnd= 180 +LED 59 : xStart= 532 xEnd= 541 yStart= 171 yEnd= 180 +LED 60 : xStart= 541 xEnd= 550 yStart= 171 yEnd= 180 +LED 61 : xStart= 550 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 576 yStart= 171 yEnd= 180 +LED 64 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 65 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 66 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 67 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 68 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 69 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 70 : xStart= 599 xEnd= 630 yStart= 171 yEnd= 180 +LED 71 : xStart= 599 xEnd= 630 yStart= 162 yEnd= 171 +LED 72 : xStart= 599 xEnd= 630 yStart= 153 yEnd= 162 +LED 73 : xStart= 599 xEnd= 630 yStart= 144 yEnd= 153 +LED 74 : xStart= 599 xEnd= 630 yStart= 135 yEnd= 144 +LED 75 : xStart= 599 xEnd= 630 yStart= 125 yEnd= 135 +LED 76 : xStart= 599 xEnd= 630 yStart= 117 yEnd= 125 +LED 77 : xStart= 599 xEnd= 630 yStart= 108 yEnd= 117 +LED 78 : xStart= 599 xEnd= 630 yStart= 99 yEnd= 108 +LED 79 : xStart= 599 xEnd= 630 yStart= 90 yEnd= 99 +LED 80 : xStart= 599 xEnd= 630 yStart= 80 yEnd= 90 +LED 81 : xStart= 599 xEnd= 630 yStart= 72 yEnd= 80 +LED 82 : xStart= 599 xEnd= 630 yStart= 62 yEnd= 72 +LED 83 : xStart= 599 xEnd= 630 yStart= 54 yEnd= 62 +LED 84 : xStart= 599 xEnd= 630 yStart= 45 yEnd= 54 +LED 85 : xStart= 599 xEnd= 630 yStart= 35 yEnd= 45 +LED 86 : xStart= 599 xEnd= 630 yStart= 27 yEnd= 35 +LED 87 : xStart= 599 xEnd= 630 yStart= 17 yEnd= 27 +LED 88 : xStart= 599 xEnd= 630 yStart= 9 yEnd= 17 +LED 89 : xStart= 599 xEnd= 630 yStart= 0 yEnd= 9 +LED 90 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 91 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 92 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 93 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 94 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 95 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 576 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 550 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 541 xEnd= 550 yStart= 0 yEnd= 9 +LED 100 : xStart= 532 xEnd= 541 yStart= 0 yEnd= 9 +LED 101 : xStart= 523 xEnd= 532 yStart= 0 yEnd= 9 +LED 102 : xStart= 514 xEnd= 523 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 514 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 470 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 461 xEnd= 470 yStart= 0 yEnd= 9 +LED 109 : xStart= 452 xEnd= 461 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 452 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 390 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 390 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 258 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 249 xEnd= 258 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 249 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 196 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 187 xEnd= 196 yStart= 0 yEnd= 9 +LED 140 : xStart= 178 xEnd= 187 yStart= 0 yEnd= 9 +LED 141 : xStart= 169 xEnd= 178 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 169 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 125 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 116 xEnd= 125 yStart= 0 yEnd= 9 +LED 148 : xStart= 107 xEnd= 116 yStart= 0 yEnd= 9 +LED 149 : xStart= 98 xEnd= 107 yStart= 0 yEnd= 9 +LED 150 : xStart= 89 xEnd= 98 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 89 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 63 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 155 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 156 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 157 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 158 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 159 : xStart= 10 xEnd= 18 yStart= 0 yEnd= 9 +LED 160 : xStart= 10 xEnd= 41 yStart= 0 yEnd= 9 +LED 161 : xStart= 10 xEnd= 41 yStart= 9 yEnd= 18 +LED 162 : xStart= 10 xEnd= 41 yStart= 18 yEnd= 27 +LED 163 : xStart= 10 xEnd= 41 yStart= 27 yEnd= 36 +LED 164 : xStart= 10 xEnd= 41 yStart= 36 yEnd= 45 +LED 165 : xStart= 10 xEnd= 41 yStart= 45 yEnd= 54 +LED 166 : xStart= 10 xEnd= 41 yStart= 54 yEnd= 62 +LED 167 : xStart= 10 xEnd= 41 yStart= 62 yEnd= 72 +LED 168 : xStart= 10 xEnd= 41 yStart= 72 yEnd= 81 +LED 169 : xStart= 10 xEnd= 41 yStart= 81 yEnd= 90 +LED 170 : xStart= 10 xEnd= 41 yStart= 90 yEnd= 99 +LED 171 : xStart= 10 xEnd= 41 yStart= 99 yEnd= 108 +LED 172 : xStart= 10 xEnd= 41 yStart= 108 yEnd= 117 +LED 173 : xStart= 10 xEnd= 41 yStart= 117 yEnd= 125 +LED 174 : xStart= 10 xEnd= 41 yStart= 125 yEnd= 135 +LED 175 : xStart= 10 xEnd= 41 yStart= 135 yEnd= 144 +LED 176 : xStart= 10 xEnd= 41 yStart= 144 yEnd= 153 +LED 177 : xStart= 10 xEnd= 41 yStart= 153 yEnd= 162 +LED 178 : xStart= 10 xEnd= 41 yStart= 162 yEnd= 171 +LED 179 : xStart= 10 xEnd= 41 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#2a1a0c" + LED (bottom+1): "#b1ada9" + LED (bottom+right+1): "#333432" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 4 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 4 border.horizontalSize= 0 +buildLedMap: contentWidth= 632 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 4 xEnd= 13 yStart= 171 yEnd= 180 +LED 1 : xStart= 13 xEnd= 22 yStart= 171 yEnd= 180 +LED 2 : xStart= 22 xEnd= 31 yStart= 171 yEnd= 180 +LED 3 : xStart= 31 xEnd= 40 yStart= 171 yEnd= 180 +LED 4 : xStart= 40 xEnd= 49 yStart= 171 yEnd= 180 +LED 5 : xStart= 49 xEnd= 58 yStart= 171 yEnd= 180 +LED 6 : xStart= 58 xEnd= 67 yStart= 171 yEnd= 180 +LED 7 : xStart= 67 xEnd= 76 yStart= 171 yEnd= 180 +LED 8 : xStart= 76 xEnd= 85 yStart= 171 yEnd= 180 +LED 9 : xStart= 85 xEnd= 94 yStart= 171 yEnd= 180 +LED 10 : xStart= 94 xEnd= 103 yStart= 171 yEnd= 180 +LED 11 : xStart= 103 xEnd= 112 yStart= 171 yEnd= 180 +LED 12 : xStart= 112 xEnd= 121 yStart= 171 yEnd= 180 +LED 13 : xStart= 121 xEnd= 130 yStart= 171 yEnd= 180 +LED 14 : xStart= 130 xEnd= 139 yStart= 171 yEnd= 180 +LED 15 : xStart= 139 xEnd= 148 yStart= 171 yEnd= 180 +LED 16 : xStart= 148 xEnd= 157 yStart= 171 yEnd= 180 +LED 17 : xStart= 157 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 482 yStart= 171 yEnd= 180 +LED 53 : xStart= 482 xEnd= 491 yStart= 171 yEnd= 180 +LED 54 : xStart= 491 xEnd= 500 yStart= 171 yEnd= 180 +LED 55 : xStart= 500 xEnd= 509 yStart= 171 yEnd= 180 +LED 56 : xStart= 509 xEnd= 518 yStart= 171 yEnd= 180 +LED 57 : xStart= 518 xEnd= 527 yStart= 171 yEnd= 180 +LED 58 : xStart= 527 xEnd= 536 yStart= 171 yEnd= 180 +LED 59 : xStart= 536 xEnd= 545 yStart= 171 yEnd= 180 +LED 60 : xStart= 545 xEnd= 554 yStart= 171 yEnd= 180 +LED 61 : xStart= 554 xEnd= 563 yStart= 171 yEnd= 180 +LED 62 : xStart= 563 xEnd= 572 yStart= 171 yEnd= 180 +LED 63 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 64 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 65 : xStart= 590 xEnd= 599 yStart= 171 yEnd= 180 +LED 66 : xStart= 599 xEnd= 608 yStart= 171 yEnd= 180 +LED 67 : xStart= 608 xEnd= 617 yStart= 171 yEnd= 180 +LED 68 : xStart= 617 xEnd= 626 yStart= 171 yEnd= 180 +LED 69 : xStart= 626 xEnd= 636 yStart= 171 yEnd= 180 +LED 70 : xStart= 605 xEnd= 636 yStart= 171 yEnd= 180 +LED 71 : xStart= 605 xEnd= 636 yStart= 162 yEnd= 171 +LED 72 : xStart= 605 xEnd= 636 yStart= 153 yEnd= 162 +LED 73 : xStart= 605 xEnd= 636 yStart= 144 yEnd= 153 +LED 74 : xStart= 605 xEnd= 636 yStart= 135 yEnd= 144 +LED 75 : xStart= 605 xEnd= 636 yStart= 125 yEnd= 135 +LED 76 : xStart= 605 xEnd= 636 yStart= 117 yEnd= 125 +LED 77 : xStart= 605 xEnd= 636 yStart= 108 yEnd= 117 +LED 78 : xStart= 605 xEnd= 636 yStart= 99 yEnd= 108 +LED 79 : xStart= 605 xEnd= 636 yStart= 90 yEnd= 99 +LED 80 : xStart= 605 xEnd= 636 yStart= 80 yEnd= 90 +LED 81 : xStart= 605 xEnd= 636 yStart= 72 yEnd= 80 +LED 82 : xStart= 605 xEnd= 636 yStart= 62 yEnd= 72 +LED 83 : xStart= 605 xEnd= 636 yStart= 54 yEnd= 62 +LED 84 : xStart= 605 xEnd= 636 yStart= 45 yEnd= 54 +LED 85 : xStart= 605 xEnd= 636 yStart= 35 yEnd= 45 +LED 86 : xStart= 605 xEnd= 636 yStart= 27 yEnd= 35 +LED 87 : xStart= 605 xEnd= 636 yStart= 17 yEnd= 27 +LED 88 : xStart= 605 xEnd= 636 yStart= 9 yEnd= 17 +LED 89 : xStart= 605 xEnd= 636 yStart= 0 yEnd= 9 +LED 90 : xStart= 626 xEnd= 636 yStart= 0 yEnd= 9 +LED 91 : xStart= 617 xEnd= 626 yStart= 0 yEnd= 9 +LED 92 : xStart= 608 xEnd= 617 yStart= 0 yEnd= 9 +LED 93 : xStart= 599 xEnd= 608 yStart= 0 yEnd= 9 +LED 94 : xStart= 590 xEnd= 599 yStart= 0 yEnd= 9 +LED 95 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 96 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 97 : xStart= 563 xEnd= 572 yStart= 0 yEnd= 9 +LED 98 : xStart= 554 xEnd= 563 yStart= 0 yEnd= 9 +LED 99 : xStart= 545 xEnd= 554 yStart= 0 yEnd= 9 +LED 100 : xStart= 536 xEnd= 545 yStart= 0 yEnd= 9 +LED 101 : xStart= 527 xEnd= 536 yStart= 0 yEnd= 9 +LED 102 : xStart= 518 xEnd= 527 yStart= 0 yEnd= 9 +LED 103 : xStart= 509 xEnd= 518 yStart= 0 yEnd= 9 +LED 104 : xStart= 500 xEnd= 509 yStart= 0 yEnd= 9 +LED 105 : xStart= 491 xEnd= 500 yStart= 0 yEnd= 9 +LED 106 : xStart= 482 xEnd= 491 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 482 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 157 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 148 xEnd= 157 yStart= 0 yEnd= 9 +LED 144 : xStart= 139 xEnd= 148 yStart= 0 yEnd= 9 +LED 145 : xStart= 130 xEnd= 139 yStart= 0 yEnd= 9 +LED 146 : xStart= 121 xEnd= 130 yStart= 0 yEnd= 9 +LED 147 : xStart= 112 xEnd= 121 yStart= 0 yEnd= 9 +LED 148 : xStart= 103 xEnd= 112 yStart= 0 yEnd= 9 +LED 149 : xStart= 94 xEnd= 103 yStart= 0 yEnd= 9 +LED 150 : xStart= 85 xEnd= 94 yStart= 0 yEnd= 9 +LED 151 : xStart= 76 xEnd= 85 yStart= 0 yEnd= 9 +LED 152 : xStart= 67 xEnd= 76 yStart= 0 yEnd= 9 +LED 153 : xStart= 58 xEnd= 67 yStart= 0 yEnd= 9 +LED 154 : xStart= 49 xEnd= 58 yStart= 0 yEnd= 9 +LED 155 : xStart= 40 xEnd= 49 yStart= 0 yEnd= 9 +LED 156 : xStart= 31 xEnd= 40 yStart= 0 yEnd= 9 +LED 157 : xStart= 22 xEnd= 31 yStart= 0 yEnd= 9 +LED 158 : xStart= 13 xEnd= 22 yStart= 0 yEnd= 9 +LED 159 : xStart= 4 xEnd= 13 yStart= 0 yEnd= 9 +LED 160 : xStart= 4 xEnd= 35 yStart= 0 yEnd= 9 +LED 161 : xStart= 4 xEnd= 35 yStart= 9 yEnd= 18 +LED 162 : xStart= 4 xEnd= 35 yStart= 18 yEnd= 27 +LED 163 : xStart= 4 xEnd= 35 yStart= 27 yEnd= 36 +LED 164 : xStart= 4 xEnd= 35 yStart= 36 yEnd= 45 +LED 165 : xStart= 4 xEnd= 35 yStart= 45 yEnd= 54 +LED 166 : xStart= 4 xEnd= 35 yStart= 54 yEnd= 62 +LED 167 : xStart= 4 xEnd= 35 yStart= 62 yEnd= 72 +LED 168 : xStart= 4 xEnd= 35 yStart= 72 yEnd= 81 +LED 169 : xStart= 4 xEnd= 35 yStart= 81 yEnd= 90 +LED 170 : xStart= 4 xEnd= 35 yStart= 90 yEnd= 99 +LED 171 : xStart= 4 xEnd= 35 yStart= 99 yEnd= 108 +LED 172 : xStart= 4 xEnd= 35 yStart= 108 yEnd= 117 +LED 173 : xStart= 4 xEnd= 35 yStart= 117 yEnd= 125 +LED 174 : xStart= 4 xEnd= 35 yStart= 125 yEnd= 135 +LED 175 : xStart= 4 xEnd= 35 yStart= 135 yEnd= 144 +LED 176 : xStart= 4 xEnd= 35 yStart= 144 yEnd= 153 +LED 177 : xStart= 4 xEnd= 35 yStart= 153 yEnd= 162 +LED 178 : xStart= 4 xEnd= 35 yStart= 162 yEnd= 171 +LED 179 : xStart= 4 xEnd= 35 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#28190b" + LED (bottom+1): "#ada9a4" + LED (bottom+right+1): "#373937" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#afaca8" + LED (bottom+right+1): "#373937" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#b5b2af" + LED (bottom+right+1): "#353735" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#b4b1ad" + LED (bottom+right+1): "#353735" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#b5b2ae" + LED (bottom+right+1): "#353735" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#b8b5b1" + LED (bottom+right+1): "#353734" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c0bdb9" + LED (bottom+right+1): "#373934" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#393b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c1beba" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c2bfbb" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c4c1bd" + LED (bottom+right+1): "#383b35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c7c4c1" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#c9c7c4" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#cbc9c6" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#cdcbc9" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#cfcecc" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#d2d0cf" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#d4d3d1" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#d6d5d4" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#d8d7d7" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#dadada" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#dcdcdc" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#dedede" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#dfdfe0" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#e3e3e4" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#dfe0e0" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#dededf" + LED (bottom+right+1): "#383a35" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#dbdbdb" + LED (bottom+right+1): "#393c36" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#d8d8d7" + LED (bottom+right+1): "#3a3c36" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#d3d2d1" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#cdcccb" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#cecdcc" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#9c958d" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#5e554c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab7b7" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab7b5" + LED 1: "#a9a7a5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aba8a6" + LED 1: "#a9a7a5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aba8a6" + LED 1: "#aaa7a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa8a6" + LED 1: "#adaaa8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aba8a6" + LED 1: "#afadab" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aba8a6" + LED 1: "#adaaa8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aba9a7" + LED 1: "#adaaa8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b0adab" + LED 1: "#b2afad" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b3b1" + LED 1: "#b7b4b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b3b2" + LED 1: "#b8b5b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab8b6" + LED 1: "#bcbab8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab7b6" + LED 1: "#bcbab8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bbb8b7" + LED 1: "#bbb8b7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b5" + LED 1: "#b7b5b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b5b4" + LED 1: "#b6b5b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b3" + LED 1: "#b5b4b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b4b3" + LED 1: "#b5b4b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b4b3" + LED 1: "#b5b4b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b3" + LED 1: "#b5b4b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b3" + LED 1: "#b5b4b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b3" + LED 1: "#b6b4b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b5b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b5b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b6b4b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b3" + LED 1: "#b5b4b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#afb0b1" + LED 1: "#b5b3b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b3b2b2" + LED 1: "#b3b2b2" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 3 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 3 border.horizontalSize= 0 +buildLedMap: contentWidth= 634 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 3 xEnd= 12 yStart= 171 yEnd= 180 +LED 1 : xStart= 12 xEnd= 21 yStart= 171 yEnd= 180 +LED 2 : xStart= 21 xEnd= 30 yStart= 171 yEnd= 180 +LED 3 : xStart= 30 xEnd= 39 yStart= 171 yEnd= 180 +LED 4 : xStart= 39 xEnd= 48 yStart= 171 yEnd= 180 +LED 5 : xStart= 48 xEnd= 57 yStart= 171 yEnd= 180 +LED 6 : xStart= 57 xEnd= 66 yStart= 171 yEnd= 180 +LED 7 : xStart= 66 xEnd= 75 yStart= 171 yEnd= 180 +LED 8 : xStart= 75 xEnd= 84 yStart= 171 yEnd= 180 +LED 9 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 10 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 11 : xStart= 102 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 537 yStart= 171 yEnd= 180 +LED 59 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 60 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 61 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 62 : xStart= 564 xEnd= 573 yStart= 171 yEnd= 180 +LED 63 : xStart= 573 xEnd= 582 yStart= 171 yEnd= 180 +LED 64 : xStart= 582 xEnd= 591 yStart= 171 yEnd= 180 +LED 65 : xStart= 591 xEnd= 600 yStart= 171 yEnd= 180 +LED 66 : xStart= 600 xEnd= 609 yStart= 171 yEnd= 180 +LED 67 : xStart= 609 xEnd= 618 yStart= 171 yEnd= 180 +LED 68 : xStart= 618 xEnd= 627 yStart= 171 yEnd= 180 +LED 69 : xStart= 627 xEnd= 637 yStart= 171 yEnd= 180 +LED 70 : xStart= 606 xEnd= 637 yStart= 171 yEnd= 180 +LED 71 : xStart= 606 xEnd= 637 yStart= 162 yEnd= 171 +LED 72 : xStart= 606 xEnd= 637 yStart= 153 yEnd= 162 +LED 73 : xStart= 606 xEnd= 637 yStart= 144 yEnd= 153 +LED 74 : xStart= 606 xEnd= 637 yStart= 135 yEnd= 144 +LED 75 : xStart= 606 xEnd= 637 yStart= 125 yEnd= 135 +LED 76 : xStart= 606 xEnd= 637 yStart= 117 yEnd= 125 +LED 77 : xStart= 606 xEnd= 637 yStart= 108 yEnd= 117 +LED 78 : xStart= 606 xEnd= 637 yStart= 99 yEnd= 108 +LED 79 : xStart= 606 xEnd= 637 yStart= 90 yEnd= 99 +LED 80 : xStart= 606 xEnd= 637 yStart= 80 yEnd= 90 +LED 81 : xStart= 606 xEnd= 637 yStart= 72 yEnd= 80 +LED 82 : xStart= 606 xEnd= 637 yStart= 62 yEnd= 72 +LED 83 : xStart= 606 xEnd= 637 yStart= 54 yEnd= 62 +LED 84 : xStart= 606 xEnd= 637 yStart= 45 yEnd= 54 +LED 85 : xStart= 606 xEnd= 637 yStart= 35 yEnd= 45 +LED 86 : xStart= 606 xEnd= 637 yStart= 27 yEnd= 35 +LED 87 : xStart= 606 xEnd= 637 yStart= 17 yEnd= 27 +LED 88 : xStart= 606 xEnd= 637 yStart= 9 yEnd= 17 +LED 89 : xStart= 606 xEnd= 637 yStart= 0 yEnd= 9 +LED 90 : xStart= 627 xEnd= 637 yStart= 0 yEnd= 9 +LED 91 : xStart= 618 xEnd= 627 yStart= 0 yEnd= 9 +LED 92 : xStart= 609 xEnd= 618 yStart= 0 yEnd= 9 +LED 93 : xStart= 600 xEnd= 609 yStart= 0 yEnd= 9 +LED 94 : xStart= 591 xEnd= 600 yStart= 0 yEnd= 9 +LED 95 : xStart= 582 xEnd= 591 yStart= 0 yEnd= 9 +LED 96 : xStart= 573 xEnd= 582 yStart= 0 yEnd= 9 +LED 97 : xStart= 564 xEnd= 573 yStart= 0 yEnd= 9 +LED 98 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 99 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 100 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 537 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 102 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 150 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 151 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 152 : xStart= 66 xEnd= 75 yStart= 0 yEnd= 9 +LED 153 : xStart= 57 xEnd= 66 yStart= 0 yEnd= 9 +LED 154 : xStart= 48 xEnd= 57 yStart= 0 yEnd= 9 +LED 155 : xStart= 39 xEnd= 48 yStart= 0 yEnd= 9 +LED 156 : xStart= 30 xEnd= 39 yStart= 0 yEnd= 9 +LED 157 : xStart= 21 xEnd= 30 yStart= 0 yEnd= 9 +LED 158 : xStart= 12 xEnd= 21 yStart= 0 yEnd= 9 +LED 159 : xStart= 3 xEnd= 12 yStart= 0 yEnd= 9 +LED 160 : xStart= 3 xEnd= 34 yStart= 0 yEnd= 9 +LED 161 : xStart= 3 xEnd= 34 yStart= 9 yEnd= 18 +LED 162 : xStart= 3 xEnd= 34 yStart= 18 yEnd= 27 +LED 163 : xStart= 3 xEnd= 34 yStart= 27 yEnd= 36 +LED 164 : xStart= 3 xEnd= 34 yStart= 36 yEnd= 45 +LED 165 : xStart= 3 xEnd= 34 yStart= 45 yEnd= 54 +LED 166 : xStart= 3 xEnd= 34 yStart= 54 yEnd= 62 +LED 167 : xStart= 3 xEnd= 34 yStart= 62 yEnd= 72 +LED 168 : xStart= 3 xEnd= 34 yStart= 72 yEnd= 81 +LED 169 : xStart= 3 xEnd= 34 yStart= 81 yEnd= 90 +LED 170 : xStart= 3 xEnd= 34 yStart= 90 yEnd= 99 +LED 171 : xStart= 3 xEnd= 34 yStart= 99 yEnd= 108 +LED 172 : xStart= 3 xEnd= 34 yStart= 108 yEnd= 117 +LED 173 : xStart= 3 xEnd= 34 yStart= 117 yEnd= 125 +LED 174 : xStart= 3 xEnd= 34 yStart= 125 yEnd= 135 +LED 175 : xStart= 3 xEnd= 34 yStart= 135 yEnd= 144 +LED 176 : xStart= 3 xEnd= 34 yStart= 144 yEnd= 153 +LED 177 : xStart= 3 xEnd= 34 yStart= 153 yEnd= 162 +LED 178 : xStart= 3 xEnd= 34 yStart= 162 yEnd= 171 +LED 179 : xStart= 3 xEnd= 34 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#afafb1" + LED 1: "#b3b2b2" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#544a40" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#aaa59e" + LED (bottom+right+1): "#373936" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#968e84" + LED (bottom+right+1): "#383936" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#28190c" + LED 1: "#bab8b8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#8e8883" + LED 1: "#c6c5c6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#6d645b" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#554b42" + LED 1: "#d0d0d1" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2afae" + LED 1: "#d2d3d4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b6b5" + LED 1: "#d5d5d7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 5 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 5 border.horizontalSize= 0 +buildLedMap: contentWidth= 630 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 5 xEnd= 14 yStart= 171 yEnd= 180 +LED 1 : xStart= 14 xEnd= 23 yStart= 171 yEnd= 180 +LED 2 : xStart= 23 xEnd= 32 yStart= 171 yEnd= 180 +LED 3 : xStart= 32 xEnd= 41 yStart= 171 yEnd= 180 +LED 4 : xStart= 41 xEnd= 50 yStart= 171 yEnd= 180 +LED 5 : xStart= 50 xEnd= 59 yStart= 171 yEnd= 180 +LED 6 : xStart= 59 xEnd= 68 yStart= 171 yEnd= 180 +LED 7 : xStart= 68 xEnd= 77 yStart= 171 yEnd= 180 +LED 8 : xStart= 77 xEnd= 85 yStart= 171 yEnd= 180 +LED 9 : xStart= 85 xEnd= 95 yStart= 171 yEnd= 180 +LED 10 : xStart= 95 xEnd= 104 yStart= 171 yEnd= 180 +LED 11 : xStart= 104 xEnd= 113 yStart= 171 yEnd= 180 +LED 12 : xStart= 113 xEnd= 122 yStart= 171 yEnd= 180 +LED 13 : xStart= 122 xEnd= 131 yStart= 171 yEnd= 180 +LED 14 : xStart= 131 xEnd= 140 yStart= 171 yEnd= 180 +LED 15 : xStart= 140 xEnd= 149 yStart= 171 yEnd= 180 +LED 16 : xStart= 149 xEnd= 158 yStart= 171 yEnd= 180 +LED 17 : xStart= 158 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 176 yStart= 171 yEnd= 180 +LED 19 : xStart= 176 xEnd= 185 yStart= 171 yEnd= 180 +LED 20 : xStart= 185 xEnd= 194 yStart= 171 yEnd= 180 +LED 21 : xStart= 194 xEnd= 203 yStart= 171 yEnd= 180 +LED 22 : xStart= 203 xEnd= 212 yStart= 171 yEnd= 180 +LED 23 : xStart= 212 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 427 yStart= 171 yEnd= 180 +LED 47 : xStart= 427 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 482 yStart= 171 yEnd= 180 +LED 53 : xStart= 482 xEnd= 491 yStart= 171 yEnd= 180 +LED 54 : xStart= 491 xEnd= 500 yStart= 171 yEnd= 180 +LED 55 : xStart= 500 xEnd= 509 yStart= 171 yEnd= 180 +LED 56 : xStart= 509 xEnd= 518 yStart= 171 yEnd= 180 +LED 57 : xStart= 518 xEnd= 527 yStart= 171 yEnd= 180 +LED 58 : xStart= 527 xEnd= 536 yStart= 171 yEnd= 180 +LED 59 : xStart= 536 xEnd= 545 yStart= 171 yEnd= 180 +LED 60 : xStart= 545 xEnd= 554 yStart= 171 yEnd= 180 +LED 61 : xStart= 554 xEnd= 563 yStart= 171 yEnd= 180 +LED 62 : xStart= 563 xEnd= 572 yStart= 171 yEnd= 180 +LED 63 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 64 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 65 : xStart= 590 xEnd= 599 yStart= 171 yEnd= 180 +LED 66 : xStart= 599 xEnd= 608 yStart= 171 yEnd= 180 +LED 67 : xStart= 608 xEnd= 617 yStart= 171 yEnd= 180 +LED 68 : xStart= 617 xEnd= 626 yStart= 171 yEnd= 180 +LED 69 : xStart= 626 xEnd= 635 yStart= 171 yEnd= 180 +LED 70 : xStart= 604 xEnd= 635 yStart= 171 yEnd= 180 +LED 71 : xStart= 604 xEnd= 635 yStart= 162 yEnd= 171 +LED 72 : xStart= 604 xEnd= 635 yStart= 153 yEnd= 162 +LED 73 : xStart= 604 xEnd= 635 yStart= 144 yEnd= 153 +LED 74 : xStart= 604 xEnd= 635 yStart= 135 yEnd= 144 +LED 75 : xStart= 604 xEnd= 635 yStart= 125 yEnd= 135 +LED 76 : xStart= 604 xEnd= 635 yStart= 117 yEnd= 125 +LED 77 : xStart= 604 xEnd= 635 yStart= 108 yEnd= 117 +LED 78 : xStart= 604 xEnd= 635 yStart= 99 yEnd= 108 +LED 79 : xStart= 604 xEnd= 635 yStart= 90 yEnd= 99 +LED 80 : xStart= 604 xEnd= 635 yStart= 80 yEnd= 90 +LED 81 : xStart= 604 xEnd= 635 yStart= 72 yEnd= 80 +LED 82 : xStart= 604 xEnd= 635 yStart= 62 yEnd= 72 +LED 83 : xStart= 604 xEnd= 635 yStart= 54 yEnd= 62 +LED 84 : xStart= 604 xEnd= 635 yStart= 45 yEnd= 54 +LED 85 : xStart= 604 xEnd= 635 yStart= 35 yEnd= 45 +LED 86 : xStart= 604 xEnd= 635 yStart= 27 yEnd= 35 +LED 87 : xStart= 604 xEnd= 635 yStart= 17 yEnd= 27 +LED 88 : xStart= 604 xEnd= 635 yStart= 9 yEnd= 17 +LED 89 : xStart= 604 xEnd= 635 yStart= 0 yEnd= 9 +LED 90 : xStart= 626 xEnd= 635 yStart= 0 yEnd= 9 +LED 91 : xStart= 617 xEnd= 626 yStart= 0 yEnd= 9 +LED 92 : xStart= 608 xEnd= 617 yStart= 0 yEnd= 9 +LED 93 : xStart= 599 xEnd= 608 yStart= 0 yEnd= 9 +LED 94 : xStart= 590 xEnd= 599 yStart= 0 yEnd= 9 +LED 95 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 96 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 97 : xStart= 563 xEnd= 572 yStart= 0 yEnd= 9 +LED 98 : xStart= 554 xEnd= 563 yStart= 0 yEnd= 9 +LED 99 : xStart= 545 xEnd= 554 yStart= 0 yEnd= 9 +LED 100 : xStart= 536 xEnd= 545 yStart= 0 yEnd= 9 +LED 101 : xStart= 527 xEnd= 536 yStart= 0 yEnd= 9 +LED 102 : xStart= 518 xEnd= 527 yStart= 0 yEnd= 9 +LED 103 : xStart= 509 xEnd= 518 yStart= 0 yEnd= 9 +LED 104 : xStart= 500 xEnd= 509 yStart= 0 yEnd= 9 +LED 105 : xStart= 491 xEnd= 500 yStart= 0 yEnd= 9 +LED 106 : xStart= 482 xEnd= 491 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 482 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 212 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 203 xEnd= 212 yStart= 0 yEnd= 9 +LED 138 : xStart= 194 xEnd= 203 yStart= 0 yEnd= 9 +LED 139 : xStart= 185 xEnd= 194 yStart= 0 yEnd= 9 +LED 140 : xStart= 176 xEnd= 185 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 176 yStart= 0 yEnd= 9 +LED 142 : xStart= 158 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 148 xEnd= 158 yStart= 0 yEnd= 9 +LED 144 : xStart= 140 xEnd= 148 yStart= 0 yEnd= 9 +LED 145 : xStart= 130 xEnd= 140 yStart= 0 yEnd= 9 +LED 146 : xStart= 122 xEnd= 130 yStart= 0 yEnd= 9 +LED 147 : xStart= 112 xEnd= 122 yStart= 0 yEnd= 9 +LED 148 : xStart= 104 xEnd= 112 yStart= 0 yEnd= 9 +LED 149 : xStart= 95 xEnd= 104 yStart= 0 yEnd= 9 +LED 150 : xStart= 85 xEnd= 95 yStart= 0 yEnd= 9 +LED 151 : xStart= 77 xEnd= 85 yStart= 0 yEnd= 9 +LED 152 : xStart= 67 xEnd= 77 yStart= 0 yEnd= 9 +LED 153 : xStart= 59 xEnd= 67 yStart= 0 yEnd= 9 +LED 154 : xStart= 49 xEnd= 59 yStart= 0 yEnd= 9 +LED 155 : xStart= 41 xEnd= 49 yStart= 0 yEnd= 9 +LED 156 : xStart= 31 xEnd= 41 yStart= 0 yEnd= 9 +LED 157 : xStart= 23 xEnd= 31 yStart= 0 yEnd= 9 +LED 158 : xStart= 13 xEnd= 23 yStart= 0 yEnd= 9 +LED 159 : xStart= 5 xEnd= 13 yStart= 0 yEnd= 9 +LED 160 : xStart= 5 xEnd= 36 yStart= 0 yEnd= 9 +LED 161 : xStart= 5 xEnd= 36 yStart= 9 yEnd= 18 +LED 162 : xStart= 5 xEnd= 36 yStart= 18 yEnd= 27 +LED 163 : xStart= 5 xEnd= 36 yStart= 27 yEnd= 36 +LED 164 : xStart= 5 xEnd= 36 yStart= 36 yEnd= 45 +LED 165 : xStart= 5 xEnd= 36 yStart= 45 yEnd= 54 +LED 166 : xStart= 5 xEnd= 36 yStart= 54 yEnd= 62 +LED 167 : xStart= 5 xEnd= 36 yStart= 62 yEnd= 72 +LED 168 : xStart= 5 xEnd= 36 yStart= 72 yEnd= 81 +LED 169 : xStart= 5 xEnd= 36 yStart= 81 yEnd= 90 +LED 170 : xStart= 5 xEnd= 36 yStart= 90 yEnd= 99 +LED 171 : xStart= 5 xEnd= 36 yStart= 99 yEnd= 108 +LED 172 : xStart= 5 xEnd= 36 yStart= 108 yEnd= 117 +LED 173 : xStart= 5 xEnd= 36 yStart= 117 yEnd= 125 +LED 174 : xStart= 5 xEnd= 36 yStart= 125 yEnd= 135 +LED 175 : xStart= 5 xEnd= 36 yStart= 135 yEnd= 144 +LED 176 : xStart= 5 xEnd= 36 yStart= 144 yEnd= 153 +LED 177 : xStart= 5 xEnd= 36 yStart= 153 yEnd= 162 +LED 178 : xStart= 5 xEnd= 36 yStart= 162 yEnd= 171 +LED 179 : xStart= 5 xEnd= 36 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d8d8da" + LED 1: "#d7d8da" + LED (bottom+1): "#8c8378" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 3 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 3 border.horizontalSize= 0 +buildLedMap: contentWidth= 634 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 3 xEnd= 12 yStart= 171 yEnd= 180 +LED 1 : xStart= 12 xEnd= 21 yStart= 171 yEnd= 180 +LED 2 : xStart= 21 xEnd= 30 yStart= 171 yEnd= 180 +LED 3 : xStart= 30 xEnd= 39 yStart= 171 yEnd= 180 +LED 4 : xStart= 39 xEnd= 48 yStart= 171 yEnd= 180 +LED 5 : xStart= 48 xEnd= 57 yStart= 171 yEnd= 180 +LED 6 : xStart= 57 xEnd= 66 yStart= 171 yEnd= 180 +LED 7 : xStart= 66 xEnd= 75 yStart= 171 yEnd= 180 +LED 8 : xStart= 75 xEnd= 84 yStart= 171 yEnd= 180 +LED 9 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 10 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 11 : xStart= 102 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 537 yStart= 171 yEnd= 180 +LED 59 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 60 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 61 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 62 : xStart= 564 xEnd= 573 yStart= 171 yEnd= 180 +LED 63 : xStart= 573 xEnd= 582 yStart= 171 yEnd= 180 +LED 64 : xStart= 582 xEnd= 591 yStart= 171 yEnd= 180 +LED 65 : xStart= 591 xEnd= 600 yStart= 171 yEnd= 180 +LED 66 : xStart= 600 xEnd= 609 yStart= 171 yEnd= 180 +LED 67 : xStart= 609 xEnd= 618 yStart= 171 yEnd= 180 +LED 68 : xStart= 618 xEnd= 627 yStart= 171 yEnd= 180 +LED 69 : xStart= 627 xEnd= 637 yStart= 171 yEnd= 180 +LED 70 : xStart= 606 xEnd= 637 yStart= 171 yEnd= 180 +LED 71 : xStart= 606 xEnd= 637 yStart= 162 yEnd= 171 +LED 72 : xStart= 606 xEnd= 637 yStart= 153 yEnd= 162 +LED 73 : xStart= 606 xEnd= 637 yStart= 144 yEnd= 153 +LED 74 : xStart= 606 xEnd= 637 yStart= 135 yEnd= 144 +LED 75 : xStart= 606 xEnd= 637 yStart= 125 yEnd= 135 +LED 76 : xStart= 606 xEnd= 637 yStart= 117 yEnd= 125 +LED 77 : xStart= 606 xEnd= 637 yStart= 108 yEnd= 117 +LED 78 : xStart= 606 xEnd= 637 yStart= 99 yEnd= 108 +LED 79 : xStart= 606 xEnd= 637 yStart= 90 yEnd= 99 +LED 80 : xStart= 606 xEnd= 637 yStart= 80 yEnd= 90 +LED 81 : xStart= 606 xEnd= 637 yStart= 72 yEnd= 80 +LED 82 : xStart= 606 xEnd= 637 yStart= 62 yEnd= 72 +LED 83 : xStart= 606 xEnd= 637 yStart= 54 yEnd= 62 +LED 84 : xStart= 606 xEnd= 637 yStart= 45 yEnd= 54 +LED 85 : xStart= 606 xEnd= 637 yStart= 35 yEnd= 45 +LED 86 : xStart= 606 xEnd= 637 yStart= 27 yEnd= 35 +LED 87 : xStart= 606 xEnd= 637 yStart= 17 yEnd= 27 +LED 88 : xStart= 606 xEnd= 637 yStart= 9 yEnd= 17 +LED 89 : xStart= 606 xEnd= 637 yStart= 0 yEnd= 9 +LED 90 : xStart= 627 xEnd= 637 yStart= 0 yEnd= 9 +LED 91 : xStart= 618 xEnd= 627 yStart= 0 yEnd= 9 +LED 92 : xStart= 609 xEnd= 618 yStart= 0 yEnd= 9 +LED 93 : xStart= 600 xEnd= 609 yStart= 0 yEnd= 9 +LED 94 : xStart= 591 xEnd= 600 yStart= 0 yEnd= 9 +LED 95 : xStart= 582 xEnd= 591 yStart= 0 yEnd= 9 +LED 96 : xStart= 573 xEnd= 582 yStart= 0 yEnd= 9 +LED 97 : xStart= 564 xEnd= 573 yStart= 0 yEnd= 9 +LED 98 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 99 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 100 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 537 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 102 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 150 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 151 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 152 : xStart= 66 xEnd= 75 yStart= 0 yEnd= 9 +LED 153 : xStart= 57 xEnd= 66 yStart= 0 yEnd= 9 +LED 154 : xStart= 48 xEnd= 57 yStart= 0 yEnd= 9 +LED 155 : xStart= 39 xEnd= 48 yStart= 0 yEnd= 9 +LED 156 : xStart= 30 xEnd= 39 yStart= 0 yEnd= 9 +LED 157 : xStart= 21 xEnd= 30 yStart= 0 yEnd= 9 +LED 158 : xStart= 12 xEnd= 21 yStart= 0 yEnd= 9 +LED 159 : xStart= 3 xEnd= 12 yStart= 0 yEnd= 9 +LED 160 : xStart= 3 xEnd= 34 yStart= 0 yEnd= 9 +LED 161 : xStart= 3 xEnd= 34 yStart= 9 yEnd= 18 +LED 162 : xStart= 3 xEnd= 34 yStart= 18 yEnd= 27 +LED 163 : xStart= 3 xEnd= 34 yStart= 27 yEnd= 36 +LED 164 : xStart= 3 xEnd= 34 yStart= 36 yEnd= 45 +LED 165 : xStart= 3 xEnd= 34 yStart= 45 yEnd= 54 +LED 166 : xStart= 3 xEnd= 34 yStart= 54 yEnd= 62 +LED 167 : xStart= 3 xEnd= 34 yStart= 62 yEnd= 72 +LED 168 : xStart= 3 xEnd= 34 yStart= 72 yEnd= 81 +LED 169 : xStart= 3 xEnd= 34 yStart= 81 yEnd= 90 +LED 170 : xStart= 3 xEnd= 34 yStart= 90 yEnd= 99 +LED 171 : xStart= 3 xEnd= 34 yStart= 99 yEnd= 108 +LED 172 : xStart= 3 xEnd= 34 yStart= 108 yEnd= 117 +LED 173 : xStart= 3 xEnd= 34 yStart= 117 yEnd= 125 +LED 174 : xStart= 3 xEnd= 34 yStart= 125 yEnd= 135 +LED 175 : xStart= 3 xEnd= 34 yStart= 135 yEnd= 144 +LED 176 : xStart= 3 xEnd= 34 yStart= 144 yEnd= 153 +LED 177 : xStart= 3 xEnd= 34 yStart= 153 yEnd= 162 +LED 178 : xStart= 3 xEnd= 34 yStart= 162 yEnd= 171 +LED 179 : xStart= 3 xEnd= 34 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#cececf" + LED 1: "#dadadd" + LED (bottom+1): "#a09a92" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#cccbcb" + LED 1: "#dcdedf" + LED (bottom+1): "#aca7a1" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d2d2d3" + LED 1: "#dee0e1" + LED (bottom+1): "#cdcbc9" + LED (bottom+right+1): "#393b39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bdbcbb" + LED 1: "#dee0e2" + LED (bottom+1): "#dddddd" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#cfcfd0" + LED 1: "#dee0e1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#dddddd" + LED (bottom+right+1): "#383a38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dadbdc" + LED 1: "#dddfe1" + LED (bottom+1): "#dcdcdc" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d2d2d3" + LED 1: "#dee0e1" + LED (bottom+1): "#dfdfe0" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d4d5d6" + LED 1: "#dee0e1" + LED (bottom+1): "#e0e0e1" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dcdddf" + LED 1: "#dddfe1" + LED (bottom+1): "#dfe0e0" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dcdddf" + LED 1: "#dddfe1" + LED (bottom+1): "#e0e0e1" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dadbdc" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e1e2" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dcdddf" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e1e2" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dcdddf" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e1e2" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dcdddf" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e1e2" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dcdddf" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e1e2" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dcdddf" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e1e2" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e1e2" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dcdddf" + LED 1: "#dbdcde" + LED (bottom+1): "#dfdfe0" + LED (bottom+right+1): "#383939" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dadbdd" + LED 1: "#d9dadc" + LED (bottom+1): "#ddddde" + LED (bottom+right+1): "#383939" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d4d5d7" + LED 1: "#d3d4d7" + LED (bottom+1): "#b7b3af" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d9dadd" + LED 1: "#d8d9dd" + LED (bottom+1): "#958d83" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#827d79" + LED 1: "#86807b" + LED (bottom+1): "#928b80" + LED (bottom+right+1): "#393a3b" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#3e3126" + LED 1: "#635a53" + LED (bottom+1): "#534532" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#34261a" + LED (bottom+1): "#d0cecc" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#3b2d20" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#342517" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#342517" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#322315" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2b1d10" + LED 1: "#2e1f11" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 8 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 8 border.horizontalSize= 0 +buildLedMap: contentWidth= 624 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 8 xEnd= 16 yStart= 171 yEnd= 180 +LED 1 : xStart= 16 xEnd= 25 yStart= 171 yEnd= 180 +LED 2 : xStart= 25 xEnd= 34 yStart= 171 yEnd= 180 +LED 3 : xStart= 34 xEnd= 43 yStart= 171 yEnd= 180 +LED 4 : xStart= 43 xEnd= 52 yStart= 171 yEnd= 180 +LED 5 : xStart= 52 xEnd= 61 yStart= 171 yEnd= 180 +LED 6 : xStart= 61 xEnd= 70 yStart= 171 yEnd= 180 +LED 7 : xStart= 70 xEnd= 79 yStart= 171 yEnd= 180 +LED 8 : xStart= 79 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 114 yStart= 171 yEnd= 180 +LED 12 : xStart= 114 xEnd= 123 yStart= 171 yEnd= 180 +LED 13 : xStart= 123 xEnd= 132 yStart= 171 yEnd= 180 +LED 14 : xStart= 132 xEnd= 141 yStart= 171 yEnd= 180 +LED 15 : xStart= 141 xEnd= 150 yStart= 171 yEnd= 180 +LED 16 : xStart= 150 xEnd= 159 yStart= 171 yEnd= 180 +LED 17 : xStart= 159 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 480 yStart= 171 yEnd= 180 +LED 53 : xStart= 480 xEnd= 489 yStart= 171 yEnd= 180 +LED 54 : xStart= 489 xEnd= 498 yStart= 171 yEnd= 180 +LED 55 : xStart= 498 xEnd= 507 yStart= 171 yEnd= 180 +LED 56 : xStart= 507 xEnd= 516 yStart= 171 yEnd= 180 +LED 57 : xStart= 516 xEnd= 525 yStart= 171 yEnd= 180 +LED 58 : xStart= 525 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 560 yStart= 171 yEnd= 180 +LED 62 : xStart= 560 xEnd= 569 yStart= 171 yEnd= 180 +LED 63 : xStart= 569 xEnd= 578 yStart= 171 yEnd= 180 +LED 64 : xStart= 578 xEnd= 587 yStart= 171 yEnd= 180 +LED 65 : xStart= 587 xEnd= 596 yStart= 171 yEnd= 180 +LED 66 : xStart= 596 xEnd= 605 yStart= 171 yEnd= 180 +LED 67 : xStart= 605 xEnd= 614 yStart= 171 yEnd= 180 +LED 68 : xStart= 614 xEnd= 623 yStart= 171 yEnd= 180 +LED 69 : xStart= 623 xEnd= 632 yStart= 171 yEnd= 180 +LED 70 : xStart= 601 xEnd= 632 yStart= 171 yEnd= 180 +LED 71 : xStart= 601 xEnd= 632 yStart= 162 yEnd= 171 +LED 72 : xStart= 601 xEnd= 632 yStart= 153 yEnd= 162 +LED 73 : xStart= 601 xEnd= 632 yStart= 144 yEnd= 153 +LED 74 : xStart= 601 xEnd= 632 yStart= 135 yEnd= 144 +LED 75 : xStart= 601 xEnd= 632 yStart= 125 yEnd= 135 +LED 76 : xStart= 601 xEnd= 632 yStart= 117 yEnd= 125 +LED 77 : xStart= 601 xEnd= 632 yStart= 108 yEnd= 117 +LED 78 : xStart= 601 xEnd= 632 yStart= 99 yEnd= 108 +LED 79 : xStart= 601 xEnd= 632 yStart= 90 yEnd= 99 +LED 80 : xStart= 601 xEnd= 632 yStart= 80 yEnd= 90 +LED 81 : xStart= 601 xEnd= 632 yStart= 72 yEnd= 80 +LED 82 : xStart= 601 xEnd= 632 yStart= 62 yEnd= 72 +LED 83 : xStart= 601 xEnd= 632 yStart= 54 yEnd= 62 +LED 84 : xStart= 601 xEnd= 632 yStart= 45 yEnd= 54 +LED 85 : xStart= 601 xEnd= 632 yStart= 35 yEnd= 45 +LED 86 : xStart= 601 xEnd= 632 yStart= 27 yEnd= 35 +LED 87 : xStart= 601 xEnd= 632 yStart= 17 yEnd= 27 +LED 88 : xStart= 601 xEnd= 632 yStart= 9 yEnd= 17 +LED 89 : xStart= 601 xEnd= 632 yStart= 0 yEnd= 9 +LED 90 : xStart= 623 xEnd= 632 yStart= 0 yEnd= 9 +LED 91 : xStart= 614 xEnd= 623 yStart= 0 yEnd= 9 +LED 92 : xStart= 605 xEnd= 614 yStart= 0 yEnd= 9 +LED 93 : xStart= 596 xEnd= 605 yStart= 0 yEnd= 9 +LED 94 : xStart= 587 xEnd= 596 yStart= 0 yEnd= 9 +LED 95 : xStart= 578 xEnd= 587 yStart= 0 yEnd= 9 +LED 96 : xStart= 569 xEnd= 578 yStart= 0 yEnd= 9 +LED 97 : xStart= 560 xEnd= 569 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 560 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 525 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 516 xEnd= 525 yStart= 0 yEnd= 9 +LED 103 : xStart= 507 xEnd= 516 yStart= 0 yEnd= 9 +LED 104 : xStart= 498 xEnd= 507 yStart= 0 yEnd= 9 +LED 105 : xStart= 489 xEnd= 498 yStart= 0 yEnd= 9 +LED 106 : xStart= 480 xEnd= 489 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 480 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 159 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 150 xEnd= 159 yStart= 0 yEnd= 9 +LED 144 : xStart= 141 xEnd= 150 yStart= 0 yEnd= 9 +LED 145 : xStart= 132 xEnd= 141 yStart= 0 yEnd= 9 +LED 146 : xStart= 123 xEnd= 132 yStart= 0 yEnd= 9 +LED 147 : xStart= 114 xEnd= 123 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 114 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 79 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 70 xEnd= 79 yStart= 0 yEnd= 9 +LED 153 : xStart= 61 xEnd= 70 yStart= 0 yEnd= 9 +LED 154 : xStart= 52 xEnd= 61 yStart= 0 yEnd= 9 +LED 155 : xStart= 43 xEnd= 52 yStart= 0 yEnd= 9 +LED 156 : xStart= 34 xEnd= 43 yStart= 0 yEnd= 9 +LED 157 : xStart= 25 xEnd= 34 yStart= 0 yEnd= 9 +LED 158 : xStart= 16 xEnd= 25 yStart= 0 yEnd= 9 +LED 159 : xStart= 8 xEnd= 16 yStart= 0 yEnd= 9 +LED 160 : xStart= 8 xEnd= 39 yStart= 0 yEnd= 9 +LED 161 : xStart= 8 xEnd= 39 yStart= 9 yEnd= 18 +LED 162 : xStart= 8 xEnd= 39 yStart= 18 yEnd= 27 +LED 163 : xStart= 8 xEnd= 39 yStart= 27 yEnd= 36 +LED 164 : xStart= 8 xEnd= 39 yStart= 36 yEnd= 45 +LED 165 : xStart= 8 xEnd= 39 yStart= 45 yEnd= 54 +LED 166 : xStart= 8 xEnd= 39 yStart= 54 yEnd= 62 +LED 167 : xStart= 8 xEnd= 39 yStart= 62 yEnd= 72 +LED 168 : xStart= 8 xEnd= 39 yStart= 72 yEnd= 81 +LED 169 : xStart= 8 xEnd= 39 yStart= 81 yEnd= 90 +LED 170 : xStart= 8 xEnd= 39 yStart= 90 yEnd= 99 +LED 171 : xStart= 8 xEnd= 39 yStart= 99 yEnd= 108 +LED 172 : xStart= 8 xEnd= 39 yStart= 108 yEnd= 117 +LED 173 : xStart= 8 xEnd= 39 yStart= 117 yEnd= 125 +LED 174 : xStart= 8 xEnd= 39 yStart= 125 yEnd= 135 +LED 175 : xStart= 8 xEnd= 39 yStart= 135 yEnd= 144 +LED 176 : xStart= 8 xEnd= 39 yStart= 144 yEnd= 153 +LED 177 : xStart= 8 xEnd= 39 yStart= 153 yEnd= 162 +LED 178 : xStart= 8 xEnd= 39 yStart= 162 yEnd= 171 +LED 179 : xStart= 8 xEnd= 39 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#281a0d" + LED 1: "#60564e" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#28190c" + LED 1: "#817b77" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#9f9b99" + LED 1: "#b1b1b2" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a9ab" + LED 1: "#b5b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b3b3" + LED 1: "#b8b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a8a6a5" + LED 1: "#9c9a98" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#949291" + LED 1: "#959392" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#8f8d8c" + LED 1: "#908e8d" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#8f8e8d" + LED 1: "#878585" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b3b1af" + LED 1: "#6a6969" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b2b0" + LED 1: "#a7a4a3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bbb8b6" + LED 1: "#bcb9b8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab7b6" + LED 1: "#bcbab8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab7b5" + LED 1: "#bcbab8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2afad" + LED 1: "#b4b1af" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a4a09d" + LED 1: "#a5a19e" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#9f9b98" + LED 1: "#9f9b97" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a09c99" + LED 1: "#a09c98" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a4a09d" + LED 1: "#a4a09d" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a8a5a2" + LED 1: "#a9a5a3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b0acab" + LED 1: "#b1aeac" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b4b1b0" + LED 1: "#b6b3b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b5b3" + LED 1: "#bab7b5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bab8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b6b4" + LED 1: "#bbb8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b6b4" + LED 1: "#bbb8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b6b4" + LED 1: "#bbb8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bbb8b7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bbb8b7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bbb8b7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bbb8b7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bbb8b7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bbb8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bab8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bab8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bab8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bab8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bab8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#bab8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#4d4d4e" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#343436" + LED 1: "#343436" + LED (bottom+1): "#22201f" + LED (bottom+right+1): "#303131" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 1 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 1 +buildLedMap: contentWidth= 640 contentHeight= 178 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 179 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 179 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 179 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 179 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 179 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 179 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 179 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 179 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 179 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 179 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 179 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 179 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 179 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 179 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 179 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 179 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 179 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 179 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 179 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 179 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 179 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 179 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 179 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 179 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 179 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 179 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 179 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 179 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 179 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 179 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 179 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 179 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 179 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 179 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 179 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 179 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 179 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 179 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 179 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 179 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 179 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 179 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 179 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 179 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 179 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 179 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 179 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 179 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 179 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 179 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 179 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 179 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 179 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 179 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 179 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 179 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 179 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 179 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 179 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 179 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 179 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 179 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 179 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 179 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 179 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 179 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 179 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 179 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 179 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 179 +LED 70 : xStart= 608 xEnd= 640 yStart= 170 yEnd= 179 +LED 71 : xStart= 608 xEnd= 640 yStart= 161 yEnd= 170 +LED 72 : xStart= 608 xEnd= 640 yStart= 152 yEnd= 161 +LED 73 : xStart= 608 xEnd= 640 yStart= 143 yEnd= 152 +LED 74 : xStart= 608 xEnd= 640 yStart= 134 yEnd= 143 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 134 +LED 76 : xStart= 608 xEnd= 640 yStart= 116 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 107 yEnd= 116 +LED 78 : xStart= 608 xEnd= 640 yStart= 98 yEnd= 107 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 98 +LED 80 : xStart= 608 xEnd= 640 yStart= 81 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 81 +LED 82 : xStart= 608 xEnd= 640 yStart= 63 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 63 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 36 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 36 +LED 87 : xStart= 608 xEnd= 640 yStart= 18 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 18 +LED 89 : xStart= 608 xEnd= 640 yStart= 1 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 1 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 1 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 1 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 1 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 1 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 1 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 1 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 1 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 1 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 1 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 1 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 1 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 1 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 1 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 1 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 1 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 1 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 1 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 1 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 1 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 1 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 1 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 1 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 1 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 1 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 1 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 1 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 1 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 1 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 1 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 1 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 1 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 1 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 1 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 1 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 1 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 1 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 1 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 1 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 1 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 1 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 1 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 1 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 1 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 1 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 1 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 1 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 1 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 1 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 1 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 1 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 1 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 1 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 1 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 1 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 1 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 1 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 1 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 1 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 1 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 1 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 1 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 1 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 1 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 1 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 1 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 1 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 1 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 1 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 1 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 1 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 63 +LED 167 : xStart= 0 xEnd= 32 yStart= 63 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 98 +LED 171 : xStart= 0 xEnd= 32 yStart= 98 yEnd= 107 +LED 172 : xStart= 0 xEnd= 32 yStart= 107 yEnd= 116 +LED 173 : xStart= 0 xEnd= 32 yStart= 116 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 134 +LED 175 : xStart= 0 xEnd= 32 yStart= 134 yEnd= 143 +LED 176 : xStart= 0 xEnd= 32 yStart= 143 yEnd= 152 +LED 177 : xStart= 0 xEnd= 32 yStart= 152 yEnd= 161 +LED 178 : xStart= 0 xEnd= 32 yStart= 161 yEnd= 170 +LED 179 : xStart= 0 xEnd= 32 yStart= 170 yEnd= 179 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#434344" + LED 1: "#424244" + LED (bottom+1): "#25221e" + LED (bottom+right+1): "#333433" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#505052" + LED 1: "#505052" + LED (bottom+1): "#28231d" + LED (bottom+right+1): "#323432" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#5a5a5b" + LED 1: "#5b5b5d" + LED (bottom+1): "#2a241c" + LED (bottom+right+1): "#333532" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 7 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 7 border.horizontalSize= 0 +buildLedMap: contentWidth= 626 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 7 xEnd= 15 yStart= 171 yEnd= 180 +LED 1 : xStart= 15 xEnd= 24 yStart= 171 yEnd= 180 +LED 2 : xStart= 24 xEnd= 33 yStart= 171 yEnd= 180 +LED 3 : xStart= 33 xEnd= 42 yStart= 171 yEnd= 180 +LED 4 : xStart= 42 xEnd= 51 yStart= 171 yEnd= 180 +LED 5 : xStart= 51 xEnd= 60 yStart= 171 yEnd= 180 +LED 6 : xStart= 60 xEnd= 69 yStart= 171 yEnd= 180 +LED 7 : xStart= 69 xEnd= 78 yStart= 171 yEnd= 180 +LED 8 : xStart= 78 xEnd= 87 yStart= 171 yEnd= 180 +LED 9 : xStart= 87 xEnd= 96 yStart= 171 yEnd= 180 +LED 10 : xStart= 96 xEnd= 105 yStart= 171 yEnd= 180 +LED 11 : xStart= 105 xEnd= 114 yStart= 171 yEnd= 180 +LED 12 : xStart= 114 xEnd= 123 yStart= 171 yEnd= 180 +LED 13 : xStart= 123 xEnd= 132 yStart= 171 yEnd= 180 +LED 14 : xStart= 132 xEnd= 141 yStart= 171 yEnd= 180 +LED 15 : xStart= 141 xEnd= 150 yStart= 171 yEnd= 180 +LED 16 : xStart= 150 xEnd= 159 yStart= 171 yEnd= 180 +LED 17 : xStart= 159 xEnd= 167 yStart= 171 yEnd= 180 +LED 18 : xStart= 167 xEnd= 176 yStart= 171 yEnd= 180 +LED 19 : xStart= 176 xEnd= 185 yStart= 171 yEnd= 180 +LED 20 : xStart= 185 xEnd= 194 yStart= 171 yEnd= 180 +LED 21 : xStart= 194 xEnd= 203 yStart= 171 yEnd= 180 +LED 22 : xStart= 203 xEnd= 212 yStart= 171 yEnd= 180 +LED 23 : xStart= 212 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 427 yStart= 171 yEnd= 180 +LED 47 : xStart= 427 xEnd= 436 yStart= 171 yEnd= 180 +LED 48 : xStart= 436 xEnd= 445 yStart= 171 yEnd= 180 +LED 49 : xStart= 445 xEnd= 454 yStart= 171 yEnd= 180 +LED 50 : xStart= 454 xEnd= 463 yStart= 171 yEnd= 180 +LED 51 : xStart= 463 xEnd= 472 yStart= 171 yEnd= 180 +LED 52 : xStart= 472 xEnd= 480 yStart= 171 yEnd= 180 +LED 53 : xStart= 480 xEnd= 489 yStart= 171 yEnd= 180 +LED 54 : xStart= 489 xEnd= 498 yStart= 171 yEnd= 180 +LED 55 : xStart= 498 xEnd= 507 yStart= 171 yEnd= 180 +LED 56 : xStart= 507 xEnd= 516 yStart= 171 yEnd= 180 +LED 57 : xStart= 516 xEnd= 525 yStart= 171 yEnd= 180 +LED 58 : xStart= 525 xEnd= 534 yStart= 171 yEnd= 180 +LED 59 : xStart= 534 xEnd= 543 yStart= 171 yEnd= 180 +LED 60 : xStart= 543 xEnd= 552 yStart= 171 yEnd= 180 +LED 61 : xStart= 552 xEnd= 561 yStart= 171 yEnd= 180 +LED 62 : xStart= 561 xEnd= 570 yStart= 171 yEnd= 180 +LED 63 : xStart= 570 xEnd= 579 yStart= 171 yEnd= 180 +LED 64 : xStart= 579 xEnd= 588 yStart= 171 yEnd= 180 +LED 65 : xStart= 588 xEnd= 597 yStart= 171 yEnd= 180 +LED 66 : xStart= 597 xEnd= 606 yStart= 171 yEnd= 180 +LED 67 : xStart= 606 xEnd= 615 yStart= 171 yEnd= 180 +LED 68 : xStart= 615 xEnd= 624 yStart= 171 yEnd= 180 +LED 69 : xStart= 624 xEnd= 633 yStart= 171 yEnd= 180 +LED 70 : xStart= 602 xEnd= 633 yStart= 171 yEnd= 180 +LED 71 : xStart= 602 xEnd= 633 yStart= 162 yEnd= 171 +LED 72 : xStart= 602 xEnd= 633 yStart= 153 yEnd= 162 +LED 73 : xStart= 602 xEnd= 633 yStart= 144 yEnd= 153 +LED 74 : xStart= 602 xEnd= 633 yStart= 135 yEnd= 144 +LED 75 : xStart= 602 xEnd= 633 yStart= 125 yEnd= 135 +LED 76 : xStart= 602 xEnd= 633 yStart= 117 yEnd= 125 +LED 77 : xStart= 602 xEnd= 633 yStart= 108 yEnd= 117 +LED 78 : xStart= 602 xEnd= 633 yStart= 99 yEnd= 108 +LED 79 : xStart= 602 xEnd= 633 yStart= 90 yEnd= 99 +LED 80 : xStart= 602 xEnd= 633 yStart= 80 yEnd= 90 +LED 81 : xStart= 602 xEnd= 633 yStart= 72 yEnd= 80 +LED 82 : xStart= 602 xEnd= 633 yStart= 62 yEnd= 72 +LED 83 : xStart= 602 xEnd= 633 yStart= 54 yEnd= 62 +LED 84 : xStart= 602 xEnd= 633 yStart= 45 yEnd= 54 +LED 85 : xStart= 602 xEnd= 633 yStart= 35 yEnd= 45 +LED 86 : xStart= 602 xEnd= 633 yStart= 27 yEnd= 35 +LED 87 : xStart= 602 xEnd= 633 yStart= 17 yEnd= 27 +LED 88 : xStart= 602 xEnd= 633 yStart= 9 yEnd= 17 +LED 89 : xStart= 602 xEnd= 633 yStart= 0 yEnd= 9 +LED 90 : xStart= 624 xEnd= 633 yStart= 0 yEnd= 9 +LED 91 : xStart= 615 xEnd= 624 yStart= 0 yEnd= 9 +LED 92 : xStart= 606 xEnd= 615 yStart= 0 yEnd= 9 +LED 93 : xStart= 597 xEnd= 606 yStart= 0 yEnd= 9 +LED 94 : xStart= 588 xEnd= 597 yStart= 0 yEnd= 9 +LED 95 : xStart= 579 xEnd= 588 yStart= 0 yEnd= 9 +LED 96 : xStart= 570 xEnd= 579 yStart= 0 yEnd= 9 +LED 97 : xStart= 561 xEnd= 570 yStart= 0 yEnd= 9 +LED 98 : xStart= 552 xEnd= 561 yStart= 0 yEnd= 9 +LED 99 : xStart= 543 xEnd= 552 yStart= 0 yEnd= 9 +LED 100 : xStart= 534 xEnd= 543 yStart= 0 yEnd= 9 +LED 101 : xStart= 525 xEnd= 534 yStart= 0 yEnd= 9 +LED 102 : xStart= 516 xEnd= 525 yStart= 0 yEnd= 9 +LED 103 : xStart= 507 xEnd= 516 yStart= 0 yEnd= 9 +LED 104 : xStart= 498 xEnd= 507 yStart= 0 yEnd= 9 +LED 105 : xStart= 489 xEnd= 498 yStart= 0 yEnd= 9 +LED 106 : xStart= 480 xEnd= 489 yStart= 0 yEnd= 9 +LED 107 : xStart= 472 xEnd= 480 yStart= 0 yEnd= 9 +LED 108 : xStart= 463 xEnd= 472 yStart= 0 yEnd= 9 +LED 109 : xStart= 454 xEnd= 463 yStart= 0 yEnd= 9 +LED 110 : xStart= 445 xEnd= 454 yStart= 0 yEnd= 9 +LED 111 : xStart= 436 xEnd= 445 yStart= 0 yEnd= 9 +LED 112 : xStart= 427 xEnd= 436 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 427 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 212 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 203 xEnd= 212 yStart= 0 yEnd= 9 +LED 138 : xStart= 194 xEnd= 203 yStart= 0 yEnd= 9 +LED 139 : xStart= 185 xEnd= 194 yStart= 0 yEnd= 9 +LED 140 : xStart= 176 xEnd= 185 yStart= 0 yEnd= 9 +LED 141 : xStart= 167 xEnd= 176 yStart= 0 yEnd= 9 +LED 142 : xStart= 159 xEnd= 167 yStart= 0 yEnd= 9 +LED 143 : xStart= 150 xEnd= 159 yStart= 0 yEnd= 9 +LED 144 : xStart= 141 xEnd= 150 yStart= 0 yEnd= 9 +LED 145 : xStart= 132 xEnd= 141 yStart= 0 yEnd= 9 +LED 146 : xStart= 123 xEnd= 132 yStart= 0 yEnd= 9 +LED 147 : xStart= 114 xEnd= 123 yStart= 0 yEnd= 9 +LED 148 : xStart= 105 xEnd= 114 yStart= 0 yEnd= 9 +LED 149 : xStart= 96 xEnd= 105 yStart= 0 yEnd= 9 +LED 150 : xStart= 87 xEnd= 96 yStart= 0 yEnd= 9 +LED 151 : xStart= 78 xEnd= 87 yStart= 0 yEnd= 9 +LED 152 : xStart= 69 xEnd= 78 yStart= 0 yEnd= 9 +LED 153 : xStart= 60 xEnd= 69 yStart= 0 yEnd= 9 +LED 154 : xStart= 51 xEnd= 60 yStart= 0 yEnd= 9 +LED 155 : xStart= 42 xEnd= 51 yStart= 0 yEnd= 9 +LED 156 : xStart= 33 xEnd= 42 yStart= 0 yEnd= 9 +LED 157 : xStart= 24 xEnd= 33 yStart= 0 yEnd= 9 +LED 158 : xStart= 15 xEnd= 24 yStart= 0 yEnd= 9 +LED 159 : xStart= 7 xEnd= 15 yStart= 0 yEnd= 9 +LED 160 : xStart= 7 xEnd= 38 yStart= 0 yEnd= 9 +LED 161 : xStart= 7 xEnd= 38 yStart= 9 yEnd= 18 +LED 162 : xStart= 7 xEnd= 38 yStart= 18 yEnd= 27 +LED 163 : xStart= 7 xEnd= 38 yStart= 27 yEnd= 36 +LED 164 : xStart= 7 xEnd= 38 yStart= 36 yEnd= 45 +LED 165 : xStart= 7 xEnd= 38 yStart= 45 yEnd= 54 +LED 166 : xStart= 7 xEnd= 38 yStart= 54 yEnd= 62 +LED 167 : xStart= 7 xEnd= 38 yStart= 62 yEnd= 72 +LED 168 : xStart= 7 xEnd= 38 yStart= 72 yEnd= 81 +LED 169 : xStart= 7 xEnd= 38 yStart= 81 yEnd= 90 +LED 170 : xStart= 7 xEnd= 38 yStart= 90 yEnd= 99 +LED 171 : xStart= 7 xEnd= 38 yStart= 99 yEnd= 108 +LED 172 : xStart= 7 xEnd= 38 yStart= 108 yEnd= 117 +LED 173 : xStart= 7 xEnd= 38 yStart= 117 yEnd= 125 +LED 174 : xStart= 7 xEnd= 38 yStart= 125 yEnd= 135 +LED 175 : xStart= 7 xEnd= 38 yStart= 135 yEnd= 144 +LED 176 : xStart= 7 xEnd= 38 yStart= 144 yEnd= 153 +LED 177 : xStart= 7 xEnd= 38 yStart= 153 yEnd= 162 +LED 178 : xStart= 7 xEnd= 38 yStart= 162 yEnd= 171 +LED 179 : xStart= 7 xEnd= 38 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#666667" + LED 1: "#656566" + LED (bottom+1): "#2e261c" + LED (bottom+right+1): "#333532" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 13 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 13 border.horizontalSize= 0 +buildLedMap: contentWidth= 614 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 13 xEnd= 21 yStart= 171 yEnd= 180 +LED 1 : xStart= 21 xEnd= 30 yStart= 171 yEnd= 180 +LED 2 : xStart= 30 xEnd= 39 yStart= 171 yEnd= 180 +LED 3 : xStart= 39 xEnd= 48 yStart= 171 yEnd= 180 +LED 4 : xStart= 48 xEnd= 56 yStart= 171 yEnd= 180 +LED 5 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 6 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 7 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 8 : xStart= 83 xEnd= 91 yStart= 171 yEnd= 180 +LED 9 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 10 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 11 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 12 : xStart= 118 xEnd= 127 yStart= 171 yEnd= 180 +LED 13 : xStart= 127 xEnd= 135 yStart= 171 yEnd= 180 +LED 14 : xStart= 135 xEnd= 144 yStart= 171 yEnd= 180 +LED 15 : xStart= 144 xEnd= 153 yStart= 171 yEnd= 180 +LED 16 : xStart= 153 xEnd= 162 yStart= 171 yEnd= 180 +LED 17 : xStart= 162 xEnd= 170 yStart= 171 yEnd= 180 +LED 18 : xStart= 170 xEnd= 179 yStart= 171 yEnd= 180 +LED 19 : xStart= 179 xEnd= 188 yStart= 171 yEnd= 180 +LED 20 : xStart= 188 xEnd= 197 yStart= 171 yEnd= 180 +LED 21 : xStart= 197 xEnd= 205 yStart= 171 yEnd= 180 +LED 22 : xStart= 205 xEnd= 214 yStart= 171 yEnd= 180 +LED 23 : xStart= 214 xEnd= 223 yStart= 171 yEnd= 180 +LED 24 : xStart= 223 xEnd= 232 yStart= 171 yEnd= 180 +LED 25 : xStart= 232 xEnd= 241 yStart= 171 yEnd= 180 +LED 26 : xStart= 241 xEnd= 249 yStart= 171 yEnd= 180 +LED 27 : xStart= 249 xEnd= 258 yStart= 171 yEnd= 180 +LED 28 : xStart= 258 xEnd= 267 yStart= 171 yEnd= 180 +LED 29 : xStart= 267 xEnd= 276 yStart= 171 yEnd= 180 +LED 30 : xStart= 276 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 363 yStart= 171 yEnd= 180 +LED 40 : xStart= 363 xEnd= 372 yStart= 171 yEnd= 180 +LED 41 : xStart= 372 xEnd= 381 yStart= 171 yEnd= 180 +LED 42 : xStart= 381 xEnd= 390 yStart= 171 yEnd= 180 +LED 43 : xStart= 390 xEnd= 398 yStart= 171 yEnd= 180 +LED 44 : xStart= 398 xEnd= 407 yStart= 171 yEnd= 180 +LED 45 : xStart= 407 xEnd= 416 yStart= 171 yEnd= 180 +LED 46 : xStart= 416 xEnd= 425 yStart= 171 yEnd= 180 +LED 47 : xStart= 425 xEnd= 434 yStart= 171 yEnd= 180 +LED 48 : xStart= 434 xEnd= 442 yStart= 171 yEnd= 180 +LED 49 : xStart= 442 xEnd= 451 yStart= 171 yEnd= 180 +LED 50 : xStart= 451 xEnd= 460 yStart= 171 yEnd= 180 +LED 51 : xStart= 460 xEnd= 469 yStart= 171 yEnd= 180 +LED 52 : xStart= 469 xEnd= 477 yStart= 171 yEnd= 180 +LED 53 : xStart= 477 xEnd= 486 yStart= 171 yEnd= 180 +LED 54 : xStart= 486 xEnd= 495 yStart= 171 yEnd= 180 +LED 55 : xStart= 495 xEnd= 504 yStart= 171 yEnd= 180 +LED 56 : xStart= 504 xEnd= 512 yStart= 171 yEnd= 180 +LED 57 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 58 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 59 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 60 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 61 : xStart= 548 xEnd= 556 yStart= 171 yEnd= 180 +LED 62 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 63 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 64 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 65 : xStart= 583 xEnd= 591 yStart= 171 yEnd= 180 +LED 66 : xStart= 591 xEnd= 600 yStart= 171 yEnd= 180 +LED 67 : xStart= 600 xEnd= 609 yStart= 171 yEnd= 180 +LED 68 : xStart= 609 xEnd= 618 yStart= 171 yEnd= 180 +LED 69 : xStart= 618 xEnd= 627 yStart= 171 yEnd= 180 +LED 70 : xStart= 597 xEnd= 627 yStart= 171 yEnd= 180 +LED 71 : xStart= 597 xEnd= 627 yStart= 162 yEnd= 171 +LED 72 : xStart= 597 xEnd= 627 yStart= 153 yEnd= 162 +LED 73 : xStart= 597 xEnd= 627 yStart= 144 yEnd= 153 +LED 74 : xStart= 597 xEnd= 627 yStart= 135 yEnd= 144 +LED 75 : xStart= 597 xEnd= 627 yStart= 125 yEnd= 135 +LED 76 : xStart= 597 xEnd= 627 yStart= 117 yEnd= 125 +LED 77 : xStart= 597 xEnd= 627 yStart= 108 yEnd= 117 +LED 78 : xStart= 597 xEnd= 627 yStart= 99 yEnd= 108 +LED 79 : xStart= 597 xEnd= 627 yStart= 90 yEnd= 99 +LED 80 : xStart= 597 xEnd= 627 yStart= 80 yEnd= 90 +LED 81 : xStart= 597 xEnd= 627 yStart= 72 yEnd= 80 +LED 82 : xStart= 597 xEnd= 627 yStart= 62 yEnd= 72 +LED 83 : xStart= 597 xEnd= 627 yStart= 54 yEnd= 62 +LED 84 : xStart= 597 xEnd= 627 yStart= 45 yEnd= 54 +LED 85 : xStart= 597 xEnd= 627 yStart= 35 yEnd= 45 +LED 86 : xStart= 597 xEnd= 627 yStart= 27 yEnd= 35 +LED 87 : xStart= 597 xEnd= 627 yStart= 17 yEnd= 27 +LED 88 : xStart= 597 xEnd= 627 yStart= 9 yEnd= 17 +LED 89 : xStart= 597 xEnd= 627 yStart= 0 yEnd= 9 +LED 90 : xStart= 618 xEnd= 627 yStart= 0 yEnd= 9 +LED 91 : xStart= 609 xEnd= 618 yStart= 0 yEnd= 9 +LED 92 : xStart= 600 xEnd= 609 yStart= 0 yEnd= 9 +LED 93 : xStart= 591 xEnd= 600 yStart= 0 yEnd= 9 +LED 94 : xStart= 583 xEnd= 591 yStart= 0 yEnd= 9 +LED 95 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 96 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 97 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 98 : xStart= 548 xEnd= 556 yStart= 0 yEnd= 9 +LED 99 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 100 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 101 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 102 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 103 : xStart= 504 xEnd= 512 yStart= 0 yEnd= 9 +LED 104 : xStart= 495 xEnd= 504 yStart= 0 yEnd= 9 +LED 105 : xStart= 486 xEnd= 495 yStart= 0 yEnd= 9 +LED 106 : xStart= 477 xEnd= 486 yStart= 0 yEnd= 9 +LED 107 : xStart= 469 xEnd= 477 yStart= 0 yEnd= 9 +LED 108 : xStart= 460 xEnd= 469 yStart= 0 yEnd= 9 +LED 109 : xStart= 451 xEnd= 460 yStart= 0 yEnd= 9 +LED 110 : xStart= 442 xEnd= 451 yStart= 0 yEnd= 9 +LED 111 : xStart= 434 xEnd= 442 yStart= 0 yEnd= 9 +LED 112 : xStart= 425 xEnd= 434 yStart= 0 yEnd= 9 +LED 113 : xStart= 416 xEnd= 425 yStart= 0 yEnd= 9 +LED 114 : xStart= 407 xEnd= 416 yStart= 0 yEnd= 9 +LED 115 : xStart= 398 xEnd= 407 yStart= 0 yEnd= 9 +LED 116 : xStart= 390 xEnd= 398 yStart= 0 yEnd= 9 +LED 117 : xStart= 381 xEnd= 390 yStart= 0 yEnd= 9 +LED 118 : xStart= 372 xEnd= 381 yStart= 0 yEnd= 9 +LED 119 : xStart= 363 xEnd= 372 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 363 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 276 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 267 xEnd= 276 yStart= 0 yEnd= 9 +LED 131 : xStart= 258 xEnd= 267 yStart= 0 yEnd= 9 +LED 132 : xStart= 249 xEnd= 258 yStart= 0 yEnd= 9 +LED 133 : xStart= 241 xEnd= 249 yStart= 0 yEnd= 9 +LED 134 : xStart= 232 xEnd= 241 yStart= 0 yEnd= 9 +LED 135 : xStart= 223 xEnd= 232 yStart= 0 yEnd= 9 +LED 136 : xStart= 214 xEnd= 223 yStart= 0 yEnd= 9 +LED 137 : xStart= 205 xEnd= 214 yStart= 0 yEnd= 9 +LED 138 : xStart= 197 xEnd= 205 yStart= 0 yEnd= 9 +LED 139 : xStart= 188 xEnd= 197 yStart= 0 yEnd= 9 +LED 140 : xStart= 179 xEnd= 188 yStart= 0 yEnd= 9 +LED 141 : xStart= 170 xEnd= 179 yStart= 0 yEnd= 9 +LED 142 : xStart= 162 xEnd= 170 yStart= 0 yEnd= 9 +LED 143 : xStart= 153 xEnd= 162 yStart= 0 yEnd= 9 +LED 144 : xStart= 144 xEnd= 153 yStart= 0 yEnd= 9 +LED 145 : xStart= 135 xEnd= 144 yStart= 0 yEnd= 9 +LED 146 : xStart= 127 xEnd= 135 yStart= 0 yEnd= 9 +LED 147 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 148 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 149 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 150 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 151 : xStart= 83 xEnd= 91 yStart= 0 yEnd= 9 +LED 152 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 153 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 154 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 155 : xStart= 48 xEnd= 56 yStart= 0 yEnd= 9 +LED 156 : xStart= 39 xEnd= 48 yStart= 0 yEnd= 9 +LED 157 : xStart= 30 xEnd= 39 yStart= 0 yEnd= 9 +LED 158 : xStart= 21 xEnd= 30 yStart= 0 yEnd= 9 +LED 159 : xStart= 13 xEnd= 21 yStart= 0 yEnd= 9 +LED 160 : xStart= 13 xEnd= 43 yStart= 0 yEnd= 9 +LED 161 : xStart= 13 xEnd= 43 yStart= 9 yEnd= 18 +LED 162 : xStart= 13 xEnd= 43 yStart= 18 yEnd= 27 +LED 163 : xStart= 13 xEnd= 43 yStart= 27 yEnd= 36 +LED 164 : xStart= 13 xEnd= 43 yStart= 36 yEnd= 45 +LED 165 : xStart= 13 xEnd= 43 yStart= 45 yEnd= 54 +LED 166 : xStart= 13 xEnd= 43 yStart= 54 yEnd= 62 +LED 167 : xStart= 13 xEnd= 43 yStart= 62 yEnd= 72 +LED 168 : xStart= 13 xEnd= 43 yStart= 72 yEnd= 81 +LED 169 : xStart= 13 xEnd= 43 yStart= 81 yEnd= 90 +LED 170 : xStart= 13 xEnd= 43 yStart= 90 yEnd= 99 +LED 171 : xStart= 13 xEnd= 43 yStart= 99 yEnd= 108 +LED 172 : xStart= 13 xEnd= 43 yStart= 108 yEnd= 117 +LED 173 : xStart= 13 xEnd= 43 yStart= 117 yEnd= 125 +LED 174 : xStart= 13 xEnd= 43 yStart= 125 yEnd= 135 +LED 175 : xStart= 13 xEnd= 43 yStart= 135 yEnd= 144 +LED 176 : xStart= 13 xEnd= 43 yStart= 144 yEnd= 153 +LED 177 : xStart= 13 xEnd= 43 yStart= 153 yEnd= 162 +LED 178 : xStart= 13 xEnd= 43 yStart= 162 yEnd= 171 +LED 179 : xStart= 13 xEnd= 43 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#6c6b6c" + LED 1: "#6b6a6b" + LED (bottom+1): "#30271c" + LED (bottom+right+1): "#313330" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 15 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 15 border.horizontalSize= 0 +buildLedMap: contentWidth= 610 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 15 xEnd= 23 yStart= 171 yEnd= 180 +LED 1 : xStart= 23 xEnd= 32 yStart= 171 yEnd= 180 +LED 2 : xStart= 32 xEnd= 41 yStart= 171 yEnd= 180 +LED 3 : xStart= 41 xEnd= 49 yStart= 171 yEnd= 180 +LED 4 : xStart= 49 xEnd= 58 yStart= 171 yEnd= 180 +LED 5 : xStart= 58 xEnd= 67 yStart= 171 yEnd= 180 +LED 6 : xStart= 67 xEnd= 76 yStart= 171 yEnd= 180 +LED 7 : xStart= 76 xEnd= 84 yStart= 171 yEnd= 180 +LED 8 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 9 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 10 : xStart= 102 xEnd= 110 yStart= 171 yEnd= 180 +LED 11 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 12 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 13 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 14 : xStart= 137 xEnd= 145 yStart= 171 yEnd= 180 +LED 15 : xStart= 145 xEnd= 154 yStart= 171 yEnd= 180 +LED 16 : xStart= 154 xEnd= 163 yStart= 171 yEnd= 180 +LED 17 : xStart= 163 xEnd= 171 yStart= 171 yEnd= 180 +LED 18 : xStart= 171 xEnd= 180 yStart= 171 yEnd= 180 +LED 19 : xStart= 180 xEnd= 189 yStart= 171 yEnd= 180 +LED 20 : xStart= 189 xEnd= 198 yStart= 171 yEnd= 180 +LED 21 : xStart= 198 xEnd= 206 yStart= 171 yEnd= 180 +LED 22 : xStart= 206 xEnd= 215 yStart= 171 yEnd= 180 +LED 23 : xStart= 215 xEnd= 224 yStart= 171 yEnd= 180 +LED 24 : xStart= 224 xEnd= 232 yStart= 171 yEnd= 180 +LED 25 : xStart= 232 xEnd= 241 yStart= 171 yEnd= 180 +LED 26 : xStart= 241 xEnd= 250 yStart= 171 yEnd= 180 +LED 27 : xStart= 250 xEnd= 259 yStart= 171 yEnd= 180 +LED 28 : xStart= 259 xEnd= 267 yStart= 171 yEnd= 180 +LED 29 : xStart= 267 xEnd= 276 yStart= 171 yEnd= 180 +LED 30 : xStart= 276 xEnd= 285 yStart= 171 yEnd= 180 +LED 31 : xStart= 285 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 354 yStart= 171 yEnd= 180 +LED 39 : xStart= 354 xEnd= 363 yStart= 171 yEnd= 180 +LED 40 : xStart= 363 xEnd= 372 yStart= 171 yEnd= 180 +LED 41 : xStart= 372 xEnd= 381 yStart= 171 yEnd= 180 +LED 42 : xStart= 381 xEnd= 389 yStart= 171 yEnd= 180 +LED 43 : xStart= 389 xEnd= 398 yStart= 171 yEnd= 180 +LED 44 : xStart= 398 xEnd= 407 yStart= 171 yEnd= 180 +LED 45 : xStart= 407 xEnd= 415 yStart= 171 yEnd= 180 +LED 46 : xStart= 415 xEnd= 424 yStart= 171 yEnd= 180 +LED 47 : xStart= 424 xEnd= 433 yStart= 171 yEnd= 180 +LED 48 : xStart= 433 xEnd= 442 yStart= 171 yEnd= 180 +LED 49 : xStart= 442 xEnd= 450 yStart= 171 yEnd= 180 +LED 50 : xStart= 450 xEnd= 459 yStart= 171 yEnd= 180 +LED 51 : xStart= 459 xEnd= 468 yStart= 171 yEnd= 180 +LED 52 : xStart= 468 xEnd= 476 yStart= 171 yEnd= 180 +LED 53 : xStart= 476 xEnd= 485 yStart= 171 yEnd= 180 +LED 54 : xStart= 485 xEnd= 494 yStart= 171 yEnd= 180 +LED 55 : xStart= 494 xEnd= 503 yStart= 171 yEnd= 180 +LED 56 : xStart= 503 xEnd= 511 yStart= 171 yEnd= 180 +LED 57 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 58 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 59 : xStart= 529 xEnd= 537 yStart= 171 yEnd= 180 +LED 60 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 61 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 62 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 63 : xStart= 564 xEnd= 572 yStart= 171 yEnd= 180 +LED 64 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 65 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 66 : xStart= 590 xEnd= 598 yStart= 171 yEnd= 180 +LED 67 : xStart= 598 xEnd= 607 yStart= 171 yEnd= 180 +LED 68 : xStart= 607 xEnd= 616 yStart= 171 yEnd= 180 +LED 69 : xStart= 616 xEnd= 625 yStart= 171 yEnd= 180 +LED 70 : xStart= 595 xEnd= 625 yStart= 171 yEnd= 180 +LED 71 : xStart= 595 xEnd= 625 yStart= 162 yEnd= 171 +LED 72 : xStart= 595 xEnd= 625 yStart= 153 yEnd= 162 +LED 73 : xStart= 595 xEnd= 625 yStart= 144 yEnd= 153 +LED 74 : xStart= 595 xEnd= 625 yStart= 135 yEnd= 144 +LED 75 : xStart= 595 xEnd= 625 yStart= 125 yEnd= 135 +LED 76 : xStart= 595 xEnd= 625 yStart= 117 yEnd= 125 +LED 77 : xStart= 595 xEnd= 625 yStart= 108 yEnd= 117 +LED 78 : xStart= 595 xEnd= 625 yStart= 99 yEnd= 108 +LED 79 : xStart= 595 xEnd= 625 yStart= 90 yEnd= 99 +LED 80 : xStart= 595 xEnd= 625 yStart= 80 yEnd= 90 +LED 81 : xStart= 595 xEnd= 625 yStart= 72 yEnd= 80 +LED 82 : xStart= 595 xEnd= 625 yStart= 62 yEnd= 72 +LED 83 : xStart= 595 xEnd= 625 yStart= 54 yEnd= 62 +LED 84 : xStart= 595 xEnd= 625 yStart= 45 yEnd= 54 +LED 85 : xStart= 595 xEnd= 625 yStart= 35 yEnd= 45 +LED 86 : xStart= 595 xEnd= 625 yStart= 27 yEnd= 35 +LED 87 : xStart= 595 xEnd= 625 yStart= 17 yEnd= 27 +LED 88 : xStart= 595 xEnd= 625 yStart= 9 yEnd= 17 +LED 89 : xStart= 595 xEnd= 625 yStart= 0 yEnd= 9 +LED 90 : xStart= 616 xEnd= 625 yStart= 0 yEnd= 9 +LED 91 : xStart= 607 xEnd= 616 yStart= 0 yEnd= 9 +LED 92 : xStart= 598 xEnd= 607 yStart= 0 yEnd= 9 +LED 93 : xStart= 590 xEnd= 598 yStart= 0 yEnd= 9 +LED 94 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 95 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 96 : xStart= 564 xEnd= 572 yStart= 0 yEnd= 9 +LED 97 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 98 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 99 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 100 : xStart= 529 xEnd= 537 yStart= 0 yEnd= 9 +LED 101 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 102 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 103 : xStart= 503 xEnd= 511 yStart= 0 yEnd= 9 +LED 104 : xStart= 494 xEnd= 503 yStart= 0 yEnd= 9 +LED 105 : xStart= 485 xEnd= 494 yStart= 0 yEnd= 9 +LED 106 : xStart= 476 xEnd= 485 yStart= 0 yEnd= 9 +LED 107 : xStart= 468 xEnd= 476 yStart= 0 yEnd= 9 +LED 108 : xStart= 459 xEnd= 468 yStart= 0 yEnd= 9 +LED 109 : xStart= 450 xEnd= 459 yStart= 0 yEnd= 9 +LED 110 : xStart= 442 xEnd= 450 yStart= 0 yEnd= 9 +LED 111 : xStart= 433 xEnd= 442 yStart= 0 yEnd= 9 +LED 112 : xStart= 424 xEnd= 433 yStart= 0 yEnd= 9 +LED 113 : xStart= 415 xEnd= 424 yStart= 0 yEnd= 9 +LED 114 : xStart= 407 xEnd= 415 yStart= 0 yEnd= 9 +LED 115 : xStart= 398 xEnd= 407 yStart= 0 yEnd= 9 +LED 116 : xStart= 389 xEnd= 398 yStart= 0 yEnd= 9 +LED 117 : xStart= 381 xEnd= 389 yStart= 0 yEnd= 9 +LED 118 : xStart= 372 xEnd= 381 yStart= 0 yEnd= 9 +LED 119 : xStart= 363 xEnd= 372 yStart= 0 yEnd= 9 +LED 120 : xStart= 354 xEnd= 363 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 354 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 285 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 276 xEnd= 285 yStart= 0 yEnd= 9 +LED 130 : xStart= 267 xEnd= 276 yStart= 0 yEnd= 9 +LED 131 : xStart= 259 xEnd= 267 yStart= 0 yEnd= 9 +LED 132 : xStart= 250 xEnd= 259 yStart= 0 yEnd= 9 +LED 133 : xStart= 241 xEnd= 250 yStart= 0 yEnd= 9 +LED 134 : xStart= 232 xEnd= 241 yStart= 0 yEnd= 9 +LED 135 : xStart= 224 xEnd= 232 yStart= 0 yEnd= 9 +LED 136 : xStart= 215 xEnd= 224 yStart= 0 yEnd= 9 +LED 137 : xStart= 206 xEnd= 215 yStart= 0 yEnd= 9 +LED 138 : xStart= 198 xEnd= 206 yStart= 0 yEnd= 9 +LED 139 : xStart= 189 xEnd= 198 yStart= 0 yEnd= 9 +LED 140 : xStart= 180 xEnd= 189 yStart= 0 yEnd= 9 +LED 141 : xStart= 171 xEnd= 180 yStart= 0 yEnd= 9 +LED 142 : xStart= 163 xEnd= 171 yStart= 0 yEnd= 9 +LED 143 : xStart= 154 xEnd= 163 yStart= 0 yEnd= 9 +LED 144 : xStart= 145 xEnd= 154 yStart= 0 yEnd= 9 +LED 145 : xStart= 136 xEnd= 145 yStart= 0 yEnd= 9 +LED 146 : xStart= 128 xEnd= 136 yStart= 0 yEnd= 9 +LED 147 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 148 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 149 : xStart= 102 xEnd= 110 yStart= 0 yEnd= 9 +LED 150 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 151 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 152 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 153 : xStart= 67 xEnd= 75 yStart= 0 yEnd= 9 +LED 154 : xStart= 58 xEnd= 67 yStart= 0 yEnd= 9 +LED 155 : xStart= 49 xEnd= 58 yStart= 0 yEnd= 9 +LED 156 : xStart= 41 xEnd= 49 yStart= 0 yEnd= 9 +LED 157 : xStart= 32 xEnd= 41 yStart= 0 yEnd= 9 +LED 158 : xStart= 23 xEnd= 32 yStart= 0 yEnd= 9 +LED 159 : xStart= 15 xEnd= 23 yStart= 0 yEnd= 9 +LED 160 : xStart= 15 xEnd= 45 yStart= 0 yEnd= 9 +LED 161 : xStart= 15 xEnd= 45 yStart= 9 yEnd= 18 +LED 162 : xStart= 15 xEnd= 45 yStart= 18 yEnd= 27 +LED 163 : xStart= 15 xEnd= 45 yStart= 27 yEnd= 36 +LED 164 : xStart= 15 xEnd= 45 yStart= 36 yEnd= 45 +LED 165 : xStart= 15 xEnd= 45 yStart= 45 yEnd= 54 +LED 166 : xStart= 15 xEnd= 45 yStart= 54 yEnd= 62 +LED 167 : xStart= 15 xEnd= 45 yStart= 62 yEnd= 72 +LED 168 : xStart= 15 xEnd= 45 yStart= 72 yEnd= 81 +LED 169 : xStart= 15 xEnd= 45 yStart= 81 yEnd= 90 +LED 170 : xStart= 15 xEnd= 45 yStart= 90 yEnd= 99 +LED 171 : xStart= 15 xEnd= 45 yStart= 99 yEnd= 108 +LED 172 : xStart= 15 xEnd= 45 yStart= 108 yEnd= 117 +LED 173 : xStart= 15 xEnd= 45 yStart= 117 yEnd= 125 +LED 174 : xStart= 15 xEnd= 45 yStart= 125 yEnd= 135 +LED 175 : xStart= 15 xEnd= 45 yStart= 135 yEnd= 144 +LED 176 : xStart= 15 xEnd= 45 yStart= 144 yEnd= 153 +LED 177 : xStart= 15 xEnd= 45 yStart= 153 yEnd= 162 +LED 178 : xStart= 15 xEnd= 45 yStart= 162 yEnd= 171 +LED 179 : xStart= 15 xEnd= 45 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#6a6969" + LED 1: "#707070" + LED (bottom+1): "#31281b" + LED (bottom+right+1): "#31332f" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#241b14" + LED 1: "#636160" + LED (bottom+1): "#33291b" + LED (bottom+right+1): "#323430" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#251b13" + LED 1: "#271f17" + LED (bottom+1): "#362a1a" + LED (bottom+right+1): "#323430" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 10 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 10 border.horizontalSize= 0 +buildLedMap: contentWidth= 620 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 10 xEnd= 18 yStart= 171 yEnd= 180 +LED 1 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 2 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 3 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 4 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 5 : xStart= 54 xEnd= 63 yStart= 171 yEnd= 180 +LED 6 : xStart= 63 xEnd= 72 yStart= 171 yEnd= 180 +LED 7 : xStart= 72 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 89 yStart= 171 yEnd= 180 +LED 9 : xStart= 89 xEnd= 98 yStart= 171 yEnd= 180 +LED 10 : xStart= 98 xEnd= 107 yStart= 171 yEnd= 180 +LED 11 : xStart= 107 xEnd= 116 yStart= 171 yEnd= 180 +LED 12 : xStart= 116 xEnd= 125 yStart= 171 yEnd= 180 +LED 13 : xStart= 125 xEnd= 134 yStart= 171 yEnd= 180 +LED 14 : xStart= 134 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 169 yStart= 171 yEnd= 180 +LED 18 : xStart= 169 xEnd= 178 yStart= 171 yEnd= 180 +LED 19 : xStart= 178 xEnd= 187 yStart= 171 yEnd= 180 +LED 20 : xStart= 187 xEnd= 196 yStart= 171 yEnd= 180 +LED 21 : xStart= 196 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 249 yStart= 171 yEnd= 180 +LED 27 : xStart= 249 xEnd= 258 yStart= 171 yEnd= 180 +LED 28 : xStart= 258 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 390 yStart= 171 yEnd= 180 +LED 43 : xStart= 390 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 452 yStart= 171 yEnd= 180 +LED 50 : xStart= 452 xEnd= 461 yStart= 171 yEnd= 180 +LED 51 : xStart= 461 xEnd= 470 yStart= 171 yEnd= 180 +LED 52 : xStart= 470 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 514 yStart= 171 yEnd= 180 +LED 57 : xStart= 514 xEnd= 523 yStart= 171 yEnd= 180 +LED 58 : xStart= 523 xEnd= 532 yStart= 171 yEnd= 180 +LED 59 : xStart= 532 xEnd= 541 yStart= 171 yEnd= 180 +LED 60 : xStart= 541 xEnd= 550 yStart= 171 yEnd= 180 +LED 61 : xStart= 550 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 576 yStart= 171 yEnd= 180 +LED 64 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 65 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 66 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 67 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 68 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 69 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 70 : xStart= 599 xEnd= 630 yStart= 171 yEnd= 180 +LED 71 : xStart= 599 xEnd= 630 yStart= 162 yEnd= 171 +LED 72 : xStart= 599 xEnd= 630 yStart= 153 yEnd= 162 +LED 73 : xStart= 599 xEnd= 630 yStart= 144 yEnd= 153 +LED 74 : xStart= 599 xEnd= 630 yStart= 135 yEnd= 144 +LED 75 : xStart= 599 xEnd= 630 yStart= 125 yEnd= 135 +LED 76 : xStart= 599 xEnd= 630 yStart= 117 yEnd= 125 +LED 77 : xStart= 599 xEnd= 630 yStart= 108 yEnd= 117 +LED 78 : xStart= 599 xEnd= 630 yStart= 99 yEnd= 108 +LED 79 : xStart= 599 xEnd= 630 yStart= 90 yEnd= 99 +LED 80 : xStart= 599 xEnd= 630 yStart= 80 yEnd= 90 +LED 81 : xStart= 599 xEnd= 630 yStart= 72 yEnd= 80 +LED 82 : xStart= 599 xEnd= 630 yStart= 62 yEnd= 72 +LED 83 : xStart= 599 xEnd= 630 yStart= 54 yEnd= 62 +LED 84 : xStart= 599 xEnd= 630 yStart= 45 yEnd= 54 +LED 85 : xStart= 599 xEnd= 630 yStart= 35 yEnd= 45 +LED 86 : xStart= 599 xEnd= 630 yStart= 27 yEnd= 35 +LED 87 : xStart= 599 xEnd= 630 yStart= 17 yEnd= 27 +LED 88 : xStart= 599 xEnd= 630 yStart= 9 yEnd= 17 +LED 89 : xStart= 599 xEnd= 630 yStart= 0 yEnd= 9 +LED 90 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 91 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 92 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 93 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 94 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 95 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 576 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 550 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 541 xEnd= 550 yStart= 0 yEnd= 9 +LED 100 : xStart= 532 xEnd= 541 yStart= 0 yEnd= 9 +LED 101 : xStart= 523 xEnd= 532 yStart= 0 yEnd= 9 +LED 102 : xStart= 514 xEnd= 523 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 514 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 470 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 461 xEnd= 470 yStart= 0 yEnd= 9 +LED 109 : xStart= 452 xEnd= 461 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 452 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 390 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 390 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 258 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 249 xEnd= 258 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 249 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 196 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 187 xEnd= 196 yStart= 0 yEnd= 9 +LED 140 : xStart= 178 xEnd= 187 yStart= 0 yEnd= 9 +LED 141 : xStart= 169 xEnd= 178 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 169 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 125 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 116 xEnd= 125 yStart= 0 yEnd= 9 +LED 148 : xStart= 107 xEnd= 116 yStart= 0 yEnd= 9 +LED 149 : xStart= 98 xEnd= 107 yStart= 0 yEnd= 9 +LED 150 : xStart= 89 xEnd= 98 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 89 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 63 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 155 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 156 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 157 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 158 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 159 : xStart= 10 xEnd= 18 yStart= 0 yEnd= 9 +LED 160 : xStart= 10 xEnd= 41 yStart= 0 yEnd= 9 +LED 161 : xStart= 10 xEnd= 41 yStart= 9 yEnd= 18 +LED 162 : xStart= 10 xEnd= 41 yStart= 18 yEnd= 27 +LED 163 : xStart= 10 xEnd= 41 yStart= 27 yEnd= 36 +LED 164 : xStart= 10 xEnd= 41 yStart= 36 yEnd= 45 +LED 165 : xStart= 10 xEnd= 41 yStart= 45 yEnd= 54 +LED 166 : xStart= 10 xEnd= 41 yStart= 54 yEnd= 62 +LED 167 : xStart= 10 xEnd= 41 yStart= 62 yEnd= 72 +LED 168 : xStart= 10 xEnd= 41 yStart= 72 yEnd= 81 +LED 169 : xStart= 10 xEnd= 41 yStart= 81 yEnd= 90 +LED 170 : xStart= 10 xEnd= 41 yStart= 90 yEnd= 99 +LED 171 : xStart= 10 xEnd= 41 yStart= 99 yEnd= 108 +LED 172 : xStart= 10 xEnd= 41 yStart= 108 yEnd= 117 +LED 173 : xStart= 10 xEnd= 41 yStart= 117 yEnd= 125 +LED 174 : xStart= 10 xEnd= 41 yStart= 125 yEnd= 135 +LED 175 : xStart= 10 xEnd= 41 yStart= 135 yEnd= 144 +LED 176 : xStart= 10 xEnd= 41 yStart= 144 yEnd= 153 +LED 177 : xStart= 10 xEnd= 41 yStart= 153 yEnd= 162 +LED 178 : xStart= 10 xEnd= 41 yStart= 162 yEnd= 171 +LED 179 : xStart= 10 xEnd= 41 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#231911" + LED 1: "#261b12" + LED (bottom+1): "#372a1a" + LED (bottom+right+1): "#323430" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#241910" + LED 1: "#261b11" + LED (bottom+1): "#382b19" + LED (bottom+right+1): "#323530" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#24190f" + LED 1: "#271b10" + LED (bottom+1): "#3a2c19" + LED (bottom+right+1): "#333531" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#24180f" + LED 1: "#271b10" + LED (bottom+1): "#3b2c19" + LED (bottom+right+1): "#333631" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#24180e" + LED 1: "#281b0f" + LED (bottom+1): "#3c2d19" + LED (bottom+right+1): "#353832" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#24180d" + LED 1: "#281b0e" + LED (bottom+1): "#3d2d18" + LED (bottom+right+1): "#353833" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25180d" + LED 1: "#291b0e" + LED (bottom+1): "#3e2e18" + LED (bottom+right+1): "#363933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170c" + LED 1: "#291a0d" + LED (bottom+1): "#3f2e18" + LED (bottom+right+1): "#363933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170c" + LED 1: "#291a0d" + LED (bottom+1): "#3f2e17" + LED (bottom+right+1): "#363933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170c" + LED 1: "#291a0c" + LED (bottom+1): "#402f17" + LED (bottom+right+1): "#373933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170b" + LED 1: "#291a0c" + LED (bottom+1): "#402f17" + LED (bottom+right+1): "#373933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170b" + LED 1: "#291a0c" + LED (bottom+1): "#402f17" + LED (bottom+right+1): "#373a33" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170b" + LED 1: "#291a0c" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170b" + LED 1: "#291a0c" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0c" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#28190b" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291b0d" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#2d1e10" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2f2113" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#312315" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#322416" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#322417" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#312215" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#322416" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#322316" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#322316" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#322316" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#302114" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#302114" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#302114" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#312215" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#312215" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#312316" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#312316" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#332416" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#544a41" + LED 1: "#c1c0c1" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#97928e" + LED 1: "#c6c5c5" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 8 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 8 border.horizontalSize= 0 +buildLedMap: contentWidth= 624 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 8 xEnd= 16 yStart= 171 yEnd= 180 +LED 1 : xStart= 16 xEnd= 25 yStart= 171 yEnd= 180 +LED 2 : xStart= 25 xEnd= 34 yStart= 171 yEnd= 180 +LED 3 : xStart= 34 xEnd= 43 yStart= 171 yEnd= 180 +LED 4 : xStart= 43 xEnd= 52 yStart= 171 yEnd= 180 +LED 5 : xStart= 52 xEnd= 61 yStart= 171 yEnd= 180 +LED 6 : xStart= 61 xEnd= 70 yStart= 171 yEnd= 180 +LED 7 : xStart= 70 xEnd= 79 yStart= 171 yEnd= 180 +LED 8 : xStart= 79 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 114 yStart= 171 yEnd= 180 +LED 12 : xStart= 114 xEnd= 123 yStart= 171 yEnd= 180 +LED 13 : xStart= 123 xEnd= 132 yStart= 171 yEnd= 180 +LED 14 : xStart= 132 xEnd= 141 yStart= 171 yEnd= 180 +LED 15 : xStart= 141 xEnd= 150 yStart= 171 yEnd= 180 +LED 16 : xStart= 150 xEnd= 159 yStart= 171 yEnd= 180 +LED 17 : xStart= 159 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 480 yStart= 171 yEnd= 180 +LED 53 : xStart= 480 xEnd= 489 yStart= 171 yEnd= 180 +LED 54 : xStart= 489 xEnd= 498 yStart= 171 yEnd= 180 +LED 55 : xStart= 498 xEnd= 507 yStart= 171 yEnd= 180 +LED 56 : xStart= 507 xEnd= 516 yStart= 171 yEnd= 180 +LED 57 : xStart= 516 xEnd= 525 yStart= 171 yEnd= 180 +LED 58 : xStart= 525 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 560 yStart= 171 yEnd= 180 +LED 62 : xStart= 560 xEnd= 569 yStart= 171 yEnd= 180 +LED 63 : xStart= 569 xEnd= 578 yStart= 171 yEnd= 180 +LED 64 : xStart= 578 xEnd= 587 yStart= 171 yEnd= 180 +LED 65 : xStart= 587 xEnd= 596 yStart= 171 yEnd= 180 +LED 66 : xStart= 596 xEnd= 605 yStart= 171 yEnd= 180 +LED 67 : xStart= 605 xEnd= 614 yStart= 171 yEnd= 180 +LED 68 : xStart= 614 xEnd= 623 yStart= 171 yEnd= 180 +LED 69 : xStart= 623 xEnd= 632 yStart= 171 yEnd= 180 +LED 70 : xStart= 601 xEnd= 632 yStart= 171 yEnd= 180 +LED 71 : xStart= 601 xEnd= 632 yStart= 162 yEnd= 171 +LED 72 : xStart= 601 xEnd= 632 yStart= 153 yEnd= 162 +LED 73 : xStart= 601 xEnd= 632 yStart= 144 yEnd= 153 +LED 74 : xStart= 601 xEnd= 632 yStart= 135 yEnd= 144 +LED 75 : xStart= 601 xEnd= 632 yStart= 125 yEnd= 135 +LED 76 : xStart= 601 xEnd= 632 yStart= 117 yEnd= 125 +LED 77 : xStart= 601 xEnd= 632 yStart= 108 yEnd= 117 +LED 78 : xStart= 601 xEnd= 632 yStart= 99 yEnd= 108 +LED 79 : xStart= 601 xEnd= 632 yStart= 90 yEnd= 99 +LED 80 : xStart= 601 xEnd= 632 yStart= 80 yEnd= 90 +LED 81 : xStart= 601 xEnd= 632 yStart= 72 yEnd= 80 +LED 82 : xStart= 601 xEnd= 632 yStart= 62 yEnd= 72 +LED 83 : xStart= 601 xEnd= 632 yStart= 54 yEnd= 62 +LED 84 : xStart= 601 xEnd= 632 yStart= 45 yEnd= 54 +LED 85 : xStart= 601 xEnd= 632 yStart= 35 yEnd= 45 +LED 86 : xStart= 601 xEnd= 632 yStart= 27 yEnd= 35 +LED 87 : xStart= 601 xEnd= 632 yStart= 17 yEnd= 27 +LED 88 : xStart= 601 xEnd= 632 yStart= 9 yEnd= 17 +LED 89 : xStart= 601 xEnd= 632 yStart= 0 yEnd= 9 +LED 90 : xStart= 623 xEnd= 632 yStart= 0 yEnd= 9 +LED 91 : xStart= 614 xEnd= 623 yStart= 0 yEnd= 9 +LED 92 : xStart= 605 xEnd= 614 yStart= 0 yEnd= 9 +LED 93 : xStart= 596 xEnd= 605 yStart= 0 yEnd= 9 +LED 94 : xStart= 587 xEnd= 596 yStart= 0 yEnd= 9 +LED 95 : xStart= 578 xEnd= 587 yStart= 0 yEnd= 9 +LED 96 : xStart= 569 xEnd= 578 yStart= 0 yEnd= 9 +LED 97 : xStart= 560 xEnd= 569 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 560 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 525 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 516 xEnd= 525 yStart= 0 yEnd= 9 +LED 103 : xStart= 507 xEnd= 516 yStart= 0 yEnd= 9 +LED 104 : xStart= 498 xEnd= 507 yStart= 0 yEnd= 9 +LED 105 : xStart= 489 xEnd= 498 yStart= 0 yEnd= 9 +LED 106 : xStart= 480 xEnd= 489 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 480 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 159 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 150 xEnd= 159 yStart= 0 yEnd= 9 +LED 144 : xStart= 141 xEnd= 150 yStart= 0 yEnd= 9 +LED 145 : xStart= 132 xEnd= 141 yStart= 0 yEnd= 9 +LED 146 : xStart= 123 xEnd= 132 yStart= 0 yEnd= 9 +LED 147 : xStart= 114 xEnd= 123 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 114 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 79 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 70 xEnd= 79 yStart= 0 yEnd= 9 +LED 153 : xStart= 61 xEnd= 70 yStart= 0 yEnd= 9 +LED 154 : xStart= 52 xEnd= 61 yStart= 0 yEnd= 9 +LED 155 : xStart= 43 xEnd= 52 yStart= 0 yEnd= 9 +LED 156 : xStart= 34 xEnd= 43 yStart= 0 yEnd= 9 +LED 157 : xStart= 25 xEnd= 34 yStart= 0 yEnd= 9 +LED 158 : xStart= 16 xEnd= 25 yStart= 0 yEnd= 9 +LED 159 : xStart= 8 xEnd= 16 yStart= 0 yEnd= 9 +LED 160 : xStart= 8 xEnd= 39 yStart= 0 yEnd= 9 +LED 161 : xStart= 8 xEnd= 39 yStart= 9 yEnd= 18 +LED 162 : xStart= 8 xEnd= 39 yStart= 18 yEnd= 27 +LED 163 : xStart= 8 xEnd= 39 yStart= 27 yEnd= 36 +LED 164 : xStart= 8 xEnd= 39 yStart= 36 yEnd= 45 +LED 165 : xStart= 8 xEnd= 39 yStart= 45 yEnd= 54 +LED 166 : xStart= 8 xEnd= 39 yStart= 54 yEnd= 62 +LED 167 : xStart= 8 xEnd= 39 yStart= 62 yEnd= 72 +LED 168 : xStart= 8 xEnd= 39 yStart= 72 yEnd= 81 +LED 169 : xStart= 8 xEnd= 39 yStart= 81 yEnd= 90 +LED 170 : xStart= 8 xEnd= 39 yStart= 90 yEnd= 99 +LED 171 : xStart= 8 xEnd= 39 yStart= 99 yEnd= 108 +LED 172 : xStart= 8 xEnd= 39 yStart= 108 yEnd= 117 +LED 173 : xStart= 8 xEnd= 39 yStart= 117 yEnd= 125 +LED 174 : xStart= 8 xEnd= 39 yStart= 125 yEnd= 135 +LED 175 : xStart= 8 xEnd= 39 yStart= 135 yEnd= 144 +LED 176 : xStart= 8 xEnd= 39 yStart= 144 yEnd= 153 +LED 177 : xStart= 8 xEnd= 39 yStart= 153 yEnd= 162 +LED 178 : xStart= 8 xEnd= 39 yStart= 162 yEnd= 171 +LED 179 : xStart= 8 xEnd= 39 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab8b7" + LED 1: "#c8c7c8" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 6 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 6 border.horizontalSize= 0 +buildLedMap: contentWidth= 628 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 6 xEnd= 14 yStart= 171 yEnd= 180 +LED 1 : xStart= 14 xEnd= 23 yStart= 171 yEnd= 180 +LED 2 : xStart= 23 xEnd= 32 yStart= 171 yEnd= 180 +LED 3 : xStart= 32 xEnd= 41 yStart= 171 yEnd= 180 +LED 4 : xStart= 41 xEnd= 50 yStart= 171 yEnd= 180 +LED 5 : xStart= 50 xEnd= 59 yStart= 171 yEnd= 180 +LED 6 : xStart= 59 xEnd= 68 yStart= 171 yEnd= 180 +LED 7 : xStart= 68 xEnd= 77 yStart= 171 yEnd= 180 +LED 8 : xStart= 77 xEnd= 86 yStart= 171 yEnd= 180 +LED 9 : xStart= 86 xEnd= 95 yStart= 171 yEnd= 180 +LED 10 : xStart= 95 xEnd= 104 yStart= 171 yEnd= 180 +LED 11 : xStart= 104 xEnd= 113 yStart= 171 yEnd= 180 +LED 12 : xStart= 113 xEnd= 122 yStart= 171 yEnd= 180 +LED 13 : xStart= 122 xEnd= 131 yStart= 171 yEnd= 180 +LED 14 : xStart= 131 xEnd= 140 yStart= 171 yEnd= 180 +LED 15 : xStart= 140 xEnd= 149 yStart= 171 yEnd= 180 +LED 16 : xStart= 149 xEnd= 158 yStart= 171 yEnd= 180 +LED 17 : xStart= 158 xEnd= 167 yStart= 171 yEnd= 180 +LED 18 : xStart= 167 xEnd= 176 yStart= 171 yEnd= 180 +LED 19 : xStart= 176 xEnd= 185 yStart= 171 yEnd= 180 +LED 20 : xStart= 185 xEnd= 194 yStart= 171 yEnd= 180 +LED 21 : xStart= 194 xEnd= 203 yStart= 171 yEnd= 180 +LED 22 : xStart= 203 xEnd= 212 yStart= 171 yEnd= 180 +LED 23 : xStart= 212 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 427 yStart= 171 yEnd= 180 +LED 47 : xStart= 427 xEnd= 436 yStart= 171 yEnd= 180 +LED 48 : xStart= 436 xEnd= 445 yStart= 171 yEnd= 180 +LED 49 : xStart= 445 xEnd= 454 yStart= 171 yEnd= 180 +LED 50 : xStart= 454 xEnd= 463 yStart= 171 yEnd= 180 +LED 51 : xStart= 463 xEnd= 472 yStart= 171 yEnd= 180 +LED 52 : xStart= 472 xEnd= 481 yStart= 171 yEnd= 180 +LED 53 : xStart= 481 xEnd= 490 yStart= 171 yEnd= 180 +LED 54 : xStart= 490 xEnd= 499 yStart= 171 yEnd= 180 +LED 55 : xStart= 499 xEnd= 508 yStart= 171 yEnd= 180 +LED 56 : xStart= 508 xEnd= 517 yStart= 171 yEnd= 180 +LED 57 : xStart= 517 xEnd= 526 yStart= 171 yEnd= 180 +LED 58 : xStart= 526 xEnd= 535 yStart= 171 yEnd= 180 +LED 59 : xStart= 535 xEnd= 544 yStart= 171 yEnd= 180 +LED 60 : xStart= 544 xEnd= 553 yStart= 171 yEnd= 180 +LED 61 : xStart= 553 xEnd= 562 yStart= 171 yEnd= 180 +LED 62 : xStart= 562 xEnd= 571 yStart= 171 yEnd= 180 +LED 63 : xStart= 571 xEnd= 580 yStart= 171 yEnd= 180 +LED 64 : xStart= 580 xEnd= 589 yStart= 171 yEnd= 180 +LED 65 : xStart= 589 xEnd= 598 yStart= 171 yEnd= 180 +LED 66 : xStart= 598 xEnd= 607 yStart= 171 yEnd= 180 +LED 67 : xStart= 607 xEnd= 616 yStart= 171 yEnd= 180 +LED 68 : xStart= 616 xEnd= 625 yStart= 171 yEnd= 180 +LED 69 : xStart= 625 xEnd= 634 yStart= 171 yEnd= 180 +LED 70 : xStart= 603 xEnd= 634 yStart= 171 yEnd= 180 +LED 71 : xStart= 603 xEnd= 634 yStart= 162 yEnd= 171 +LED 72 : xStart= 603 xEnd= 634 yStart= 153 yEnd= 162 +LED 73 : xStart= 603 xEnd= 634 yStart= 144 yEnd= 153 +LED 74 : xStart= 603 xEnd= 634 yStart= 135 yEnd= 144 +LED 75 : xStart= 603 xEnd= 634 yStart= 125 yEnd= 135 +LED 76 : xStart= 603 xEnd= 634 yStart= 117 yEnd= 125 +LED 77 : xStart= 603 xEnd= 634 yStart= 108 yEnd= 117 +LED 78 : xStart= 603 xEnd= 634 yStart= 99 yEnd= 108 +LED 79 : xStart= 603 xEnd= 634 yStart= 90 yEnd= 99 +LED 80 : xStart= 603 xEnd= 634 yStart= 80 yEnd= 90 +LED 81 : xStart= 603 xEnd= 634 yStart= 72 yEnd= 80 +LED 82 : xStart= 603 xEnd= 634 yStart= 62 yEnd= 72 +LED 83 : xStart= 603 xEnd= 634 yStart= 54 yEnd= 62 +LED 84 : xStart= 603 xEnd= 634 yStart= 45 yEnd= 54 +LED 85 : xStart= 603 xEnd= 634 yStart= 35 yEnd= 45 +LED 86 : xStart= 603 xEnd= 634 yStart= 27 yEnd= 35 +LED 87 : xStart= 603 xEnd= 634 yStart= 17 yEnd= 27 +LED 88 : xStart= 603 xEnd= 634 yStart= 9 yEnd= 17 +LED 89 : xStart= 603 xEnd= 634 yStart= 0 yEnd= 9 +LED 90 : xStart= 625 xEnd= 634 yStart= 0 yEnd= 9 +LED 91 : xStart= 616 xEnd= 625 yStart= 0 yEnd= 9 +LED 92 : xStart= 607 xEnd= 616 yStart= 0 yEnd= 9 +LED 93 : xStart= 598 xEnd= 607 yStart= 0 yEnd= 9 +LED 94 : xStart= 589 xEnd= 598 yStart= 0 yEnd= 9 +LED 95 : xStart= 580 xEnd= 589 yStart= 0 yEnd= 9 +LED 96 : xStart= 571 xEnd= 580 yStart= 0 yEnd= 9 +LED 97 : xStart= 562 xEnd= 571 yStart= 0 yEnd= 9 +LED 98 : xStart= 553 xEnd= 562 yStart= 0 yEnd= 9 +LED 99 : xStart= 544 xEnd= 553 yStart= 0 yEnd= 9 +LED 100 : xStart= 535 xEnd= 544 yStart= 0 yEnd= 9 +LED 101 : xStart= 526 xEnd= 535 yStart= 0 yEnd= 9 +LED 102 : xStart= 517 xEnd= 526 yStart= 0 yEnd= 9 +LED 103 : xStart= 508 xEnd= 517 yStart= 0 yEnd= 9 +LED 104 : xStart= 499 xEnd= 508 yStart= 0 yEnd= 9 +LED 105 : xStart= 490 xEnd= 499 yStart= 0 yEnd= 9 +LED 106 : xStart= 481 xEnd= 490 yStart= 0 yEnd= 9 +LED 107 : xStart= 472 xEnd= 481 yStart= 0 yEnd= 9 +LED 108 : xStart= 463 xEnd= 472 yStart= 0 yEnd= 9 +LED 109 : xStart= 454 xEnd= 463 yStart= 0 yEnd= 9 +LED 110 : xStart= 445 xEnd= 454 yStart= 0 yEnd= 9 +LED 111 : xStart= 436 xEnd= 445 yStart= 0 yEnd= 9 +LED 112 : xStart= 427 xEnd= 436 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 427 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 212 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 203 xEnd= 212 yStart= 0 yEnd= 9 +LED 138 : xStart= 194 xEnd= 203 yStart= 0 yEnd= 9 +LED 139 : xStart= 185 xEnd= 194 yStart= 0 yEnd= 9 +LED 140 : xStart= 176 xEnd= 185 yStart= 0 yEnd= 9 +LED 141 : xStart= 167 xEnd= 176 yStart= 0 yEnd= 9 +LED 142 : xStart= 158 xEnd= 167 yStart= 0 yEnd= 9 +LED 143 : xStart= 149 xEnd= 158 yStart= 0 yEnd= 9 +LED 144 : xStart= 140 xEnd= 149 yStart= 0 yEnd= 9 +LED 145 : xStart= 131 xEnd= 140 yStart= 0 yEnd= 9 +LED 146 : xStart= 122 xEnd= 131 yStart= 0 yEnd= 9 +LED 147 : xStart= 113 xEnd= 122 yStart= 0 yEnd= 9 +LED 148 : xStart= 104 xEnd= 113 yStart= 0 yEnd= 9 +LED 149 : xStart= 95 xEnd= 104 yStart= 0 yEnd= 9 +LED 150 : xStart= 86 xEnd= 95 yStart= 0 yEnd= 9 +LED 151 : xStart= 77 xEnd= 86 yStart= 0 yEnd= 9 +LED 152 : xStart= 68 xEnd= 77 yStart= 0 yEnd= 9 +LED 153 : xStart= 59 xEnd= 68 yStart= 0 yEnd= 9 +LED 154 : xStart= 50 xEnd= 59 yStart= 0 yEnd= 9 +LED 155 : xStart= 41 xEnd= 50 yStart= 0 yEnd= 9 +LED 156 : xStart= 32 xEnd= 41 yStart= 0 yEnd= 9 +LED 157 : xStart= 23 xEnd= 32 yStart= 0 yEnd= 9 +LED 158 : xStart= 14 xEnd= 23 yStart= 0 yEnd= 9 +LED 159 : xStart= 6 xEnd= 14 yStart= 0 yEnd= 9 +LED 160 : xStart= 6 xEnd= 37 yStart= 0 yEnd= 9 +LED 161 : xStart= 6 xEnd= 37 yStart= 9 yEnd= 18 +LED 162 : xStart= 6 xEnd= 37 yStart= 18 yEnd= 27 +LED 163 : xStart= 6 xEnd= 37 yStart= 27 yEnd= 36 +LED 164 : xStart= 6 xEnd= 37 yStart= 36 yEnd= 45 +LED 165 : xStart= 6 xEnd= 37 yStart= 45 yEnd= 54 +LED 166 : xStart= 6 xEnd= 37 yStart= 54 yEnd= 62 +LED 167 : xStart= 6 xEnd= 37 yStart= 62 yEnd= 72 +LED 168 : xStart= 6 xEnd= 37 yStart= 72 yEnd= 81 +LED 169 : xStart= 6 xEnd= 37 yStart= 81 yEnd= 90 +LED 170 : xStart= 6 xEnd= 37 yStart= 90 yEnd= 99 +LED 171 : xStart= 6 xEnd= 37 yStart= 99 yEnd= 108 +LED 172 : xStart= 6 xEnd= 37 yStart= 108 yEnd= 117 +LED 173 : xStart= 6 xEnd= 37 yStart= 117 yEnd= 125 +LED 174 : xStart= 6 xEnd= 37 yStart= 125 yEnd= 135 +LED 175 : xStart= 6 xEnd= 37 yStart= 135 yEnd= 144 +LED 176 : xStart= 6 xEnd= 37 yStart= 144 yEnd= 153 +LED 177 : xStart= 6 xEnd= 37 yStart= 153 yEnd= 162 +LED 178 : xStart= 6 xEnd= 37 yStart= 162 yEnd= 171 +LED 179 : xStart= 6 xEnd= 37 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#c4c3c3" + LED 1: "#cbcacb" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 4 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 4 border.horizontalSize= 0 +buildLedMap: contentWidth= 632 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 4 xEnd= 13 yStart= 171 yEnd= 180 +LED 1 : xStart= 13 xEnd= 22 yStart= 171 yEnd= 180 +LED 2 : xStart= 22 xEnd= 31 yStart= 171 yEnd= 180 +LED 3 : xStart= 31 xEnd= 40 yStart= 171 yEnd= 180 +LED 4 : xStart= 40 xEnd= 49 yStart= 171 yEnd= 180 +LED 5 : xStart= 49 xEnd= 58 yStart= 171 yEnd= 180 +LED 6 : xStart= 58 xEnd= 67 yStart= 171 yEnd= 180 +LED 7 : xStart= 67 xEnd= 76 yStart= 171 yEnd= 180 +LED 8 : xStart= 76 xEnd= 85 yStart= 171 yEnd= 180 +LED 9 : xStart= 85 xEnd= 94 yStart= 171 yEnd= 180 +LED 10 : xStart= 94 xEnd= 103 yStart= 171 yEnd= 180 +LED 11 : xStart= 103 xEnd= 112 yStart= 171 yEnd= 180 +LED 12 : xStart= 112 xEnd= 121 yStart= 171 yEnd= 180 +LED 13 : xStart= 121 xEnd= 130 yStart= 171 yEnd= 180 +LED 14 : xStart= 130 xEnd= 139 yStart= 171 yEnd= 180 +LED 15 : xStart= 139 xEnd= 148 yStart= 171 yEnd= 180 +LED 16 : xStart= 148 xEnd= 157 yStart= 171 yEnd= 180 +LED 17 : xStart= 157 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 482 yStart= 171 yEnd= 180 +LED 53 : xStart= 482 xEnd= 491 yStart= 171 yEnd= 180 +LED 54 : xStart= 491 xEnd= 500 yStart= 171 yEnd= 180 +LED 55 : xStart= 500 xEnd= 509 yStart= 171 yEnd= 180 +LED 56 : xStart= 509 xEnd= 518 yStart= 171 yEnd= 180 +LED 57 : xStart= 518 xEnd= 527 yStart= 171 yEnd= 180 +LED 58 : xStart= 527 xEnd= 536 yStart= 171 yEnd= 180 +LED 59 : xStart= 536 xEnd= 545 yStart= 171 yEnd= 180 +LED 60 : xStart= 545 xEnd= 554 yStart= 171 yEnd= 180 +LED 61 : xStart= 554 xEnd= 563 yStart= 171 yEnd= 180 +LED 62 : xStart= 563 xEnd= 572 yStart= 171 yEnd= 180 +LED 63 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 64 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 65 : xStart= 590 xEnd= 599 yStart= 171 yEnd= 180 +LED 66 : xStart= 599 xEnd= 608 yStart= 171 yEnd= 180 +LED 67 : xStart= 608 xEnd= 617 yStart= 171 yEnd= 180 +LED 68 : xStart= 617 xEnd= 626 yStart= 171 yEnd= 180 +LED 69 : xStart= 626 xEnd= 636 yStart= 171 yEnd= 180 +LED 70 : xStart= 605 xEnd= 636 yStart= 171 yEnd= 180 +LED 71 : xStart= 605 xEnd= 636 yStart= 162 yEnd= 171 +LED 72 : xStart= 605 xEnd= 636 yStart= 153 yEnd= 162 +LED 73 : xStart= 605 xEnd= 636 yStart= 144 yEnd= 153 +LED 74 : xStart= 605 xEnd= 636 yStart= 135 yEnd= 144 +LED 75 : xStart= 605 xEnd= 636 yStart= 125 yEnd= 135 +LED 76 : xStart= 605 xEnd= 636 yStart= 117 yEnd= 125 +LED 77 : xStart= 605 xEnd= 636 yStart= 108 yEnd= 117 +LED 78 : xStart= 605 xEnd= 636 yStart= 99 yEnd= 108 +LED 79 : xStart= 605 xEnd= 636 yStart= 90 yEnd= 99 +LED 80 : xStart= 605 xEnd= 636 yStart= 80 yEnd= 90 +LED 81 : xStart= 605 xEnd= 636 yStart= 72 yEnd= 80 +LED 82 : xStart= 605 xEnd= 636 yStart= 62 yEnd= 72 +LED 83 : xStart= 605 xEnd= 636 yStart= 54 yEnd= 62 +LED 84 : xStart= 605 xEnd= 636 yStart= 45 yEnd= 54 +LED 85 : xStart= 605 xEnd= 636 yStart= 35 yEnd= 45 +LED 86 : xStart= 605 xEnd= 636 yStart= 27 yEnd= 35 +LED 87 : xStart= 605 xEnd= 636 yStart= 17 yEnd= 27 +LED 88 : xStart= 605 xEnd= 636 yStart= 9 yEnd= 17 +LED 89 : xStart= 605 xEnd= 636 yStart= 0 yEnd= 9 +LED 90 : xStart= 626 xEnd= 636 yStart= 0 yEnd= 9 +LED 91 : xStart= 617 xEnd= 626 yStart= 0 yEnd= 9 +LED 92 : xStart= 608 xEnd= 617 yStart= 0 yEnd= 9 +LED 93 : xStart= 599 xEnd= 608 yStart= 0 yEnd= 9 +LED 94 : xStart= 590 xEnd= 599 yStart= 0 yEnd= 9 +LED 95 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 96 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 97 : xStart= 563 xEnd= 572 yStart= 0 yEnd= 9 +LED 98 : xStart= 554 xEnd= 563 yStart= 0 yEnd= 9 +LED 99 : xStart= 545 xEnd= 554 yStart= 0 yEnd= 9 +LED 100 : xStart= 536 xEnd= 545 yStart= 0 yEnd= 9 +LED 101 : xStart= 527 xEnd= 536 yStart= 0 yEnd= 9 +LED 102 : xStart= 518 xEnd= 527 yStart= 0 yEnd= 9 +LED 103 : xStart= 509 xEnd= 518 yStart= 0 yEnd= 9 +LED 104 : xStart= 500 xEnd= 509 yStart= 0 yEnd= 9 +LED 105 : xStart= 491 xEnd= 500 yStart= 0 yEnd= 9 +LED 106 : xStart= 482 xEnd= 491 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 482 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 157 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 148 xEnd= 157 yStart= 0 yEnd= 9 +LED 144 : xStart= 139 xEnd= 148 yStart= 0 yEnd= 9 +LED 145 : xStart= 130 xEnd= 139 yStart= 0 yEnd= 9 +LED 146 : xStart= 121 xEnd= 130 yStart= 0 yEnd= 9 +LED 147 : xStart= 112 xEnd= 121 yStart= 0 yEnd= 9 +LED 148 : xStart= 103 xEnd= 112 yStart= 0 yEnd= 9 +LED 149 : xStart= 94 xEnd= 103 yStart= 0 yEnd= 9 +LED 150 : xStart= 85 xEnd= 94 yStart= 0 yEnd= 9 +LED 151 : xStart= 76 xEnd= 85 yStart= 0 yEnd= 9 +LED 152 : xStart= 67 xEnd= 76 yStart= 0 yEnd= 9 +LED 153 : xStart= 58 xEnd= 67 yStart= 0 yEnd= 9 +LED 154 : xStart= 49 xEnd= 58 yStart= 0 yEnd= 9 +LED 155 : xStart= 40 xEnd= 49 yStart= 0 yEnd= 9 +LED 156 : xStart= 31 xEnd= 40 yStart= 0 yEnd= 9 +LED 157 : xStart= 22 xEnd= 31 yStart= 0 yEnd= 9 +LED 158 : xStart= 13 xEnd= 22 yStart= 0 yEnd= 9 +LED 159 : xStart= 4 xEnd= 13 yStart= 0 yEnd= 9 +LED 160 : xStart= 4 xEnd= 35 yStart= 0 yEnd= 9 +LED 161 : xStart= 4 xEnd= 35 yStart= 9 yEnd= 18 +LED 162 : xStart= 4 xEnd= 35 yStart= 18 yEnd= 27 +LED 163 : xStart= 4 xEnd= 35 yStart= 27 yEnd= 36 +LED 164 : xStart= 4 xEnd= 35 yStart= 36 yEnd= 45 +LED 165 : xStart= 4 xEnd= 35 yStart= 45 yEnd= 54 +LED 166 : xStart= 4 xEnd= 35 yStart= 54 yEnd= 62 +LED 167 : xStart= 4 xEnd= 35 yStart= 62 yEnd= 72 +LED 168 : xStart= 4 xEnd= 35 yStart= 72 yEnd= 81 +LED 169 : xStart= 4 xEnd= 35 yStart= 81 yEnd= 90 +LED 170 : xStart= 4 xEnd= 35 yStart= 90 yEnd= 99 +LED 171 : xStart= 4 xEnd= 35 yStart= 99 yEnd= 108 +LED 172 : xStart= 4 xEnd= 35 yStart= 108 yEnd= 117 +LED 173 : xStart= 4 xEnd= 35 yStart= 117 yEnd= 125 +LED 174 : xStart= 4 xEnd= 35 yStart= 125 yEnd= 135 +LED 175 : xStart= 4 xEnd= 35 yStart= 135 yEnd= 144 +LED 176 : xStart= 4 xEnd= 35 yStart= 144 yEnd= 153 +LED 177 : xStart= 4 xEnd= 35 yStart= 153 yEnd= 162 +LED 178 : xStart= 4 xEnd= 35 yStart= 162 yEnd= 171 +LED 179 : xStart= 4 xEnd= 35 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#c2c1c1" + LED 1: "#cdcdce" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 3 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 3 border.horizontalSize= 0 +buildLedMap: contentWidth= 634 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 3 xEnd= 12 yStart= 171 yEnd= 180 +LED 1 : xStart= 12 xEnd= 21 yStart= 171 yEnd= 180 +LED 2 : xStart= 21 xEnd= 30 yStart= 171 yEnd= 180 +LED 3 : xStart= 30 xEnd= 39 yStart= 171 yEnd= 180 +LED 4 : xStart= 39 xEnd= 48 yStart= 171 yEnd= 180 +LED 5 : xStart= 48 xEnd= 57 yStart= 171 yEnd= 180 +LED 6 : xStart= 57 xEnd= 66 yStart= 171 yEnd= 180 +LED 7 : xStart= 66 xEnd= 75 yStart= 171 yEnd= 180 +LED 8 : xStart= 75 xEnd= 84 yStart= 171 yEnd= 180 +LED 9 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 10 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 11 : xStart= 102 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 537 yStart= 171 yEnd= 180 +LED 59 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 60 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 61 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 62 : xStart= 564 xEnd= 573 yStart= 171 yEnd= 180 +LED 63 : xStart= 573 xEnd= 582 yStart= 171 yEnd= 180 +LED 64 : xStart= 582 xEnd= 591 yStart= 171 yEnd= 180 +LED 65 : xStart= 591 xEnd= 600 yStart= 171 yEnd= 180 +LED 66 : xStart= 600 xEnd= 609 yStart= 171 yEnd= 180 +LED 67 : xStart= 609 xEnd= 618 yStart= 171 yEnd= 180 +LED 68 : xStart= 618 xEnd= 627 yStart= 171 yEnd= 180 +LED 69 : xStart= 627 xEnd= 637 yStart= 171 yEnd= 180 +LED 70 : xStart= 606 xEnd= 637 yStart= 171 yEnd= 180 +LED 71 : xStart= 606 xEnd= 637 yStart= 162 yEnd= 171 +LED 72 : xStart= 606 xEnd= 637 yStart= 153 yEnd= 162 +LED 73 : xStart= 606 xEnd= 637 yStart= 144 yEnd= 153 +LED 74 : xStart= 606 xEnd= 637 yStart= 135 yEnd= 144 +LED 75 : xStart= 606 xEnd= 637 yStart= 125 yEnd= 135 +LED 76 : xStart= 606 xEnd= 637 yStart= 117 yEnd= 125 +LED 77 : xStart= 606 xEnd= 637 yStart= 108 yEnd= 117 +LED 78 : xStart= 606 xEnd= 637 yStart= 99 yEnd= 108 +LED 79 : xStart= 606 xEnd= 637 yStart= 90 yEnd= 99 +LED 80 : xStart= 606 xEnd= 637 yStart= 80 yEnd= 90 +LED 81 : xStart= 606 xEnd= 637 yStart= 72 yEnd= 80 +LED 82 : xStart= 606 xEnd= 637 yStart= 62 yEnd= 72 +LED 83 : xStart= 606 xEnd= 637 yStart= 54 yEnd= 62 +LED 84 : xStart= 606 xEnd= 637 yStart= 45 yEnd= 54 +LED 85 : xStart= 606 xEnd= 637 yStart= 35 yEnd= 45 +LED 86 : xStart= 606 xEnd= 637 yStart= 27 yEnd= 35 +LED 87 : xStart= 606 xEnd= 637 yStart= 17 yEnd= 27 +LED 88 : xStart= 606 xEnd= 637 yStart= 9 yEnd= 17 +LED 89 : xStart= 606 xEnd= 637 yStart= 0 yEnd= 9 +LED 90 : xStart= 627 xEnd= 637 yStart= 0 yEnd= 9 +LED 91 : xStart= 618 xEnd= 627 yStart= 0 yEnd= 9 +LED 92 : xStart= 609 xEnd= 618 yStart= 0 yEnd= 9 +LED 93 : xStart= 600 xEnd= 609 yStart= 0 yEnd= 9 +LED 94 : xStart= 591 xEnd= 600 yStart= 0 yEnd= 9 +LED 95 : xStart= 582 xEnd= 591 yStart= 0 yEnd= 9 +LED 96 : xStart= 573 xEnd= 582 yStart= 0 yEnd= 9 +LED 97 : xStart= 564 xEnd= 573 yStart= 0 yEnd= 9 +LED 98 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 99 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 100 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 537 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 102 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 150 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 151 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 152 : xStart= 66 xEnd= 75 yStart= 0 yEnd= 9 +LED 153 : xStart= 57 xEnd= 66 yStart= 0 yEnd= 9 +LED 154 : xStart= 48 xEnd= 57 yStart= 0 yEnd= 9 +LED 155 : xStart= 39 xEnd= 48 yStart= 0 yEnd= 9 +LED 156 : xStart= 30 xEnd= 39 yStart= 0 yEnd= 9 +LED 157 : xStart= 21 xEnd= 30 yStart= 0 yEnd= 9 +LED 158 : xStart= 12 xEnd= 21 yStart= 0 yEnd= 9 +LED 159 : xStart= 3 xEnd= 12 yStart= 0 yEnd= 9 +LED 160 : xStart= 3 xEnd= 34 yStart= 0 yEnd= 9 +LED 161 : xStart= 3 xEnd= 34 yStart= 9 yEnd= 18 +LED 162 : xStart= 3 xEnd= 34 yStart= 18 yEnd= 27 +LED 163 : xStart= 3 xEnd= 34 yStart= 27 yEnd= 36 +LED 164 : xStart= 3 xEnd= 34 yStart= 36 yEnd= 45 +LED 165 : xStart= 3 xEnd= 34 yStart= 45 yEnd= 54 +LED 166 : xStart= 3 xEnd= 34 yStart= 54 yEnd= 62 +LED 167 : xStart= 3 xEnd= 34 yStart= 62 yEnd= 72 +LED 168 : xStart= 3 xEnd= 34 yStart= 72 yEnd= 81 +LED 169 : xStart= 3 xEnd= 34 yStart= 81 yEnd= 90 +LED 170 : xStart= 3 xEnd= 34 yStart= 90 yEnd= 99 +LED 171 : xStart= 3 xEnd= 34 yStart= 99 yEnd= 108 +LED 172 : xStart= 3 xEnd= 34 yStart= 108 yEnd= 117 +LED 173 : xStart= 3 xEnd= 34 yStart= 117 yEnd= 125 +LED 174 : xStart= 3 xEnd= 34 yStart= 125 yEnd= 135 +LED 175 : xStart= 3 xEnd= 34 yStart= 135 yEnd= 144 +LED 176 : xStart= 3 xEnd= 34 yStart= 144 yEnd= 153 +LED 177 : xStart= 3 xEnd= 34 yStart= 153 yEnd= 162 +LED 178 : xStart= 3 xEnd= 34 yStart= 162 yEnd= 171 +LED 179 : xStart= 3 xEnd= 34 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#cececf" + LED 1: "#d0d0d1" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d3d3d4" + LED 1: "#d2d3d4" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d1d1d2" + LED 1: "#d4d5d7" + LED (bottom+1): "#6d6151" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#c9c8c9" + LED 1: "#d7d8da" + LED (bottom+1): "#9e988f" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d3d3d4" + LED 1: "#d9dadd" + LED (bottom+1): "#bfbcb9" + LED (bottom+right+1): "#393b37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dbdcdd" + LED 1: "#dcdddf" + LED (bottom+1): "#d3d3d2" + LED (bottom+right+1): "#383a38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#dededf" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e1e2" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dfe0e2" + LED 1: "#dddfe1" + LED (bottom+1): "#e1e2e3" + LED (bottom+right+1): "#383a39" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dddddf" + LED 1: "#dbdcde" + LED (bottom+1): "#dfdfe0" + LED (bottom+right+1): "#383939" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#dadbdd" + LED 1: "#d9dadc" + LED (bottom+1): "#ddddde" + LED (bottom+right+1): "#383939" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d9dadc" + LED 1: "#d7d8db" + LED (bottom+1): "#dcdcdc" + LED (bottom+right+1): "#383938" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#d3d3d4" + LED 1: "#d1d1d3" + LED (bottom+1): "#b4b0aa" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bebdbe" + LED 1: "#bdbdbe" + LED (bottom+1): "#c3c2bf" + LED (bottom+right+1): "#363738" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#716861" + LED 1: "#9a9694" + LED (bottom+1): "#71675a" + LED (bottom+right+1): "#3a3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#78716b" + LED (bottom+1): "#c6c4c2" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#594d43" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#392b1d" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#322315" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#312418" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#42372e" + LED 1: "#bfbdbd" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#493f37" + LED 1: "#bdbcbb" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#3e3329" + LED 1: "#bbb9b8" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#4c423a" + LED 1: "#bab8b7" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 7 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 7 border.horizontalSize= 0 +buildLedMap: contentWidth= 626 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 7 xEnd= 15 yStart= 171 yEnd= 180 +LED 1 : xStart= 15 xEnd= 24 yStart= 171 yEnd= 180 +LED 2 : xStart= 24 xEnd= 33 yStart= 171 yEnd= 180 +LED 3 : xStart= 33 xEnd= 42 yStart= 171 yEnd= 180 +LED 4 : xStart= 42 xEnd= 51 yStart= 171 yEnd= 180 +LED 5 : xStart= 51 xEnd= 60 yStart= 171 yEnd= 180 +LED 6 : xStart= 60 xEnd= 69 yStart= 171 yEnd= 180 +LED 7 : xStart= 69 xEnd= 78 yStart= 171 yEnd= 180 +LED 8 : xStart= 78 xEnd= 87 yStart= 171 yEnd= 180 +LED 9 : xStart= 87 xEnd= 96 yStart= 171 yEnd= 180 +LED 10 : xStart= 96 xEnd= 105 yStart= 171 yEnd= 180 +LED 11 : xStart= 105 xEnd= 114 yStart= 171 yEnd= 180 +LED 12 : xStart= 114 xEnd= 123 yStart= 171 yEnd= 180 +LED 13 : xStart= 123 xEnd= 132 yStart= 171 yEnd= 180 +LED 14 : xStart= 132 xEnd= 141 yStart= 171 yEnd= 180 +LED 15 : xStart= 141 xEnd= 150 yStart= 171 yEnd= 180 +LED 16 : xStart= 150 xEnd= 159 yStart= 171 yEnd= 180 +LED 17 : xStart= 159 xEnd= 167 yStart= 171 yEnd= 180 +LED 18 : xStart= 167 xEnd= 176 yStart= 171 yEnd= 180 +LED 19 : xStart= 176 xEnd= 185 yStart= 171 yEnd= 180 +LED 20 : xStart= 185 xEnd= 194 yStart= 171 yEnd= 180 +LED 21 : xStart= 194 xEnd= 203 yStart= 171 yEnd= 180 +LED 22 : xStart= 203 xEnd= 212 yStart= 171 yEnd= 180 +LED 23 : xStart= 212 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 427 yStart= 171 yEnd= 180 +LED 47 : xStart= 427 xEnd= 436 yStart= 171 yEnd= 180 +LED 48 : xStart= 436 xEnd= 445 yStart= 171 yEnd= 180 +LED 49 : xStart= 445 xEnd= 454 yStart= 171 yEnd= 180 +LED 50 : xStart= 454 xEnd= 463 yStart= 171 yEnd= 180 +LED 51 : xStart= 463 xEnd= 472 yStart= 171 yEnd= 180 +LED 52 : xStart= 472 xEnd= 480 yStart= 171 yEnd= 180 +LED 53 : xStart= 480 xEnd= 489 yStart= 171 yEnd= 180 +LED 54 : xStart= 489 xEnd= 498 yStart= 171 yEnd= 180 +LED 55 : xStart= 498 xEnd= 507 yStart= 171 yEnd= 180 +LED 56 : xStart= 507 xEnd= 516 yStart= 171 yEnd= 180 +LED 57 : xStart= 516 xEnd= 525 yStart= 171 yEnd= 180 +LED 58 : xStart= 525 xEnd= 534 yStart= 171 yEnd= 180 +LED 59 : xStart= 534 xEnd= 543 yStart= 171 yEnd= 180 +LED 60 : xStart= 543 xEnd= 552 yStart= 171 yEnd= 180 +LED 61 : xStart= 552 xEnd= 561 yStart= 171 yEnd= 180 +LED 62 : xStart= 561 xEnd= 570 yStart= 171 yEnd= 180 +LED 63 : xStart= 570 xEnd= 579 yStart= 171 yEnd= 180 +LED 64 : xStart= 579 xEnd= 588 yStart= 171 yEnd= 180 +LED 65 : xStart= 588 xEnd= 597 yStart= 171 yEnd= 180 +LED 66 : xStart= 597 xEnd= 606 yStart= 171 yEnd= 180 +LED 67 : xStart= 606 xEnd= 615 yStart= 171 yEnd= 180 +LED 68 : xStart= 615 xEnd= 624 yStart= 171 yEnd= 180 +LED 69 : xStart= 624 xEnd= 633 yStart= 171 yEnd= 180 +LED 70 : xStart= 602 xEnd= 633 yStart= 171 yEnd= 180 +LED 71 : xStart= 602 xEnd= 633 yStart= 162 yEnd= 171 +LED 72 : xStart= 602 xEnd= 633 yStart= 153 yEnd= 162 +LED 73 : xStart= 602 xEnd= 633 yStart= 144 yEnd= 153 +LED 74 : xStart= 602 xEnd= 633 yStart= 135 yEnd= 144 +LED 75 : xStart= 602 xEnd= 633 yStart= 125 yEnd= 135 +LED 76 : xStart= 602 xEnd= 633 yStart= 117 yEnd= 125 +LED 77 : xStart= 602 xEnd= 633 yStart= 108 yEnd= 117 +LED 78 : xStart= 602 xEnd= 633 yStart= 99 yEnd= 108 +LED 79 : xStart= 602 xEnd= 633 yStart= 90 yEnd= 99 +LED 80 : xStart= 602 xEnd= 633 yStart= 80 yEnd= 90 +LED 81 : xStart= 602 xEnd= 633 yStart= 72 yEnd= 80 +LED 82 : xStart= 602 xEnd= 633 yStart= 62 yEnd= 72 +LED 83 : xStart= 602 xEnd= 633 yStart= 54 yEnd= 62 +LED 84 : xStart= 602 xEnd= 633 yStart= 45 yEnd= 54 +LED 85 : xStart= 602 xEnd= 633 yStart= 35 yEnd= 45 +LED 86 : xStart= 602 xEnd= 633 yStart= 27 yEnd= 35 +LED 87 : xStart= 602 xEnd= 633 yStart= 17 yEnd= 27 +LED 88 : xStart= 602 xEnd= 633 yStart= 9 yEnd= 17 +LED 89 : xStart= 602 xEnd= 633 yStart= 0 yEnd= 9 +LED 90 : xStart= 624 xEnd= 633 yStart= 0 yEnd= 9 +LED 91 : xStart= 615 xEnd= 624 yStart= 0 yEnd= 9 +LED 92 : xStart= 606 xEnd= 615 yStart= 0 yEnd= 9 +LED 93 : xStart= 597 xEnd= 606 yStart= 0 yEnd= 9 +LED 94 : xStart= 588 xEnd= 597 yStart= 0 yEnd= 9 +LED 95 : xStart= 579 xEnd= 588 yStart= 0 yEnd= 9 +LED 96 : xStart= 570 xEnd= 579 yStart= 0 yEnd= 9 +LED 97 : xStart= 561 xEnd= 570 yStart= 0 yEnd= 9 +LED 98 : xStart= 552 xEnd= 561 yStart= 0 yEnd= 9 +LED 99 : xStart= 543 xEnd= 552 yStart= 0 yEnd= 9 +LED 100 : xStart= 534 xEnd= 543 yStart= 0 yEnd= 9 +LED 101 : xStart= 525 xEnd= 534 yStart= 0 yEnd= 9 +LED 102 : xStart= 516 xEnd= 525 yStart= 0 yEnd= 9 +LED 103 : xStart= 507 xEnd= 516 yStart= 0 yEnd= 9 +LED 104 : xStart= 498 xEnd= 507 yStart= 0 yEnd= 9 +LED 105 : xStart= 489 xEnd= 498 yStart= 0 yEnd= 9 +LED 106 : xStart= 480 xEnd= 489 yStart= 0 yEnd= 9 +LED 107 : xStart= 472 xEnd= 480 yStart= 0 yEnd= 9 +LED 108 : xStart= 463 xEnd= 472 yStart= 0 yEnd= 9 +LED 109 : xStart= 454 xEnd= 463 yStart= 0 yEnd= 9 +LED 110 : xStart= 445 xEnd= 454 yStart= 0 yEnd= 9 +LED 111 : xStart= 436 xEnd= 445 yStart= 0 yEnd= 9 +LED 112 : xStart= 427 xEnd= 436 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 427 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 212 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 203 xEnd= 212 yStart= 0 yEnd= 9 +LED 138 : xStart= 194 xEnd= 203 yStart= 0 yEnd= 9 +LED 139 : xStart= 185 xEnd= 194 yStart= 0 yEnd= 9 +LED 140 : xStart= 176 xEnd= 185 yStart= 0 yEnd= 9 +LED 141 : xStart= 167 xEnd= 176 yStart= 0 yEnd= 9 +LED 142 : xStart= 159 xEnd= 167 yStart= 0 yEnd= 9 +LED 143 : xStart= 150 xEnd= 159 yStart= 0 yEnd= 9 +LED 144 : xStart= 141 xEnd= 150 yStart= 0 yEnd= 9 +LED 145 : xStart= 132 xEnd= 141 yStart= 0 yEnd= 9 +LED 146 : xStart= 123 xEnd= 132 yStart= 0 yEnd= 9 +LED 147 : xStart= 114 xEnd= 123 yStart= 0 yEnd= 9 +LED 148 : xStart= 105 xEnd= 114 yStart= 0 yEnd= 9 +LED 149 : xStart= 96 xEnd= 105 yStart= 0 yEnd= 9 +LED 150 : xStart= 87 xEnd= 96 yStart= 0 yEnd= 9 +LED 151 : xStart= 78 xEnd= 87 yStart= 0 yEnd= 9 +LED 152 : xStart= 69 xEnd= 78 yStart= 0 yEnd= 9 +LED 153 : xStart= 60 xEnd= 69 yStart= 0 yEnd= 9 +LED 154 : xStart= 51 xEnd= 60 yStart= 0 yEnd= 9 +LED 155 : xStart= 42 xEnd= 51 yStart= 0 yEnd= 9 +LED 156 : xStart= 33 xEnd= 42 yStart= 0 yEnd= 9 +LED 157 : xStart= 24 xEnd= 33 yStart= 0 yEnd= 9 +LED 158 : xStart= 15 xEnd= 24 yStart= 0 yEnd= 9 +LED 159 : xStart= 7 xEnd= 15 yStart= 0 yEnd= 9 +LED 160 : xStart= 7 xEnd= 38 yStart= 0 yEnd= 9 +LED 161 : xStart= 7 xEnd= 38 yStart= 9 yEnd= 18 +LED 162 : xStart= 7 xEnd= 38 yStart= 18 yEnd= 27 +LED 163 : xStart= 7 xEnd= 38 yStart= 27 yEnd= 36 +LED 164 : xStart= 7 xEnd= 38 yStart= 36 yEnd= 45 +LED 165 : xStart= 7 xEnd= 38 yStart= 45 yEnd= 54 +LED 166 : xStart= 7 xEnd= 38 yStart= 54 yEnd= 62 +LED 167 : xStart= 7 xEnd= 38 yStart= 62 yEnd= 72 +LED 168 : xStart= 7 xEnd= 38 yStart= 72 yEnd= 81 +LED 169 : xStart= 7 xEnd= 38 yStart= 81 yEnd= 90 +LED 170 : xStart= 7 xEnd= 38 yStart= 90 yEnd= 99 +LED 171 : xStart= 7 xEnd= 38 yStart= 99 yEnd= 108 +LED 172 : xStart= 7 xEnd= 38 yStart= 108 yEnd= 117 +LED 173 : xStart= 7 xEnd= 38 yStart= 117 yEnd= 125 +LED 174 : xStart= 7 xEnd= 38 yStart= 125 yEnd= 135 +LED 175 : xStart= 7 xEnd= 38 yStart= 135 yEnd= 144 +LED 176 : xStart= 7 xEnd= 38 yStart= 144 yEnd= 153 +LED 177 : xStart= 7 xEnd= 38 yStart= 153 yEnd= 162 +LED 178 : xStart= 7 xEnd= 38 yStart= 162 yEnd= 171 +LED 179 : xStart= 7 xEnd= 38 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#645c55" + LED 1: "#b8b6b5" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3a3d36" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#635a53" + LED 1: "#b6b5b4" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#86807b" + LED 1: "#b2b1b2" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#aaabad" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#a9a9ab" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b1b0b1" + LED 1: "#aeadae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aeaeb0" + LED 1: "#b0afb0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aeadaf" + LED 1: "#b2b0b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aeadaf" + LED 1: "#b2b0b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aeadaf" + LED 1: "#b1b0b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aeaeaf" + LED 1: "#b1b0b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#afaeb0" + LED 1: "#b0afb0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#afafb0" + LED 1: "#afafaf" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b0afb0" + LED 1: "#aeaeaf" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b0afb0" + LED 1: "#aeaeaf" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#afafb0" + LED 1: "#afaeaf" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aeaeaf" + LED 1: "#b0afb0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#adacae" + LED 1: "#b2b0b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaaaac" + LED 1: "#b4b2b2" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaaaac" + LED 1: "#b5b4b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#ababac" + LED 1: "#b6b5b5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#afaeae" + LED 1: "#b3b2b2" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b1b0b0" + LED 1: "#b5b3b3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b4b3b3" + LED 1: "#b7b5b5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b4b2b2" + LED 1: "#b8b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b4b3" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b4b4" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b6b5" + LED 1: "#b7b5b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b4b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b3b0af" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#adaaa8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b3b2" + LED 1: "#b2afad" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a6a3a2" + LED 1: "#a4a2a1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#999796" + LED 1: "#969493" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#8e8c8c" + LED 1: "#7d7c7c" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a3a1a0" + LED 1: "#767575" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#848383" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#b2afae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b3b0af" + LED 1: "#b2afae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#b2b0ae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2afae" + LED 1: "#b2afae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2afae" + LED 1: "#b2afae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#b2afae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#b2b0ae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#b2b0ae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#b2afae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#b2b0ae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0af" + LED 1: "#b2b0ae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0af" + LED 1: "#b2b0ae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b3b0af" + LED 1: "#b2b0ae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b2b0" + LED 1: "#b4b1b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b3b1" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b6b3b1" + LED 1: "#b6b3b1" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b1afad" + LED 1: "#b2b0ae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b0aeac" + LED 1: "#b2afad" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#afadaa" + LED 1: "#b1aeac" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#adaba9" + LED 1: "#afacab" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa8a6" + LED 1: "#aca9a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a6a5" + LED 1: "#aba8a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aaa7a5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aaa7a5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aaa7a5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aaa7a5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aaa7a5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aaa7a5" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa8a6" + LED 1: "#aaa8a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#acaaa8" + LED 1: "#aca9a8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#afadab" + LED 1: "#afadab" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#adabab" + LED 1: "#aeacab" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#acacad" + LED 1: "#aeadad" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b0b0b1" + LED 1: "#b2b1b2" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b1b2" + LED 1: "#b1b1b2" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#bab8b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b8b5b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab8b7" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab8b7" + LED 1: "#b8b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a5a2a0" + LED 1: "#b9b8b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 4 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 4 border.horizontalSize= 0 +buildLedMap: contentWidth= 632 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 4 xEnd= 13 yStart= 171 yEnd= 180 +LED 1 : xStart= 13 xEnd= 22 yStart= 171 yEnd= 180 +LED 2 : xStart= 22 xEnd= 31 yStart= 171 yEnd= 180 +LED 3 : xStart= 31 xEnd= 40 yStart= 171 yEnd= 180 +LED 4 : xStart= 40 xEnd= 49 yStart= 171 yEnd= 180 +LED 5 : xStart= 49 xEnd= 58 yStart= 171 yEnd= 180 +LED 6 : xStart= 58 xEnd= 67 yStart= 171 yEnd= 180 +LED 7 : xStart= 67 xEnd= 76 yStart= 171 yEnd= 180 +LED 8 : xStart= 76 xEnd= 85 yStart= 171 yEnd= 180 +LED 9 : xStart= 85 xEnd= 94 yStart= 171 yEnd= 180 +LED 10 : xStart= 94 xEnd= 103 yStart= 171 yEnd= 180 +LED 11 : xStart= 103 xEnd= 112 yStart= 171 yEnd= 180 +LED 12 : xStart= 112 xEnd= 121 yStart= 171 yEnd= 180 +LED 13 : xStart= 121 xEnd= 130 yStart= 171 yEnd= 180 +LED 14 : xStart= 130 xEnd= 139 yStart= 171 yEnd= 180 +LED 15 : xStart= 139 xEnd= 148 yStart= 171 yEnd= 180 +LED 16 : xStart= 148 xEnd= 157 yStart= 171 yEnd= 180 +LED 17 : xStart= 157 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 482 yStart= 171 yEnd= 180 +LED 53 : xStart= 482 xEnd= 491 yStart= 171 yEnd= 180 +LED 54 : xStart= 491 xEnd= 500 yStart= 171 yEnd= 180 +LED 55 : xStart= 500 xEnd= 509 yStart= 171 yEnd= 180 +LED 56 : xStart= 509 xEnd= 518 yStart= 171 yEnd= 180 +LED 57 : xStart= 518 xEnd= 527 yStart= 171 yEnd= 180 +LED 58 : xStart= 527 xEnd= 536 yStart= 171 yEnd= 180 +LED 59 : xStart= 536 xEnd= 545 yStart= 171 yEnd= 180 +LED 60 : xStart= 545 xEnd= 554 yStart= 171 yEnd= 180 +LED 61 : xStart= 554 xEnd= 563 yStart= 171 yEnd= 180 +LED 62 : xStart= 563 xEnd= 572 yStart= 171 yEnd= 180 +LED 63 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 64 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 65 : xStart= 590 xEnd= 599 yStart= 171 yEnd= 180 +LED 66 : xStart= 599 xEnd= 608 yStart= 171 yEnd= 180 +LED 67 : xStart= 608 xEnd= 617 yStart= 171 yEnd= 180 +LED 68 : xStart= 617 xEnd= 626 yStart= 171 yEnd= 180 +LED 69 : xStart= 626 xEnd= 636 yStart= 171 yEnd= 180 +LED 70 : xStart= 605 xEnd= 636 yStart= 171 yEnd= 180 +LED 71 : xStart= 605 xEnd= 636 yStart= 162 yEnd= 171 +LED 72 : xStart= 605 xEnd= 636 yStart= 153 yEnd= 162 +LED 73 : xStart= 605 xEnd= 636 yStart= 144 yEnd= 153 +LED 74 : xStart= 605 xEnd= 636 yStart= 135 yEnd= 144 +LED 75 : xStart= 605 xEnd= 636 yStart= 125 yEnd= 135 +LED 76 : xStart= 605 xEnd= 636 yStart= 117 yEnd= 125 +LED 77 : xStart= 605 xEnd= 636 yStart= 108 yEnd= 117 +LED 78 : xStart= 605 xEnd= 636 yStart= 99 yEnd= 108 +LED 79 : xStart= 605 xEnd= 636 yStart= 90 yEnd= 99 +LED 80 : xStart= 605 xEnd= 636 yStart= 80 yEnd= 90 +LED 81 : xStart= 605 xEnd= 636 yStart= 72 yEnd= 80 +LED 82 : xStart= 605 xEnd= 636 yStart= 62 yEnd= 72 +LED 83 : xStart= 605 xEnd= 636 yStart= 54 yEnd= 62 +LED 84 : xStart= 605 xEnd= 636 yStart= 45 yEnd= 54 +LED 85 : xStart= 605 xEnd= 636 yStart= 35 yEnd= 45 +LED 86 : xStart= 605 xEnd= 636 yStart= 27 yEnd= 35 +LED 87 : xStart= 605 xEnd= 636 yStart= 17 yEnd= 27 +LED 88 : xStart= 605 xEnd= 636 yStart= 9 yEnd= 17 +LED 89 : xStart= 605 xEnd= 636 yStart= 0 yEnd= 9 +LED 90 : xStart= 626 xEnd= 636 yStart= 0 yEnd= 9 +LED 91 : xStart= 617 xEnd= 626 yStart= 0 yEnd= 9 +LED 92 : xStart= 608 xEnd= 617 yStart= 0 yEnd= 9 +LED 93 : xStart= 599 xEnd= 608 yStart= 0 yEnd= 9 +LED 94 : xStart= 590 xEnd= 599 yStart= 0 yEnd= 9 +LED 95 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 96 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 97 : xStart= 563 xEnd= 572 yStart= 0 yEnd= 9 +LED 98 : xStart= 554 xEnd= 563 yStart= 0 yEnd= 9 +LED 99 : xStart= 545 xEnd= 554 yStart= 0 yEnd= 9 +LED 100 : xStart= 536 xEnd= 545 yStart= 0 yEnd= 9 +LED 101 : xStart= 527 xEnd= 536 yStart= 0 yEnd= 9 +LED 102 : xStart= 518 xEnd= 527 yStart= 0 yEnd= 9 +LED 103 : xStart= 509 xEnd= 518 yStart= 0 yEnd= 9 +LED 104 : xStart= 500 xEnd= 509 yStart= 0 yEnd= 9 +LED 105 : xStart= 491 xEnd= 500 yStart= 0 yEnd= 9 +LED 106 : xStart= 482 xEnd= 491 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 482 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 157 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 148 xEnd= 157 yStart= 0 yEnd= 9 +LED 144 : xStart= 139 xEnd= 148 yStart= 0 yEnd= 9 +LED 145 : xStart= 130 xEnd= 139 yStart= 0 yEnd= 9 +LED 146 : xStart= 121 xEnd= 130 yStart= 0 yEnd= 9 +LED 147 : xStart= 112 xEnd= 121 yStart= 0 yEnd= 9 +LED 148 : xStart= 103 xEnd= 112 yStart= 0 yEnd= 9 +LED 149 : xStart= 94 xEnd= 103 yStart= 0 yEnd= 9 +LED 150 : xStart= 85 xEnd= 94 yStart= 0 yEnd= 9 +LED 151 : xStart= 76 xEnd= 85 yStart= 0 yEnd= 9 +LED 152 : xStart= 67 xEnd= 76 yStart= 0 yEnd= 9 +LED 153 : xStart= 58 xEnd= 67 yStart= 0 yEnd= 9 +LED 154 : xStart= 49 xEnd= 58 yStart= 0 yEnd= 9 +LED 155 : xStart= 40 xEnd= 49 yStart= 0 yEnd= 9 +LED 156 : xStart= 31 xEnd= 40 yStart= 0 yEnd= 9 +LED 157 : xStart= 22 xEnd= 31 yStart= 0 yEnd= 9 +LED 158 : xStart= 13 xEnd= 22 yStart= 0 yEnd= 9 +LED 159 : xStart= 4 xEnd= 13 yStart= 0 yEnd= 9 +LED 160 : xStart= 4 xEnd= 35 yStart= 0 yEnd= 9 +LED 161 : xStart= 4 xEnd= 35 yStart= 9 yEnd= 18 +LED 162 : xStart= 4 xEnd= 35 yStart= 18 yEnd= 27 +LED 163 : xStart= 4 xEnd= 35 yStart= 27 yEnd= 36 +LED 164 : xStart= 4 xEnd= 35 yStart= 36 yEnd= 45 +LED 165 : xStart= 4 xEnd= 35 yStart= 45 yEnd= 54 +LED 166 : xStart= 4 xEnd= 35 yStart= 54 yEnd= 62 +LED 167 : xStart= 4 xEnd= 35 yStart= 62 yEnd= 72 +LED 168 : xStart= 4 xEnd= 35 yStart= 72 yEnd= 81 +LED 169 : xStart= 4 xEnd= 35 yStart= 81 yEnd= 90 +LED 170 : xStart= 4 xEnd= 35 yStart= 90 yEnd= 99 +LED 171 : xStart= 4 xEnd= 35 yStart= 99 yEnd= 108 +LED 172 : xStart= 4 xEnd= 35 yStart= 108 yEnd= 117 +LED 173 : xStart= 4 xEnd= 35 yStart= 117 yEnd= 125 +LED 174 : xStart= 4 xEnd= 35 yStart= 125 yEnd= 135 +LED 175 : xStart= 4 xEnd= 35 yStart= 135 yEnd= 144 +LED 176 : xStart= 4 xEnd= 35 yStart= 144 yEnd= 153 +LED 177 : xStart= 4 xEnd= 35 yStart= 153 yEnd= 162 +LED 178 : xStart= 4 xEnd= 35 yStart= 162 yEnd= 171 +LED 179 : xStart= 4 xEnd= 35 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a4a19f" + LED 1: "#bab8b7" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 5 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 5 border.horizontalSize= 0 +buildLedMap: contentWidth= 630 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 5 xEnd= 14 yStart= 171 yEnd= 180 +LED 1 : xStart= 14 xEnd= 23 yStart= 171 yEnd= 180 +LED 2 : xStart= 23 xEnd= 32 yStart= 171 yEnd= 180 +LED 3 : xStart= 32 xEnd= 41 yStart= 171 yEnd= 180 +LED 4 : xStart= 41 xEnd= 50 yStart= 171 yEnd= 180 +LED 5 : xStart= 50 xEnd= 59 yStart= 171 yEnd= 180 +LED 6 : xStart= 59 xEnd= 68 yStart= 171 yEnd= 180 +LED 7 : xStart= 68 xEnd= 77 yStart= 171 yEnd= 180 +LED 8 : xStart= 77 xEnd= 85 yStart= 171 yEnd= 180 +LED 9 : xStart= 85 xEnd= 95 yStart= 171 yEnd= 180 +LED 10 : xStart= 95 xEnd= 104 yStart= 171 yEnd= 180 +LED 11 : xStart= 104 xEnd= 113 yStart= 171 yEnd= 180 +LED 12 : xStart= 113 xEnd= 122 yStart= 171 yEnd= 180 +LED 13 : xStart= 122 xEnd= 131 yStart= 171 yEnd= 180 +LED 14 : xStart= 131 xEnd= 140 yStart= 171 yEnd= 180 +LED 15 : xStart= 140 xEnd= 149 yStart= 171 yEnd= 180 +LED 16 : xStart= 149 xEnd= 158 yStart= 171 yEnd= 180 +LED 17 : xStart= 158 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 176 yStart= 171 yEnd= 180 +LED 19 : xStart= 176 xEnd= 185 yStart= 171 yEnd= 180 +LED 20 : xStart= 185 xEnd= 194 yStart= 171 yEnd= 180 +LED 21 : xStart= 194 xEnd= 203 yStart= 171 yEnd= 180 +LED 22 : xStart= 203 xEnd= 212 yStart= 171 yEnd= 180 +LED 23 : xStart= 212 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 427 yStart= 171 yEnd= 180 +LED 47 : xStart= 427 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 482 yStart= 171 yEnd= 180 +LED 53 : xStart= 482 xEnd= 491 yStart= 171 yEnd= 180 +LED 54 : xStart= 491 xEnd= 500 yStart= 171 yEnd= 180 +LED 55 : xStart= 500 xEnd= 509 yStart= 171 yEnd= 180 +LED 56 : xStart= 509 xEnd= 518 yStart= 171 yEnd= 180 +LED 57 : xStart= 518 xEnd= 527 yStart= 171 yEnd= 180 +LED 58 : xStart= 527 xEnd= 536 yStart= 171 yEnd= 180 +LED 59 : xStart= 536 xEnd= 545 yStart= 171 yEnd= 180 +LED 60 : xStart= 545 xEnd= 554 yStart= 171 yEnd= 180 +LED 61 : xStart= 554 xEnd= 563 yStart= 171 yEnd= 180 +LED 62 : xStart= 563 xEnd= 572 yStart= 171 yEnd= 180 +LED 63 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 64 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 65 : xStart= 590 xEnd= 599 yStart= 171 yEnd= 180 +LED 66 : xStart= 599 xEnd= 608 yStart= 171 yEnd= 180 +LED 67 : xStart= 608 xEnd= 617 yStart= 171 yEnd= 180 +LED 68 : xStart= 617 xEnd= 626 yStart= 171 yEnd= 180 +LED 69 : xStart= 626 xEnd= 635 yStart= 171 yEnd= 180 +LED 70 : xStart= 604 xEnd= 635 yStart= 171 yEnd= 180 +LED 71 : xStart= 604 xEnd= 635 yStart= 162 yEnd= 171 +LED 72 : xStart= 604 xEnd= 635 yStart= 153 yEnd= 162 +LED 73 : xStart= 604 xEnd= 635 yStart= 144 yEnd= 153 +LED 74 : xStart= 604 xEnd= 635 yStart= 135 yEnd= 144 +LED 75 : xStart= 604 xEnd= 635 yStart= 125 yEnd= 135 +LED 76 : xStart= 604 xEnd= 635 yStart= 117 yEnd= 125 +LED 77 : xStart= 604 xEnd= 635 yStart= 108 yEnd= 117 +LED 78 : xStart= 604 xEnd= 635 yStart= 99 yEnd= 108 +LED 79 : xStart= 604 xEnd= 635 yStart= 90 yEnd= 99 +LED 80 : xStart= 604 xEnd= 635 yStart= 80 yEnd= 90 +LED 81 : xStart= 604 xEnd= 635 yStart= 72 yEnd= 80 +LED 82 : xStart= 604 xEnd= 635 yStart= 62 yEnd= 72 +LED 83 : xStart= 604 xEnd= 635 yStart= 54 yEnd= 62 +LED 84 : xStart= 604 xEnd= 635 yStart= 45 yEnd= 54 +LED 85 : xStart= 604 xEnd= 635 yStart= 35 yEnd= 45 +LED 86 : xStart= 604 xEnd= 635 yStart= 27 yEnd= 35 +LED 87 : xStart= 604 xEnd= 635 yStart= 17 yEnd= 27 +LED 88 : xStart= 604 xEnd= 635 yStart= 9 yEnd= 17 +LED 89 : xStart= 604 xEnd= 635 yStart= 0 yEnd= 9 +LED 90 : xStart= 626 xEnd= 635 yStart= 0 yEnd= 9 +LED 91 : xStart= 617 xEnd= 626 yStart= 0 yEnd= 9 +LED 92 : xStart= 608 xEnd= 617 yStart= 0 yEnd= 9 +LED 93 : xStart= 599 xEnd= 608 yStart= 0 yEnd= 9 +LED 94 : xStart= 590 xEnd= 599 yStart= 0 yEnd= 9 +LED 95 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 96 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 97 : xStart= 563 xEnd= 572 yStart= 0 yEnd= 9 +LED 98 : xStart= 554 xEnd= 563 yStart= 0 yEnd= 9 +LED 99 : xStart= 545 xEnd= 554 yStart= 0 yEnd= 9 +LED 100 : xStart= 536 xEnd= 545 yStart= 0 yEnd= 9 +LED 101 : xStart= 527 xEnd= 536 yStart= 0 yEnd= 9 +LED 102 : xStart= 518 xEnd= 527 yStart= 0 yEnd= 9 +LED 103 : xStart= 509 xEnd= 518 yStart= 0 yEnd= 9 +LED 104 : xStart= 500 xEnd= 509 yStart= 0 yEnd= 9 +LED 105 : xStart= 491 xEnd= 500 yStart= 0 yEnd= 9 +LED 106 : xStart= 482 xEnd= 491 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 482 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 212 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 203 xEnd= 212 yStart= 0 yEnd= 9 +LED 138 : xStart= 194 xEnd= 203 yStart= 0 yEnd= 9 +LED 139 : xStart= 185 xEnd= 194 yStart= 0 yEnd= 9 +LED 140 : xStart= 176 xEnd= 185 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 176 yStart= 0 yEnd= 9 +LED 142 : xStart= 158 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 148 xEnd= 158 yStart= 0 yEnd= 9 +LED 144 : xStart= 140 xEnd= 148 yStart= 0 yEnd= 9 +LED 145 : xStart= 130 xEnd= 140 yStart= 0 yEnd= 9 +LED 146 : xStart= 122 xEnd= 130 yStart= 0 yEnd= 9 +LED 147 : xStart= 112 xEnd= 122 yStart= 0 yEnd= 9 +LED 148 : xStart= 104 xEnd= 112 yStart= 0 yEnd= 9 +LED 149 : xStart= 95 xEnd= 104 yStart= 0 yEnd= 9 +LED 150 : xStart= 85 xEnd= 95 yStart= 0 yEnd= 9 +LED 151 : xStart= 77 xEnd= 85 yStart= 0 yEnd= 9 +LED 152 : xStart= 67 xEnd= 77 yStart= 0 yEnd= 9 +LED 153 : xStart= 59 xEnd= 67 yStart= 0 yEnd= 9 +LED 154 : xStart= 49 xEnd= 59 yStart= 0 yEnd= 9 +LED 155 : xStart= 41 xEnd= 49 yStart= 0 yEnd= 9 +LED 156 : xStart= 31 xEnd= 41 yStart= 0 yEnd= 9 +LED 157 : xStart= 23 xEnd= 31 yStart= 0 yEnd= 9 +LED 158 : xStart= 13 xEnd= 23 yStart= 0 yEnd= 9 +LED 159 : xStart= 5 xEnd= 13 yStart= 0 yEnd= 9 +LED 160 : xStart= 5 xEnd= 36 yStart= 0 yEnd= 9 +LED 161 : xStart= 5 xEnd= 36 yStart= 9 yEnd= 18 +LED 162 : xStart= 5 xEnd= 36 yStart= 18 yEnd= 27 +LED 163 : xStart= 5 xEnd= 36 yStart= 27 yEnd= 36 +LED 164 : xStart= 5 xEnd= 36 yStart= 36 yEnd= 45 +LED 165 : xStart= 5 xEnd= 36 yStart= 45 yEnd= 54 +LED 166 : xStart= 5 xEnd= 36 yStart= 54 yEnd= 62 +LED 167 : xStart= 5 xEnd= 36 yStart= 62 yEnd= 72 +LED 168 : xStart= 5 xEnd= 36 yStart= 72 yEnd= 81 +LED 169 : xStart= 5 xEnd= 36 yStart= 81 yEnd= 90 +LED 170 : xStart= 5 xEnd= 36 yStart= 90 yEnd= 99 +LED 171 : xStart= 5 xEnd= 36 yStart= 99 yEnd= 108 +LED 172 : xStart= 5 xEnd= 36 yStart= 108 yEnd= 117 +LED 173 : xStart= 5 xEnd= 36 yStart= 117 yEnd= 125 +LED 174 : xStart= 5 xEnd= 36 yStart= 125 yEnd= 135 +LED 175 : xStart= 5 xEnd= 36 yStart= 135 yEnd= 144 +LED 176 : xStart= 5 xEnd= 36 yStart= 144 yEnd= 153 +LED 177 : xStart= 5 xEnd= 36 yStart= 153 yEnd= 162 +LED 178 : xStart= 5 xEnd= 36 yStart= 162 yEnd= 171 +LED 179 : xStart= 5 xEnd= 36 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a29e9d" + LED 1: "#bab8b7" + LED (bottom+1): "#402f17" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#9f9c9a" + LED 1: "#bab8b7" + LED (bottom+1): "#402f17" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 4 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 4 border.horizontalSize= 0 +buildLedMap: contentWidth= 632 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 4 xEnd= 13 yStart= 171 yEnd= 180 +LED 1 : xStart= 13 xEnd= 22 yStart= 171 yEnd= 180 +LED 2 : xStart= 22 xEnd= 31 yStart= 171 yEnd= 180 +LED 3 : xStart= 31 xEnd= 40 yStart= 171 yEnd= 180 +LED 4 : xStart= 40 xEnd= 49 yStart= 171 yEnd= 180 +LED 5 : xStart= 49 xEnd= 58 yStart= 171 yEnd= 180 +LED 6 : xStart= 58 xEnd= 67 yStart= 171 yEnd= 180 +LED 7 : xStart= 67 xEnd= 76 yStart= 171 yEnd= 180 +LED 8 : xStart= 76 xEnd= 85 yStart= 171 yEnd= 180 +LED 9 : xStart= 85 xEnd= 94 yStart= 171 yEnd= 180 +LED 10 : xStart= 94 xEnd= 103 yStart= 171 yEnd= 180 +LED 11 : xStart= 103 xEnd= 112 yStart= 171 yEnd= 180 +LED 12 : xStart= 112 xEnd= 121 yStart= 171 yEnd= 180 +LED 13 : xStart= 121 xEnd= 130 yStart= 171 yEnd= 180 +LED 14 : xStart= 130 xEnd= 139 yStart= 171 yEnd= 180 +LED 15 : xStart= 139 xEnd= 148 yStart= 171 yEnd= 180 +LED 16 : xStart= 148 xEnd= 157 yStart= 171 yEnd= 180 +LED 17 : xStart= 157 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 482 yStart= 171 yEnd= 180 +LED 53 : xStart= 482 xEnd= 491 yStart= 171 yEnd= 180 +LED 54 : xStart= 491 xEnd= 500 yStart= 171 yEnd= 180 +LED 55 : xStart= 500 xEnd= 509 yStart= 171 yEnd= 180 +LED 56 : xStart= 509 xEnd= 518 yStart= 171 yEnd= 180 +LED 57 : xStart= 518 xEnd= 527 yStart= 171 yEnd= 180 +LED 58 : xStart= 527 xEnd= 536 yStart= 171 yEnd= 180 +LED 59 : xStart= 536 xEnd= 545 yStart= 171 yEnd= 180 +LED 60 : xStart= 545 xEnd= 554 yStart= 171 yEnd= 180 +LED 61 : xStart= 554 xEnd= 563 yStart= 171 yEnd= 180 +LED 62 : xStart= 563 xEnd= 572 yStart= 171 yEnd= 180 +LED 63 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 64 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 65 : xStart= 590 xEnd= 599 yStart= 171 yEnd= 180 +LED 66 : xStart= 599 xEnd= 608 yStart= 171 yEnd= 180 +LED 67 : xStart= 608 xEnd= 617 yStart= 171 yEnd= 180 +LED 68 : xStart= 617 xEnd= 626 yStart= 171 yEnd= 180 +LED 69 : xStart= 626 xEnd= 636 yStart= 171 yEnd= 180 +LED 70 : xStart= 605 xEnd= 636 yStart= 171 yEnd= 180 +LED 71 : xStart= 605 xEnd= 636 yStart= 162 yEnd= 171 +LED 72 : xStart= 605 xEnd= 636 yStart= 153 yEnd= 162 +LED 73 : xStart= 605 xEnd= 636 yStart= 144 yEnd= 153 +LED 74 : xStart= 605 xEnd= 636 yStart= 135 yEnd= 144 +LED 75 : xStart= 605 xEnd= 636 yStart= 125 yEnd= 135 +LED 76 : xStart= 605 xEnd= 636 yStart= 117 yEnd= 125 +LED 77 : xStart= 605 xEnd= 636 yStart= 108 yEnd= 117 +LED 78 : xStart= 605 xEnd= 636 yStart= 99 yEnd= 108 +LED 79 : xStart= 605 xEnd= 636 yStart= 90 yEnd= 99 +LED 80 : xStart= 605 xEnd= 636 yStart= 80 yEnd= 90 +LED 81 : xStart= 605 xEnd= 636 yStart= 72 yEnd= 80 +LED 82 : xStart= 605 xEnd= 636 yStart= 62 yEnd= 72 +LED 83 : xStart= 605 xEnd= 636 yStart= 54 yEnd= 62 +LED 84 : xStart= 605 xEnd= 636 yStart= 45 yEnd= 54 +LED 85 : xStart= 605 xEnd= 636 yStart= 35 yEnd= 45 +LED 86 : xStart= 605 xEnd= 636 yStart= 27 yEnd= 35 +LED 87 : xStart= 605 xEnd= 636 yStart= 17 yEnd= 27 +LED 88 : xStart= 605 xEnd= 636 yStart= 9 yEnd= 17 +LED 89 : xStart= 605 xEnd= 636 yStart= 0 yEnd= 9 +LED 90 : xStart= 626 xEnd= 636 yStart= 0 yEnd= 9 +LED 91 : xStart= 617 xEnd= 626 yStart= 0 yEnd= 9 +LED 92 : xStart= 608 xEnd= 617 yStart= 0 yEnd= 9 +LED 93 : xStart= 599 xEnd= 608 yStart= 0 yEnd= 9 +LED 94 : xStart= 590 xEnd= 599 yStart= 0 yEnd= 9 +LED 95 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 96 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 97 : xStart= 563 xEnd= 572 yStart= 0 yEnd= 9 +LED 98 : xStart= 554 xEnd= 563 yStart= 0 yEnd= 9 +LED 99 : xStart= 545 xEnd= 554 yStart= 0 yEnd= 9 +LED 100 : xStart= 536 xEnd= 545 yStart= 0 yEnd= 9 +LED 101 : xStart= 527 xEnd= 536 yStart= 0 yEnd= 9 +LED 102 : xStart= 518 xEnd= 527 yStart= 0 yEnd= 9 +LED 103 : xStart= 509 xEnd= 518 yStart= 0 yEnd= 9 +LED 104 : xStart= 500 xEnd= 509 yStart= 0 yEnd= 9 +LED 105 : xStart= 491 xEnd= 500 yStart= 0 yEnd= 9 +LED 106 : xStart= 482 xEnd= 491 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 482 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 157 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 148 xEnd= 157 yStart= 0 yEnd= 9 +LED 144 : xStart= 139 xEnd= 148 yStart= 0 yEnd= 9 +LED 145 : xStart= 130 xEnd= 139 yStart= 0 yEnd= 9 +LED 146 : xStart= 121 xEnd= 130 yStart= 0 yEnd= 9 +LED 147 : xStart= 112 xEnd= 121 yStart= 0 yEnd= 9 +LED 148 : xStart= 103 xEnd= 112 yStart= 0 yEnd= 9 +LED 149 : xStart= 94 xEnd= 103 yStart= 0 yEnd= 9 +LED 150 : xStart= 85 xEnd= 94 yStart= 0 yEnd= 9 +LED 151 : xStart= 76 xEnd= 85 yStart= 0 yEnd= 9 +LED 152 : xStart= 67 xEnd= 76 yStart= 0 yEnd= 9 +LED 153 : xStart= 58 xEnd= 67 yStart= 0 yEnd= 9 +LED 154 : xStart= 49 xEnd= 58 yStart= 0 yEnd= 9 +LED 155 : xStart= 40 xEnd= 49 yStart= 0 yEnd= 9 +LED 156 : xStart= 31 xEnd= 40 yStart= 0 yEnd= 9 +LED 157 : xStart= 22 xEnd= 31 yStart= 0 yEnd= 9 +LED 158 : xStart= 13 xEnd= 22 yStart= 0 yEnd= 9 +LED 159 : xStart= 4 xEnd= 13 yStart= 0 yEnd= 9 +LED 160 : xStart= 4 xEnd= 35 yStart= 0 yEnd= 9 +LED 161 : xStart= 4 xEnd= 35 yStart= 9 yEnd= 18 +LED 162 : xStart= 4 xEnd= 35 yStart= 18 yEnd= 27 +LED 163 : xStart= 4 xEnd= 35 yStart= 27 yEnd= 36 +LED 164 : xStart= 4 xEnd= 35 yStart= 36 yEnd= 45 +LED 165 : xStart= 4 xEnd= 35 yStart= 45 yEnd= 54 +LED 166 : xStart= 4 xEnd= 35 yStart= 54 yEnd= 62 +LED 167 : xStart= 4 xEnd= 35 yStart= 62 yEnd= 72 +LED 168 : xStart= 4 xEnd= 35 yStart= 72 yEnd= 81 +LED 169 : xStart= 4 xEnd= 35 yStart= 81 yEnd= 90 +LED 170 : xStart= 4 xEnd= 35 yStart= 90 yEnd= 99 +LED 171 : xStart= 4 xEnd= 35 yStart= 99 yEnd= 108 +LED 172 : xStart= 4 xEnd= 35 yStart= 108 yEnd= 117 +LED 173 : xStart= 4 xEnd= 35 yStart= 117 yEnd= 125 +LED 174 : xStart= 4 xEnd= 35 yStart= 125 yEnd= 135 +LED 175 : xStart= 4 xEnd= 35 yStart= 135 yEnd= 144 +LED 176 : xStart= 4 xEnd= 35 yStart= 144 yEnd= 153 +LED 177 : xStart= 4 xEnd= 35 yStart= 153 yEnd= 162 +LED 178 : xStart= 4 xEnd= 35 yStart= 162 yEnd= 171 +LED 179 : xStart= 4 xEnd= 35 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#979390" + LED 1: "#bab8b7" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a6a3a1" + LED 1: "#bab8b7" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 3 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 3 border.horizontalSize= 0 +buildLedMap: contentWidth= 634 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 3 xEnd= 12 yStart= 171 yEnd= 180 +LED 1 : xStart= 12 xEnd= 21 yStart= 171 yEnd= 180 +LED 2 : xStart= 21 xEnd= 30 yStart= 171 yEnd= 180 +LED 3 : xStart= 30 xEnd= 39 yStart= 171 yEnd= 180 +LED 4 : xStart= 39 xEnd= 48 yStart= 171 yEnd= 180 +LED 5 : xStart= 48 xEnd= 57 yStart= 171 yEnd= 180 +LED 6 : xStart= 57 xEnd= 66 yStart= 171 yEnd= 180 +LED 7 : xStart= 66 xEnd= 75 yStart= 171 yEnd= 180 +LED 8 : xStart= 75 xEnd= 84 yStart= 171 yEnd= 180 +LED 9 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 10 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 11 : xStart= 102 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 537 yStart= 171 yEnd= 180 +LED 59 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 60 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 61 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 62 : xStart= 564 xEnd= 573 yStart= 171 yEnd= 180 +LED 63 : xStart= 573 xEnd= 582 yStart= 171 yEnd= 180 +LED 64 : xStart= 582 xEnd= 591 yStart= 171 yEnd= 180 +LED 65 : xStart= 591 xEnd= 600 yStart= 171 yEnd= 180 +LED 66 : xStart= 600 xEnd= 609 yStart= 171 yEnd= 180 +LED 67 : xStart= 609 xEnd= 618 yStart= 171 yEnd= 180 +LED 68 : xStart= 618 xEnd= 627 yStart= 171 yEnd= 180 +LED 69 : xStart= 627 xEnd= 637 yStart= 171 yEnd= 180 +LED 70 : xStart= 606 xEnd= 637 yStart= 171 yEnd= 180 +LED 71 : xStart= 606 xEnd= 637 yStart= 162 yEnd= 171 +LED 72 : xStart= 606 xEnd= 637 yStart= 153 yEnd= 162 +LED 73 : xStart= 606 xEnd= 637 yStart= 144 yEnd= 153 +LED 74 : xStart= 606 xEnd= 637 yStart= 135 yEnd= 144 +LED 75 : xStart= 606 xEnd= 637 yStart= 125 yEnd= 135 +LED 76 : xStart= 606 xEnd= 637 yStart= 117 yEnd= 125 +LED 77 : xStart= 606 xEnd= 637 yStart= 108 yEnd= 117 +LED 78 : xStart= 606 xEnd= 637 yStart= 99 yEnd= 108 +LED 79 : xStart= 606 xEnd= 637 yStart= 90 yEnd= 99 +LED 80 : xStart= 606 xEnd= 637 yStart= 80 yEnd= 90 +LED 81 : xStart= 606 xEnd= 637 yStart= 72 yEnd= 80 +LED 82 : xStart= 606 xEnd= 637 yStart= 62 yEnd= 72 +LED 83 : xStart= 606 xEnd= 637 yStart= 54 yEnd= 62 +LED 84 : xStart= 606 xEnd= 637 yStart= 45 yEnd= 54 +LED 85 : xStart= 606 xEnd= 637 yStart= 35 yEnd= 45 +LED 86 : xStart= 606 xEnd= 637 yStart= 27 yEnd= 35 +LED 87 : xStart= 606 xEnd= 637 yStart= 17 yEnd= 27 +LED 88 : xStart= 606 xEnd= 637 yStart= 9 yEnd= 17 +LED 89 : xStart= 606 xEnd= 637 yStart= 0 yEnd= 9 +LED 90 : xStart= 627 xEnd= 637 yStart= 0 yEnd= 9 +LED 91 : xStart= 618 xEnd= 627 yStart= 0 yEnd= 9 +LED 92 : xStart= 609 xEnd= 618 yStart= 0 yEnd= 9 +LED 93 : xStart= 600 xEnd= 609 yStart= 0 yEnd= 9 +LED 94 : xStart= 591 xEnd= 600 yStart= 0 yEnd= 9 +LED 95 : xStart= 582 xEnd= 591 yStart= 0 yEnd= 9 +LED 96 : xStart= 573 xEnd= 582 yStart= 0 yEnd= 9 +LED 97 : xStart= 564 xEnd= 573 yStart= 0 yEnd= 9 +LED 98 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 99 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 100 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 537 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 102 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 150 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 151 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 152 : xStart= 66 xEnd= 75 yStart= 0 yEnd= 9 +LED 153 : xStart= 57 xEnd= 66 yStart= 0 yEnd= 9 +LED 154 : xStart= 48 xEnd= 57 yStart= 0 yEnd= 9 +LED 155 : xStart= 39 xEnd= 48 yStart= 0 yEnd= 9 +LED 156 : xStart= 30 xEnd= 39 yStart= 0 yEnd= 9 +LED 157 : xStart= 21 xEnd= 30 yStart= 0 yEnd= 9 +LED 158 : xStart= 12 xEnd= 21 yStart= 0 yEnd= 9 +LED 159 : xStart= 3 xEnd= 12 yStart= 0 yEnd= 9 +LED 160 : xStart= 3 xEnd= 34 yStart= 0 yEnd= 9 +LED 161 : xStart= 3 xEnd= 34 yStart= 9 yEnd= 18 +LED 162 : xStart= 3 xEnd= 34 yStart= 18 yEnd= 27 +LED 163 : xStart= 3 xEnd= 34 yStart= 27 yEnd= 36 +LED 164 : xStart= 3 xEnd= 34 yStart= 36 yEnd= 45 +LED 165 : xStart= 3 xEnd= 34 yStart= 45 yEnd= 54 +LED 166 : xStart= 3 xEnd= 34 yStart= 54 yEnd= 62 +LED 167 : xStart= 3 xEnd= 34 yStart= 62 yEnd= 72 +LED 168 : xStart= 3 xEnd= 34 yStart= 72 yEnd= 81 +LED 169 : xStart= 3 xEnd= 34 yStart= 81 yEnd= 90 +LED 170 : xStart= 3 xEnd= 34 yStart= 90 yEnd= 99 +LED 171 : xStart= 3 xEnd= 34 yStart= 99 yEnd= 108 +LED 172 : xStart= 3 xEnd= 34 yStart= 108 yEnd= 117 +LED 173 : xStart= 3 xEnd= 34 yStart= 117 yEnd= 125 +LED 174 : xStart= 3 xEnd= 34 yStart= 125 yEnd= 135 +LED 175 : xStart= 3 xEnd= 34 yStart= 135 yEnd= 144 +LED 176 : xStart= 3 xEnd= 34 yStart= 144 yEnd= 153 +LED 177 : xStart= 3 xEnd= 34 yStart= 153 yEnd= 162 +LED 178 : xStart= 3 xEnd= 34 yStart= 162 yEnd= 171 +LED 179 : xStart= 3 xEnd= 34 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a5a2a0" + LED 1: "#bab8b7" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b3b1af" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aca9a7" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b0aeac" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b4b1b0" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab8b7" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab8b7" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab8b7" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b7b4b3" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b3b1" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b4b2b0" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b4b1b0" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#b9b7b6" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a6a4" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#bab8b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b9b7b6" + LED 1: "#b9b7b6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a7a7" + LED 1: "#a9a7a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#999897" + LED 1: "#9a9898" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#818183" + LED 1: "#7e7e7f" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#818182" + LED 1: "#6e6e6f" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#9b9998" + LED 1: "#5e5e5f" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aba9a7" + LED 1: "#7c7a7a" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aaa8a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aeaba9" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aba8a6" + LED 1: "#aeaba9" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa8a6" + LED 1: "#adaba9" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#adaaa8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aba8a6" + LED 1: "#aca9a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aca9a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aba9a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aba9a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a6a4" + LED 1: "#aba8a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a6a4" + LED 1: "#aba8a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a6a4" + LED 1: "#aaa8a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a6a4" + LED 1: "#aba8a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aba9a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aca9a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aca9a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aaa7a5" + LED 1: "#aca9a7" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#adaaa8" + LED 1: "#aeabaa" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b0adab" + LED 1: "#b1aead" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b0adab" + LED 1: "#b2afad" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aeacaa" + LED 1: "#b0aeac" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#acaaa8" + LED 1: "#aeaba9" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#afacaa" + LED 1: "#b0adac" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b1aeac" + LED 1: "#b2b0ae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b3b1af" + LED 1: "#b3b1af" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b4b1b0" + LED 1: "#b4b1af" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b2b0ae" + LED 1: "#b2afae" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#b8b5b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#b8b6b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b8b5b4" + LED 1: "#b8b6b4" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aba8a5" + LED 1: "#aba8a6" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a6a29f" + LED 1: "#a5a29f" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a5a19e" + LED 1: "#a5a19e" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a6a2a0" + LED 1: "#a6a2a0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#a9a6a3" + LED 1: "#a9a6a3" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#aca9a7" + LED 1: "#adaaa8" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b1aeac" + LED 1: "#b1aeac" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#b5b2b0" + LED 1: "#b5b2b0" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#2c2d2f" + LED 1: "#2c2d2f" + LED (bottom+1): "#201f1f" + LED (bottom+right+1): "#2f3130" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 3 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 3 +buildLedMap: contentWidth= 640 contentHeight= 174 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 169 yEnd= 177 +LED 1 : xStart= 9 xEnd= 18 yStart= 169 yEnd= 177 +LED 2 : xStart= 18 xEnd= 27 yStart= 169 yEnd= 177 +LED 3 : xStart= 27 xEnd= 36 yStart= 169 yEnd= 177 +LED 4 : xStart= 36 xEnd= 45 yStart= 169 yEnd= 177 +LED 5 : xStart= 45 xEnd= 54 yStart= 169 yEnd= 177 +LED 6 : xStart= 54 xEnd= 64 yStart= 169 yEnd= 177 +LED 7 : xStart= 64 xEnd= 73 yStart= 169 yEnd= 177 +LED 8 : xStart= 73 xEnd= 82 yStart= 169 yEnd= 177 +LED 9 : xStart= 82 xEnd= 91 yStart= 169 yEnd= 177 +LED 10 : xStart= 91 xEnd= 100 yStart= 169 yEnd= 177 +LED 11 : xStart= 100 xEnd= 109 yStart= 169 yEnd= 177 +LED 12 : xStart= 109 xEnd= 118 yStart= 169 yEnd= 177 +LED 13 : xStart= 118 xEnd= 128 yStart= 169 yEnd= 177 +LED 14 : xStart= 128 xEnd= 137 yStart= 169 yEnd= 177 +LED 15 : xStart= 137 xEnd= 146 yStart= 169 yEnd= 177 +LED 16 : xStart= 146 xEnd= 155 yStart= 169 yEnd= 177 +LED 17 : xStart= 155 xEnd= 164 yStart= 169 yEnd= 177 +LED 18 : xStart= 164 xEnd= 173 yStart= 169 yEnd= 177 +LED 19 : xStart= 173 xEnd= 182 yStart= 169 yEnd= 177 +LED 20 : xStart= 182 xEnd= 192 yStart= 169 yEnd= 177 +LED 21 : xStart= 192 xEnd= 201 yStart= 169 yEnd= 177 +LED 22 : xStart= 201 xEnd= 210 yStart= 169 yEnd= 177 +LED 23 : xStart= 210 xEnd= 219 yStart= 169 yEnd= 177 +LED 24 : xStart= 219 xEnd= 228 yStart= 169 yEnd= 177 +LED 25 : xStart= 228 xEnd= 237 yStart= 169 yEnd= 177 +LED 26 : xStart= 237 xEnd= 246 yStart= 169 yEnd= 177 +LED 27 : xStart= 246 xEnd= 256 yStart= 169 yEnd= 177 +LED 28 : xStart= 256 xEnd= 265 yStart= 169 yEnd= 177 +LED 29 : xStart= 265 xEnd= 274 yStart= 169 yEnd= 177 +LED 30 : xStart= 274 xEnd= 283 yStart= 169 yEnd= 177 +LED 31 : xStart= 283 xEnd= 292 yStart= 169 yEnd= 177 +LED 32 : xStart= 292 xEnd= 301 yStart= 169 yEnd= 177 +LED 33 : xStart= 301 xEnd= 310 yStart= 169 yEnd= 177 +LED 34 : xStart= 310 xEnd= 320 yStart= 169 yEnd= 177 +LED 35 : xStart= 320 xEnd= 329 yStart= 169 yEnd= 177 +LED 36 : xStart= 329 xEnd= 338 yStart= 169 yEnd= 177 +LED 37 : xStart= 338 xEnd= 347 yStart= 169 yEnd= 177 +LED 38 : xStart= 347 xEnd= 356 yStart= 169 yEnd= 177 +LED 39 : xStart= 356 xEnd= 365 yStart= 169 yEnd= 177 +LED 40 : xStart= 365 xEnd= 374 yStart= 169 yEnd= 177 +LED 41 : xStart= 374 xEnd= 384 yStart= 169 yEnd= 177 +LED 42 : xStart= 384 xEnd= 393 yStart= 169 yEnd= 177 +LED 43 : xStart= 393 xEnd= 402 yStart= 169 yEnd= 177 +LED 44 : xStart= 402 xEnd= 411 yStart= 169 yEnd= 177 +LED 45 : xStart= 411 xEnd= 420 yStart= 169 yEnd= 177 +LED 46 : xStart= 420 xEnd= 429 yStart= 169 yEnd= 177 +LED 47 : xStart= 429 xEnd= 438 yStart= 169 yEnd= 177 +LED 48 : xStart= 438 xEnd= 448 yStart= 169 yEnd= 177 +LED 49 : xStart= 448 xEnd= 457 yStart= 169 yEnd= 177 +LED 50 : xStart= 457 xEnd= 466 yStart= 169 yEnd= 177 +LED 51 : xStart= 466 xEnd= 475 yStart= 169 yEnd= 177 +LED 52 : xStart= 475 xEnd= 484 yStart= 169 yEnd= 177 +LED 53 : xStart= 484 xEnd= 493 yStart= 169 yEnd= 177 +LED 54 : xStart= 493 xEnd= 502 yStart= 169 yEnd= 177 +LED 55 : xStart= 502 xEnd= 512 yStart= 169 yEnd= 177 +LED 56 : xStart= 512 xEnd= 521 yStart= 169 yEnd= 177 +LED 57 : xStart= 521 xEnd= 530 yStart= 169 yEnd= 177 +LED 58 : xStart= 530 xEnd= 539 yStart= 169 yEnd= 177 +LED 59 : xStart= 539 xEnd= 548 yStart= 169 yEnd= 177 +LED 60 : xStart= 548 xEnd= 557 yStart= 169 yEnd= 177 +LED 61 : xStart= 557 xEnd= 566 yStart= 169 yEnd= 177 +LED 62 : xStart= 566 xEnd= 576 yStart= 169 yEnd= 177 +LED 63 : xStart= 576 xEnd= 585 yStart= 169 yEnd= 177 +LED 64 : xStart= 585 xEnd= 594 yStart= 169 yEnd= 177 +LED 65 : xStart= 594 xEnd= 603 yStart= 169 yEnd= 177 +LED 66 : xStart= 603 xEnd= 612 yStart= 169 yEnd= 177 +LED 67 : xStart= 612 xEnd= 621 yStart= 169 yEnd= 177 +LED 68 : xStart= 621 xEnd= 630 yStart= 169 yEnd= 177 +LED 69 : xStart= 630 xEnd= 640 yStart= 169 yEnd= 177 +LED 70 : xStart= 608 xEnd= 640 yStart= 168 yEnd= 177 +LED 71 : xStart= 608 xEnd= 640 yStart= 159 yEnd= 168 +LED 72 : xStart= 608 xEnd= 640 yStart= 150 yEnd= 159 +LED 73 : xStart= 608 xEnd= 640 yStart= 142 yEnd= 150 +LED 74 : xStart= 608 xEnd= 640 yStart= 133 yEnd= 142 +LED 75 : xStart= 608 xEnd= 640 yStart= 124 yEnd= 133 +LED 76 : xStart= 608 xEnd= 640 yStart= 116 yEnd= 124 +LED 77 : xStart= 608 xEnd= 640 yStart= 107 yEnd= 116 +LED 78 : xStart= 608 xEnd= 640 yStart= 98 yEnd= 107 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 98 +LED 80 : xStart= 608 xEnd= 640 yStart= 81 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 81 +LED 82 : xStart= 608 xEnd= 640 yStart= 63 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 55 yEnd= 63 +LED 84 : xStart= 608 xEnd= 640 yStart= 46 yEnd= 55 +LED 85 : xStart= 608 xEnd= 640 yStart= 37 yEnd= 46 +LED 86 : xStart= 608 xEnd= 640 yStart= 29 yEnd= 37 +LED 87 : xStart= 608 xEnd= 640 yStart= 20 yEnd= 29 +LED 88 : xStart= 608 xEnd= 640 yStart= 11 yEnd= 20 +LED 89 : xStart= 608 xEnd= 640 yStart= 3 yEnd= 11 +LED 90 : xStart= 630 xEnd= 640 yStart= 3 yEnd= 11 +LED 91 : xStart= 621 xEnd= 630 yStart= 3 yEnd= 11 +LED 92 : xStart= 612 xEnd= 621 yStart= 3 yEnd= 11 +LED 93 : xStart= 603 xEnd= 612 yStart= 3 yEnd= 11 +LED 94 : xStart= 594 xEnd= 603 yStart= 3 yEnd= 11 +LED 95 : xStart= 585 xEnd= 594 yStart= 3 yEnd= 11 +LED 96 : xStart= 576 xEnd= 585 yStart= 3 yEnd= 11 +LED 97 : xStart= 566 xEnd= 576 yStart= 3 yEnd= 11 +LED 98 : xStart= 557 xEnd= 566 yStart= 3 yEnd= 11 +LED 99 : xStart= 548 xEnd= 557 yStart= 3 yEnd= 11 +LED 100 : xStart= 539 xEnd= 548 yStart= 3 yEnd= 11 +LED 101 : xStart= 530 xEnd= 539 yStart= 3 yEnd= 11 +LED 102 : xStart= 521 xEnd= 530 yStart= 3 yEnd= 11 +LED 103 : xStart= 512 xEnd= 521 yStart= 3 yEnd= 11 +LED 104 : xStart= 502 xEnd= 512 yStart= 3 yEnd= 11 +LED 105 : xStart= 493 xEnd= 502 yStart= 3 yEnd= 11 +LED 106 : xStart= 484 xEnd= 493 yStart= 3 yEnd= 11 +LED 107 : xStart= 475 xEnd= 484 yStart= 3 yEnd= 11 +LED 108 : xStart= 466 xEnd= 475 yStart= 3 yEnd= 11 +LED 109 : xStart= 457 xEnd= 466 yStart= 3 yEnd= 11 +LED 110 : xStart= 448 xEnd= 457 yStart= 3 yEnd= 11 +LED 111 : xStart= 438 xEnd= 448 yStart= 3 yEnd= 11 +LED 112 : xStart= 429 xEnd= 438 yStart= 3 yEnd= 11 +LED 113 : xStart= 420 xEnd= 429 yStart= 3 yEnd= 11 +LED 114 : xStart= 411 xEnd= 420 yStart= 3 yEnd= 11 +LED 115 : xStart= 402 xEnd= 411 yStart= 3 yEnd= 11 +LED 116 : xStart= 393 xEnd= 402 yStart= 3 yEnd= 11 +LED 117 : xStart= 384 xEnd= 393 yStart= 3 yEnd= 11 +LED 118 : xStart= 374 xEnd= 384 yStart= 3 yEnd= 11 +LED 119 : xStart= 365 xEnd= 374 yStart= 3 yEnd= 11 +LED 120 : xStart= 356 xEnd= 365 yStart= 3 yEnd= 11 +LED 121 : xStart= 347 xEnd= 356 yStart= 3 yEnd= 11 +LED 122 : xStart= 338 xEnd= 347 yStart= 3 yEnd= 11 +LED 123 : xStart= 329 xEnd= 338 yStart= 3 yEnd= 11 +LED 124 : xStart= 320 xEnd= 329 yStart= 3 yEnd= 11 +LED 125 : xStart= 310 xEnd= 320 yStart= 3 yEnd= 11 +LED 126 : xStart= 301 xEnd= 310 yStart= 3 yEnd= 11 +LED 127 : xStart= 292 xEnd= 301 yStart= 3 yEnd= 11 +LED 128 : xStart= 283 xEnd= 292 yStart= 3 yEnd= 11 +LED 129 : xStart= 274 xEnd= 283 yStart= 3 yEnd= 11 +LED 130 : xStart= 265 xEnd= 274 yStart= 3 yEnd= 11 +LED 131 : xStart= 256 xEnd= 265 yStart= 3 yEnd= 11 +LED 132 : xStart= 246 xEnd= 256 yStart= 3 yEnd= 11 +LED 133 : xStart= 237 xEnd= 246 yStart= 3 yEnd= 11 +LED 134 : xStart= 228 xEnd= 237 yStart= 3 yEnd= 11 +LED 135 : xStart= 219 xEnd= 228 yStart= 3 yEnd= 11 +LED 136 : xStart= 210 xEnd= 219 yStart= 3 yEnd= 11 +LED 137 : xStart= 201 xEnd= 210 yStart= 3 yEnd= 11 +LED 138 : xStart= 192 xEnd= 201 yStart= 3 yEnd= 11 +LED 139 : xStart= 182 xEnd= 192 yStart= 3 yEnd= 11 +LED 140 : xStart= 173 xEnd= 182 yStart= 3 yEnd= 11 +LED 141 : xStart= 164 xEnd= 173 yStart= 3 yEnd= 11 +LED 142 : xStart= 155 xEnd= 164 yStart= 3 yEnd= 11 +LED 143 : xStart= 146 xEnd= 155 yStart= 3 yEnd= 11 +LED 144 : xStart= 137 xEnd= 146 yStart= 3 yEnd= 11 +LED 145 : xStart= 127 xEnd= 137 yStart= 3 yEnd= 11 +LED 146 : xStart= 118 xEnd= 127 yStart= 3 yEnd= 11 +LED 147 : xStart= 109 xEnd= 118 yStart= 3 yEnd= 11 +LED 148 : xStart= 100 xEnd= 109 yStart= 3 yEnd= 11 +LED 149 : xStart= 91 xEnd= 100 yStart= 3 yEnd= 11 +LED 150 : xStart= 82 xEnd= 91 yStart= 3 yEnd= 11 +LED 151 : xStart= 73 xEnd= 82 yStart= 3 yEnd= 11 +LED 152 : xStart= 63 xEnd= 73 yStart= 3 yEnd= 11 +LED 153 : xStart= 54 xEnd= 63 yStart= 3 yEnd= 11 +LED 154 : xStart= 45 xEnd= 54 yStart= 3 yEnd= 11 +LED 155 : xStart= 36 xEnd= 45 yStart= 3 yEnd= 11 +LED 156 : xStart= 27 xEnd= 36 yStart= 3 yEnd= 11 +LED 157 : xStart= 18 xEnd= 27 yStart= 3 yEnd= 11 +LED 158 : xStart= 9 xEnd= 18 yStart= 3 yEnd= 11 +LED 159 : xStart= 0 xEnd= 9 yStart= 3 yEnd= 11 +LED 160 : xStart= 0 xEnd= 32 yStart= 3 yEnd= 11 +LED 161 : xStart= 0 xEnd= 32 yStart= 11 yEnd= 20 +LED 162 : xStart= 0 xEnd= 32 yStart= 20 yEnd= 29 +LED 163 : xStart= 0 xEnd= 32 yStart= 29 yEnd= 37 +LED 164 : xStart= 0 xEnd= 32 yStart= 37 yEnd= 46 +LED 165 : xStart= 0 xEnd= 32 yStart= 46 yEnd= 55 +LED 166 : xStart= 0 xEnd= 32 yStart= 55 yEnd= 63 +LED 167 : xStart= 0 xEnd= 32 yStart= 63 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 98 +LED 171 : xStart= 0 xEnd= 32 yStart= 98 yEnd= 107 +LED 172 : xStart= 0 xEnd= 32 yStart= 107 yEnd= 116 +LED 173 : xStart= 0 xEnd= 32 yStart= 116 yEnd= 124 +LED 174 : xStart= 0 xEnd= 32 yStart= 124 yEnd= 133 +LED 175 : xStart= 0 xEnd= 32 yStart= 133 yEnd= 142 +LED 176 : xStart= 0 xEnd= 32 yStart= 142 yEnd= 150 +LED 177 : xStart= 0 xEnd= 32 yStart= 150 yEnd= 159 +LED 178 : xStart= 0 xEnd= 32 yStart= 159 yEnd= 168 +LED 179 : xStart= 0 xEnd= 32 yStart= 168 yEnd= 177 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#3c3c3e" + LED 1: "#3b3c3e" + LED (bottom+1): "#24211f" + LED (bottom+right+1): "#2b2d2c" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 1 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 1 +buildLedMap: contentWidth= 640 contentHeight= 178 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 179 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 179 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 179 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 179 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 179 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 179 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 179 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 179 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 179 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 179 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 179 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 179 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 179 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 179 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 179 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 179 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 179 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 179 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 179 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 179 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 179 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 179 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 179 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 179 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 179 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 179 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 179 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 179 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 179 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 179 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 179 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 179 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 179 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 179 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 179 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 179 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 179 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 179 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 179 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 179 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 179 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 179 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 179 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 179 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 179 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 179 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 179 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 179 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 179 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 179 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 179 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 179 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 179 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 179 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 179 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 179 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 179 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 179 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 179 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 179 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 179 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 179 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 179 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 179 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 179 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 179 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 179 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 179 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 179 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 179 +LED 70 : xStart= 608 xEnd= 640 yStart= 170 yEnd= 179 +LED 71 : xStart= 608 xEnd= 640 yStart= 161 yEnd= 170 +LED 72 : xStart= 608 xEnd= 640 yStart= 152 yEnd= 161 +LED 73 : xStart= 608 xEnd= 640 yStart= 143 yEnd= 152 +LED 74 : xStart= 608 xEnd= 640 yStart= 134 yEnd= 143 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 134 +LED 76 : xStart= 608 xEnd= 640 yStart= 116 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 107 yEnd= 116 +LED 78 : xStart= 608 xEnd= 640 yStart= 98 yEnd= 107 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 98 +LED 80 : xStart= 608 xEnd= 640 yStart= 81 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 81 +LED 82 : xStart= 608 xEnd= 640 yStart= 63 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 63 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 36 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 36 +LED 87 : xStart= 608 xEnd= 640 yStart= 18 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 18 +LED 89 : xStart= 608 xEnd= 640 yStart= 1 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 1 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 1 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 1 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 1 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 1 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 1 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 1 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 1 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 1 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 1 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 1 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 1 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 1 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 1 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 1 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 1 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 1 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 1 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 1 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 1 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 1 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 1 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 1 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 1 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 1 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 1 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 1 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 1 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 1 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 1 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 1 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 1 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 1 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 1 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 1 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 1 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 1 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 1 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 1 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 1 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 1 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 1 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 1 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 1 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 1 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 1 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 1 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 1 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 1 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 1 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 1 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 1 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 1 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 1 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 1 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 1 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 1 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 1 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 1 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 1 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 1 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 1 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 1 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 1 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 1 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 1 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 1 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 1 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 1 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 1 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 1 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 63 +LED 167 : xStart= 0 xEnd= 32 yStart= 63 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 98 +LED 171 : xStart= 0 xEnd= 32 yStart= 98 yEnd= 107 +LED 172 : xStart= 0 xEnd= 32 yStart= 107 yEnd= 116 +LED 173 : xStart= 0 xEnd= 32 yStart= 116 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 134 +LED 175 : xStart= 0 xEnd= 32 yStart= 134 yEnd= 143 +LED 176 : xStart= 0 xEnd= 32 yStart= 143 yEnd= 152 +LED 177 : xStart= 0 xEnd= 32 yStart= 152 yEnd= 161 +LED 178 : xStart= 0 xEnd= 32 yStart= 161 yEnd= 170 +LED 179 : xStart= 0 xEnd= 32 yStart= 170 yEnd= 179 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#434445" + LED 1: "#434345" + LED (bottom+1): "#26221e" + LED (bottom+right+1): "#333533" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#4a4a4c" + LED 1: "#4a494b" + LED (bottom+1): "#26221d" + LED (bottom+right+1): "#313332" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#565658" + LED 1: "#565658" + LED (bottom+1): "#29241c" + LED (bottom+right+1): "#333432" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 10 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 10 border.horizontalSize= 0 +buildLedMap: contentWidth= 620 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 10 xEnd= 18 yStart= 171 yEnd= 180 +LED 1 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 2 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 3 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 4 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 5 : xStart= 54 xEnd= 63 yStart= 171 yEnd= 180 +LED 6 : xStart= 63 xEnd= 72 yStart= 171 yEnd= 180 +LED 7 : xStart= 72 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 89 yStart= 171 yEnd= 180 +LED 9 : xStart= 89 xEnd= 98 yStart= 171 yEnd= 180 +LED 10 : xStart= 98 xEnd= 107 yStart= 171 yEnd= 180 +LED 11 : xStart= 107 xEnd= 116 yStart= 171 yEnd= 180 +LED 12 : xStart= 116 xEnd= 125 yStart= 171 yEnd= 180 +LED 13 : xStart= 125 xEnd= 134 yStart= 171 yEnd= 180 +LED 14 : xStart= 134 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 169 yStart= 171 yEnd= 180 +LED 18 : xStart= 169 xEnd= 178 yStart= 171 yEnd= 180 +LED 19 : xStart= 178 xEnd= 187 yStart= 171 yEnd= 180 +LED 20 : xStart= 187 xEnd= 196 yStart= 171 yEnd= 180 +LED 21 : xStart= 196 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 249 yStart= 171 yEnd= 180 +LED 27 : xStart= 249 xEnd= 258 yStart= 171 yEnd= 180 +LED 28 : xStart= 258 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 390 yStart= 171 yEnd= 180 +LED 43 : xStart= 390 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 452 yStart= 171 yEnd= 180 +LED 50 : xStart= 452 xEnd= 461 yStart= 171 yEnd= 180 +LED 51 : xStart= 461 xEnd= 470 yStart= 171 yEnd= 180 +LED 52 : xStart= 470 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 514 yStart= 171 yEnd= 180 +LED 57 : xStart= 514 xEnd= 523 yStart= 171 yEnd= 180 +LED 58 : xStart= 523 xEnd= 532 yStart= 171 yEnd= 180 +LED 59 : xStart= 532 xEnd= 541 yStart= 171 yEnd= 180 +LED 60 : xStart= 541 xEnd= 550 yStart= 171 yEnd= 180 +LED 61 : xStart= 550 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 576 yStart= 171 yEnd= 180 +LED 64 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 65 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 66 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 67 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 68 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 69 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 70 : xStart= 599 xEnd= 630 yStart= 171 yEnd= 180 +LED 71 : xStart= 599 xEnd= 630 yStart= 162 yEnd= 171 +LED 72 : xStart= 599 xEnd= 630 yStart= 153 yEnd= 162 +LED 73 : xStart= 599 xEnd= 630 yStart= 144 yEnd= 153 +LED 74 : xStart= 599 xEnd= 630 yStart= 135 yEnd= 144 +LED 75 : xStart= 599 xEnd= 630 yStart= 125 yEnd= 135 +LED 76 : xStart= 599 xEnd= 630 yStart= 117 yEnd= 125 +LED 77 : xStart= 599 xEnd= 630 yStart= 108 yEnd= 117 +LED 78 : xStart= 599 xEnd= 630 yStart= 99 yEnd= 108 +LED 79 : xStart= 599 xEnd= 630 yStart= 90 yEnd= 99 +LED 80 : xStart= 599 xEnd= 630 yStart= 80 yEnd= 90 +LED 81 : xStart= 599 xEnd= 630 yStart= 72 yEnd= 80 +LED 82 : xStart= 599 xEnd= 630 yStart= 62 yEnd= 72 +LED 83 : xStart= 599 xEnd= 630 yStart= 54 yEnd= 62 +LED 84 : xStart= 599 xEnd= 630 yStart= 45 yEnd= 54 +LED 85 : xStart= 599 xEnd= 630 yStart= 35 yEnd= 45 +LED 86 : xStart= 599 xEnd= 630 yStart= 27 yEnd= 35 +LED 87 : xStart= 599 xEnd= 630 yStart= 17 yEnd= 27 +LED 88 : xStart= 599 xEnd= 630 yStart= 9 yEnd= 17 +LED 89 : xStart= 599 xEnd= 630 yStart= 0 yEnd= 9 +LED 90 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 91 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 92 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 93 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 94 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 95 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 576 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 550 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 541 xEnd= 550 yStart= 0 yEnd= 9 +LED 100 : xStart= 532 xEnd= 541 yStart= 0 yEnd= 9 +LED 101 : xStart= 523 xEnd= 532 yStart= 0 yEnd= 9 +LED 102 : xStart= 514 xEnd= 523 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 514 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 470 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 461 xEnd= 470 yStart= 0 yEnd= 9 +LED 109 : xStart= 452 xEnd= 461 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 452 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 390 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 390 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 258 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 249 xEnd= 258 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 249 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 196 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 187 xEnd= 196 yStart= 0 yEnd= 9 +LED 140 : xStart= 178 xEnd= 187 yStart= 0 yEnd= 9 +LED 141 : xStart= 169 xEnd= 178 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 169 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 125 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 116 xEnd= 125 yStart= 0 yEnd= 9 +LED 148 : xStart= 107 xEnd= 116 yStart= 0 yEnd= 9 +LED 149 : xStart= 98 xEnd= 107 yStart= 0 yEnd= 9 +LED 150 : xStart= 89 xEnd= 98 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 89 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 63 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 155 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 156 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 157 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 158 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 159 : xStart= 10 xEnd= 18 yStart= 0 yEnd= 9 +LED 160 : xStart= 10 xEnd= 41 yStart= 0 yEnd= 9 +LED 161 : xStart= 10 xEnd= 41 yStart= 9 yEnd= 18 +LED 162 : xStart= 10 xEnd= 41 yStart= 18 yEnd= 27 +LED 163 : xStart= 10 xEnd= 41 yStart= 27 yEnd= 36 +LED 164 : xStart= 10 xEnd= 41 yStart= 36 yEnd= 45 +LED 165 : xStart= 10 xEnd= 41 yStart= 45 yEnd= 54 +LED 166 : xStart= 10 xEnd= 41 yStart= 54 yEnd= 62 +LED 167 : xStart= 10 xEnd= 41 yStart= 62 yEnd= 72 +LED 168 : xStart= 10 xEnd= 41 yStart= 72 yEnd= 81 +LED 169 : xStart= 10 xEnd= 41 yStart= 81 yEnd= 90 +LED 170 : xStart= 10 xEnd= 41 yStart= 90 yEnd= 99 +LED 171 : xStart= 10 xEnd= 41 yStart= 99 yEnd= 108 +LED 172 : xStart= 10 xEnd= 41 yStart= 108 yEnd= 117 +LED 173 : xStart= 10 xEnd= 41 yStart= 117 yEnd= 125 +LED 174 : xStart= 10 xEnd= 41 yStart= 125 yEnd= 135 +LED 175 : xStart= 10 xEnd= 41 yStart= 135 yEnd= 144 +LED 176 : xStart= 10 xEnd= 41 yStart= 144 yEnd= 153 +LED 177 : xStart= 10 xEnd= 41 yStart= 153 yEnd= 162 +LED 178 : xStart= 10 xEnd= 41 yStart= 162 yEnd= 171 +LED 179 : xStart= 10 xEnd= 41 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#626263" + LED 1: "#626263" + LED (bottom+1): "#2d261c" + LED (bottom+right+1): "#2f312e" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 20 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 20 border.horizontalSize= 0 +buildLedMap: contentWidth= 600 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 20 xEnd= 28 yStart= 171 yEnd= 180 +LED 1 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 2 : xStart= 37 xEnd= 45 yStart= 171 yEnd= 180 +LED 3 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 4 : xStart= 54 xEnd= 62 yStart= 171 yEnd= 180 +LED 5 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 6 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 7 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 8 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 9 : xStart= 97 xEnd= 105 yStart= 171 yEnd= 180 +LED 10 : xStart= 105 xEnd= 114 yStart= 171 yEnd= 180 +LED 11 : xStart= 114 xEnd= 122 yStart= 171 yEnd= 180 +LED 12 : xStart= 122 xEnd= 131 yStart= 171 yEnd= 180 +LED 13 : xStart= 131 xEnd= 140 yStart= 171 yEnd= 180 +LED 14 : xStart= 140 xEnd= 148 yStart= 171 yEnd= 180 +LED 15 : xStart= 148 xEnd= 157 yStart= 171 yEnd= 180 +LED 16 : xStart= 157 xEnd= 165 yStart= 171 yEnd= 180 +LED 17 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 18 : xStart= 174 xEnd= 182 yStart= 171 yEnd= 180 +LED 19 : xStart= 182 xEnd= 191 yStart= 171 yEnd= 180 +LED 20 : xStart= 191 xEnd= 200 yStart= 171 yEnd= 180 +LED 21 : xStart= 200 xEnd= 208 yStart= 171 yEnd= 180 +LED 22 : xStart= 208 xEnd= 217 yStart= 171 yEnd= 180 +LED 23 : xStart= 217 xEnd= 225 yStart= 171 yEnd= 180 +LED 24 : xStart= 225 xEnd= 234 yStart= 171 yEnd= 180 +LED 25 : xStart= 234 xEnd= 242 yStart= 171 yEnd= 180 +LED 26 : xStart= 242 xEnd= 251 yStart= 171 yEnd= 180 +LED 27 : xStart= 251 xEnd= 260 yStart= 171 yEnd= 180 +LED 28 : xStart= 260 xEnd= 268 yStart= 171 yEnd= 180 +LED 29 : xStart= 268 xEnd= 277 yStart= 171 yEnd= 180 +LED 30 : xStart= 277 xEnd= 285 yStart= 171 yEnd= 180 +LED 31 : xStart= 285 xEnd= 294 yStart= 171 yEnd= 180 +LED 32 : xStart= 294 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 345 yStart= 171 yEnd= 180 +LED 38 : xStart= 345 xEnd= 354 yStart= 171 yEnd= 180 +LED 39 : xStart= 354 xEnd= 362 yStart= 171 yEnd= 180 +LED 40 : xStart= 362 xEnd= 371 yStart= 171 yEnd= 180 +LED 41 : xStart= 371 xEnd= 380 yStart= 171 yEnd= 180 +LED 42 : xStart= 380 xEnd= 388 yStart= 171 yEnd= 180 +LED 43 : xStart= 388 xEnd= 397 yStart= 171 yEnd= 180 +LED 44 : xStart= 397 xEnd= 405 yStart= 171 yEnd= 180 +LED 45 : xStart= 405 xEnd= 414 yStart= 171 yEnd= 180 +LED 46 : xStart= 414 xEnd= 422 yStart= 171 yEnd= 180 +LED 47 : xStart= 422 xEnd= 431 yStart= 171 yEnd= 180 +LED 48 : xStart= 431 xEnd= 440 yStart= 171 yEnd= 180 +LED 49 : xStart= 440 xEnd= 448 yStart= 171 yEnd= 180 +LED 50 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 51 : xStart= 457 xEnd= 465 yStart= 171 yEnd= 180 +LED 52 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 53 : xStart= 474 xEnd= 482 yStart= 171 yEnd= 180 +LED 54 : xStart= 482 xEnd= 491 yStart= 171 yEnd= 180 +LED 55 : xStart= 491 xEnd= 500 yStart= 171 yEnd= 180 +LED 56 : xStart= 500 xEnd= 508 yStart= 171 yEnd= 180 +LED 57 : xStart= 508 xEnd= 517 yStart= 171 yEnd= 180 +LED 58 : xStart= 517 xEnd= 525 yStart= 171 yEnd= 180 +LED 59 : xStart= 525 xEnd= 534 yStart= 171 yEnd= 180 +LED 60 : xStart= 534 xEnd= 542 yStart= 171 yEnd= 180 +LED 61 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 62 : xStart= 551 xEnd= 560 yStart= 171 yEnd= 180 +LED 63 : xStart= 560 xEnd= 568 yStart= 171 yEnd= 180 +LED 64 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 65 : xStart= 577 xEnd= 585 yStart= 171 yEnd= 180 +LED 66 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 67 : xStart= 594 xEnd= 602 yStart= 171 yEnd= 180 +LED 68 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 69 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 70 : xStart= 590 xEnd= 620 yStart= 171 yEnd= 180 +LED 71 : xStart= 590 xEnd= 620 yStart= 162 yEnd= 171 +LED 72 : xStart= 590 xEnd= 620 yStart= 153 yEnd= 162 +LED 73 : xStart= 590 xEnd= 620 yStart= 144 yEnd= 153 +LED 74 : xStart= 590 xEnd= 620 yStart= 135 yEnd= 144 +LED 75 : xStart= 590 xEnd= 620 yStart= 125 yEnd= 135 +LED 76 : xStart= 590 xEnd= 620 yStart= 117 yEnd= 125 +LED 77 : xStart= 590 xEnd= 620 yStart= 108 yEnd= 117 +LED 78 : xStart= 590 xEnd= 620 yStart= 99 yEnd= 108 +LED 79 : xStart= 590 xEnd= 620 yStart= 90 yEnd= 99 +LED 80 : xStart= 590 xEnd= 620 yStart= 80 yEnd= 90 +LED 81 : xStart= 590 xEnd= 620 yStart= 72 yEnd= 80 +LED 82 : xStart= 590 xEnd= 620 yStart= 62 yEnd= 72 +LED 83 : xStart= 590 xEnd= 620 yStart= 54 yEnd= 62 +LED 84 : xStart= 590 xEnd= 620 yStart= 45 yEnd= 54 +LED 85 : xStart= 590 xEnd= 620 yStart= 35 yEnd= 45 +LED 86 : xStart= 590 xEnd= 620 yStart= 27 yEnd= 35 +LED 87 : xStart= 590 xEnd= 620 yStart= 17 yEnd= 27 +LED 88 : xStart= 590 xEnd= 620 yStart= 9 yEnd= 17 +LED 89 : xStart= 590 xEnd= 620 yStart= 0 yEnd= 9 +LED 90 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 91 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 92 : xStart= 594 xEnd= 602 yStart= 0 yEnd= 9 +LED 93 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 94 : xStart= 577 xEnd= 585 yStart= 0 yEnd= 9 +LED 95 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 96 : xStart= 560 xEnd= 568 yStart= 0 yEnd= 9 +LED 97 : xStart= 551 xEnd= 560 yStart= 0 yEnd= 9 +LED 98 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 99 : xStart= 534 xEnd= 542 yStart= 0 yEnd= 9 +LED 100 : xStart= 525 xEnd= 534 yStart= 0 yEnd= 9 +LED 101 : xStart= 517 xEnd= 525 yStart= 0 yEnd= 9 +LED 102 : xStart= 508 xEnd= 517 yStart= 0 yEnd= 9 +LED 103 : xStart= 500 xEnd= 508 yStart= 0 yEnd= 9 +LED 104 : xStart= 491 xEnd= 500 yStart= 0 yEnd= 9 +LED 105 : xStart= 482 xEnd= 491 yStart= 0 yEnd= 9 +LED 106 : xStart= 474 xEnd= 482 yStart= 0 yEnd= 9 +LED 107 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 108 : xStart= 457 xEnd= 465 yStart= 0 yEnd= 9 +LED 109 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 110 : xStart= 440 xEnd= 448 yStart= 0 yEnd= 9 +LED 111 : xStart= 431 xEnd= 440 yStart= 0 yEnd= 9 +LED 112 : xStart= 422 xEnd= 431 yStart= 0 yEnd= 9 +LED 113 : xStart= 414 xEnd= 422 yStart= 0 yEnd= 9 +LED 114 : xStart= 405 xEnd= 414 yStart= 0 yEnd= 9 +LED 115 : xStart= 397 xEnd= 405 yStart= 0 yEnd= 9 +LED 116 : xStart= 388 xEnd= 397 yStart= 0 yEnd= 9 +LED 117 : xStart= 380 xEnd= 388 yStart= 0 yEnd= 9 +LED 118 : xStart= 371 xEnd= 380 yStart= 0 yEnd= 9 +LED 119 : xStart= 362 xEnd= 371 yStart= 0 yEnd= 9 +LED 120 : xStart= 354 xEnd= 362 yStart= 0 yEnd= 9 +LED 121 : xStart= 345 xEnd= 354 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 345 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 294 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 285 xEnd= 294 yStart= 0 yEnd= 9 +LED 129 : xStart= 277 xEnd= 285 yStart= 0 yEnd= 9 +LED 130 : xStart= 268 xEnd= 277 yStart= 0 yEnd= 9 +LED 131 : xStart= 260 xEnd= 268 yStart= 0 yEnd= 9 +LED 132 : xStart= 251 xEnd= 260 yStart= 0 yEnd= 9 +LED 133 : xStart= 242 xEnd= 251 yStart= 0 yEnd= 9 +LED 134 : xStart= 234 xEnd= 242 yStart= 0 yEnd= 9 +LED 135 : xStart= 225 xEnd= 234 yStart= 0 yEnd= 9 +LED 136 : xStart= 217 xEnd= 225 yStart= 0 yEnd= 9 +LED 137 : xStart= 208 xEnd= 217 yStart= 0 yEnd= 9 +LED 138 : xStart= 200 xEnd= 208 yStart= 0 yEnd= 9 +LED 139 : xStart= 191 xEnd= 200 yStart= 0 yEnd= 9 +LED 140 : xStart= 182 xEnd= 191 yStart= 0 yEnd= 9 +LED 141 : xStart= 174 xEnd= 182 yStart= 0 yEnd= 9 +LED 142 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 143 : xStart= 157 xEnd= 165 yStart= 0 yEnd= 9 +LED 144 : xStart= 148 xEnd= 157 yStart= 0 yEnd= 9 +LED 145 : xStart= 139 xEnd= 148 yStart= 0 yEnd= 9 +LED 146 : xStart= 131 xEnd= 139 yStart= 0 yEnd= 9 +LED 147 : xStart= 122 xEnd= 131 yStart= 0 yEnd= 9 +LED 148 : xStart= 114 xEnd= 122 yStart= 0 yEnd= 9 +LED 149 : xStart= 105 xEnd= 114 yStart= 0 yEnd= 9 +LED 150 : xStart= 97 xEnd= 105 yStart= 0 yEnd= 9 +LED 151 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 152 : xStart= 79 xEnd= 88 yStart= 0 yEnd= 9 +LED 153 : xStart= 71 xEnd= 79 yStart= 0 yEnd= 9 +LED 154 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 155 : xStart= 54 xEnd= 62 yStart= 0 yEnd= 9 +LED 156 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 157 : xStart= 37 xEnd= 45 yStart= 0 yEnd= 9 +LED 158 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 159 : xStart= 20 xEnd= 28 yStart= 0 yEnd= 9 +LED 160 : xStart= 20 xEnd= 50 yStart= 0 yEnd= 9 +LED 161 : xStart= 20 xEnd= 50 yStart= 9 yEnd= 18 +LED 162 : xStart= 20 xEnd= 50 yStart= 18 yEnd= 27 +LED 163 : xStart= 20 xEnd= 50 yStart= 27 yEnd= 36 +LED 164 : xStart= 20 xEnd= 50 yStart= 36 yEnd= 45 +LED 165 : xStart= 20 xEnd= 50 yStart= 45 yEnd= 54 +LED 166 : xStart= 20 xEnd= 50 yStart= 54 yEnd= 62 +LED 167 : xStart= 20 xEnd= 50 yStart= 62 yEnd= 72 +LED 168 : xStart= 20 xEnd= 50 yStart= 72 yEnd= 81 +LED 169 : xStart= 20 xEnd= 50 yStart= 81 yEnd= 90 +LED 170 : xStart= 20 xEnd= 50 yStart= 90 yEnd= 99 +LED 171 : xStart= 20 xEnd= 50 yStart= 99 yEnd= 108 +LED 172 : xStart= 20 xEnd= 50 yStart= 108 yEnd= 117 +LED 173 : xStart= 20 xEnd= 50 yStart= 117 yEnd= 125 +LED 174 : xStart= 20 xEnd= 50 yStart= 125 yEnd= 135 +LED 175 : xStart= 20 xEnd= 50 yStart= 135 yEnd= 144 +LED 176 : xStart= 20 xEnd= 50 yStart= 144 yEnd= 153 +LED 177 : xStart= 20 xEnd= 50 yStart= 153 yEnd= 162 +LED 178 : xStart= 20 xEnd= 50 yStart= 162 yEnd= 171 +LED 179 : xStart= 20 xEnd= 50 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#6c6c6d" + LED 1: "#6a696b" + LED (bottom+1): "#31281c" + LED (bottom+right+1): "#363834" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 15 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 15 border.horizontalSize= 0 +buildLedMap: contentWidth= 610 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 15 xEnd= 23 yStart= 171 yEnd= 180 +LED 1 : xStart= 23 xEnd= 32 yStart= 171 yEnd= 180 +LED 2 : xStart= 32 xEnd= 41 yStart= 171 yEnd= 180 +LED 3 : xStart= 41 xEnd= 49 yStart= 171 yEnd= 180 +LED 4 : xStart= 49 xEnd= 58 yStart= 171 yEnd= 180 +LED 5 : xStart= 58 xEnd= 67 yStart= 171 yEnd= 180 +LED 6 : xStart= 67 xEnd= 76 yStart= 171 yEnd= 180 +LED 7 : xStart= 76 xEnd= 84 yStart= 171 yEnd= 180 +LED 8 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 9 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 10 : xStart= 102 xEnd= 110 yStart= 171 yEnd= 180 +LED 11 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 12 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 13 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 14 : xStart= 137 xEnd= 145 yStart= 171 yEnd= 180 +LED 15 : xStart= 145 xEnd= 154 yStart= 171 yEnd= 180 +LED 16 : xStart= 154 xEnd= 163 yStart= 171 yEnd= 180 +LED 17 : xStart= 163 xEnd= 171 yStart= 171 yEnd= 180 +LED 18 : xStart= 171 xEnd= 180 yStart= 171 yEnd= 180 +LED 19 : xStart= 180 xEnd= 189 yStart= 171 yEnd= 180 +LED 20 : xStart= 189 xEnd= 198 yStart= 171 yEnd= 180 +LED 21 : xStart= 198 xEnd= 206 yStart= 171 yEnd= 180 +LED 22 : xStart= 206 xEnd= 215 yStart= 171 yEnd= 180 +LED 23 : xStart= 215 xEnd= 224 yStart= 171 yEnd= 180 +LED 24 : xStart= 224 xEnd= 232 yStart= 171 yEnd= 180 +LED 25 : xStart= 232 xEnd= 241 yStart= 171 yEnd= 180 +LED 26 : xStart= 241 xEnd= 250 yStart= 171 yEnd= 180 +LED 27 : xStart= 250 xEnd= 259 yStart= 171 yEnd= 180 +LED 28 : xStart= 259 xEnd= 267 yStart= 171 yEnd= 180 +LED 29 : xStart= 267 xEnd= 276 yStart= 171 yEnd= 180 +LED 30 : xStart= 276 xEnd= 285 yStart= 171 yEnd= 180 +LED 31 : xStart= 285 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 354 yStart= 171 yEnd= 180 +LED 39 : xStart= 354 xEnd= 363 yStart= 171 yEnd= 180 +LED 40 : xStart= 363 xEnd= 372 yStart= 171 yEnd= 180 +LED 41 : xStart= 372 xEnd= 381 yStart= 171 yEnd= 180 +LED 42 : xStart= 381 xEnd= 389 yStart= 171 yEnd= 180 +LED 43 : xStart= 389 xEnd= 398 yStart= 171 yEnd= 180 +LED 44 : xStart= 398 xEnd= 407 yStart= 171 yEnd= 180 +LED 45 : xStart= 407 xEnd= 415 yStart= 171 yEnd= 180 +LED 46 : xStart= 415 xEnd= 424 yStart= 171 yEnd= 180 +LED 47 : xStart= 424 xEnd= 433 yStart= 171 yEnd= 180 +LED 48 : xStart= 433 xEnd= 442 yStart= 171 yEnd= 180 +LED 49 : xStart= 442 xEnd= 450 yStart= 171 yEnd= 180 +LED 50 : xStart= 450 xEnd= 459 yStart= 171 yEnd= 180 +LED 51 : xStart= 459 xEnd= 468 yStart= 171 yEnd= 180 +LED 52 : xStart= 468 xEnd= 476 yStart= 171 yEnd= 180 +LED 53 : xStart= 476 xEnd= 485 yStart= 171 yEnd= 180 +LED 54 : xStart= 485 xEnd= 494 yStart= 171 yEnd= 180 +LED 55 : xStart= 494 xEnd= 503 yStart= 171 yEnd= 180 +LED 56 : xStart= 503 xEnd= 511 yStart= 171 yEnd= 180 +LED 57 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 58 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 59 : xStart= 529 xEnd= 537 yStart= 171 yEnd= 180 +LED 60 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 61 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 62 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 63 : xStart= 564 xEnd= 572 yStart= 171 yEnd= 180 +LED 64 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 65 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 66 : xStart= 590 xEnd= 598 yStart= 171 yEnd= 180 +LED 67 : xStart= 598 xEnd= 607 yStart= 171 yEnd= 180 +LED 68 : xStart= 607 xEnd= 616 yStart= 171 yEnd= 180 +LED 69 : xStart= 616 xEnd= 625 yStart= 171 yEnd= 180 +LED 70 : xStart= 595 xEnd= 625 yStart= 171 yEnd= 180 +LED 71 : xStart= 595 xEnd= 625 yStart= 162 yEnd= 171 +LED 72 : xStart= 595 xEnd= 625 yStart= 153 yEnd= 162 +LED 73 : xStart= 595 xEnd= 625 yStart= 144 yEnd= 153 +LED 74 : xStart= 595 xEnd= 625 yStart= 135 yEnd= 144 +LED 75 : xStart= 595 xEnd= 625 yStart= 125 yEnd= 135 +LED 76 : xStart= 595 xEnd= 625 yStart= 117 yEnd= 125 +LED 77 : xStart= 595 xEnd= 625 yStart= 108 yEnd= 117 +LED 78 : xStart= 595 xEnd= 625 yStart= 99 yEnd= 108 +LED 79 : xStart= 595 xEnd= 625 yStart= 90 yEnd= 99 +LED 80 : xStart= 595 xEnd= 625 yStart= 80 yEnd= 90 +LED 81 : xStart= 595 xEnd= 625 yStart= 72 yEnd= 80 +LED 82 : xStart= 595 xEnd= 625 yStart= 62 yEnd= 72 +LED 83 : xStart= 595 xEnd= 625 yStart= 54 yEnd= 62 +LED 84 : xStart= 595 xEnd= 625 yStart= 45 yEnd= 54 +LED 85 : xStart= 595 xEnd= 625 yStart= 35 yEnd= 45 +LED 86 : xStart= 595 xEnd= 625 yStart= 27 yEnd= 35 +LED 87 : xStart= 595 xEnd= 625 yStart= 17 yEnd= 27 +LED 88 : xStart= 595 xEnd= 625 yStart= 9 yEnd= 17 +LED 89 : xStart= 595 xEnd= 625 yStart= 0 yEnd= 9 +LED 90 : xStart= 616 xEnd= 625 yStart= 0 yEnd= 9 +LED 91 : xStart= 607 xEnd= 616 yStart= 0 yEnd= 9 +LED 92 : xStart= 598 xEnd= 607 yStart= 0 yEnd= 9 +LED 93 : xStart= 590 xEnd= 598 yStart= 0 yEnd= 9 +LED 94 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 95 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 96 : xStart= 564 xEnd= 572 yStart= 0 yEnd= 9 +LED 97 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 98 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 99 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 100 : xStart= 529 xEnd= 537 yStart= 0 yEnd= 9 +LED 101 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 102 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 103 : xStart= 503 xEnd= 511 yStart= 0 yEnd= 9 +LED 104 : xStart= 494 xEnd= 503 yStart= 0 yEnd= 9 +LED 105 : xStart= 485 xEnd= 494 yStart= 0 yEnd= 9 +LED 106 : xStart= 476 xEnd= 485 yStart= 0 yEnd= 9 +LED 107 : xStart= 468 xEnd= 476 yStart= 0 yEnd= 9 +LED 108 : xStart= 459 xEnd= 468 yStart= 0 yEnd= 9 +LED 109 : xStart= 450 xEnd= 459 yStart= 0 yEnd= 9 +LED 110 : xStart= 442 xEnd= 450 yStart= 0 yEnd= 9 +LED 111 : xStart= 433 xEnd= 442 yStart= 0 yEnd= 9 +LED 112 : xStart= 424 xEnd= 433 yStart= 0 yEnd= 9 +LED 113 : xStart= 415 xEnd= 424 yStart= 0 yEnd= 9 +LED 114 : xStart= 407 xEnd= 415 yStart= 0 yEnd= 9 +LED 115 : xStart= 398 xEnd= 407 yStart= 0 yEnd= 9 +LED 116 : xStart= 389 xEnd= 398 yStart= 0 yEnd= 9 +LED 117 : xStart= 381 xEnd= 389 yStart= 0 yEnd= 9 +LED 118 : xStart= 372 xEnd= 381 yStart= 0 yEnd= 9 +LED 119 : xStart= 363 xEnd= 372 yStart= 0 yEnd= 9 +LED 120 : xStart= 354 xEnd= 363 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 354 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 285 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 276 xEnd= 285 yStart= 0 yEnd= 9 +LED 130 : xStart= 267 xEnd= 276 yStart= 0 yEnd= 9 +LED 131 : xStart= 259 xEnd= 267 yStart= 0 yEnd= 9 +LED 132 : xStart= 250 xEnd= 259 yStart= 0 yEnd= 9 +LED 133 : xStart= 241 xEnd= 250 yStart= 0 yEnd= 9 +LED 134 : xStart= 232 xEnd= 241 yStart= 0 yEnd= 9 +LED 135 : xStart= 224 xEnd= 232 yStart= 0 yEnd= 9 +LED 136 : xStart= 215 xEnd= 224 yStart= 0 yEnd= 9 +LED 137 : xStart= 206 xEnd= 215 yStart= 0 yEnd= 9 +LED 138 : xStart= 198 xEnd= 206 yStart= 0 yEnd= 9 +LED 139 : xStart= 189 xEnd= 198 yStart= 0 yEnd= 9 +LED 140 : xStart= 180 xEnd= 189 yStart= 0 yEnd= 9 +LED 141 : xStart= 171 xEnd= 180 yStart= 0 yEnd= 9 +LED 142 : xStart= 163 xEnd= 171 yStart= 0 yEnd= 9 +LED 143 : xStart= 154 xEnd= 163 yStart= 0 yEnd= 9 +LED 144 : xStart= 145 xEnd= 154 yStart= 0 yEnd= 9 +LED 145 : xStart= 136 xEnd= 145 yStart= 0 yEnd= 9 +LED 146 : xStart= 128 xEnd= 136 yStart= 0 yEnd= 9 +LED 147 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 148 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 149 : xStart= 102 xEnd= 110 yStart= 0 yEnd= 9 +LED 150 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 151 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 152 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 153 : xStart= 67 xEnd= 75 yStart= 0 yEnd= 9 +LED 154 : xStart= 58 xEnd= 67 yStart= 0 yEnd= 9 +LED 155 : xStart= 49 xEnd= 58 yStart= 0 yEnd= 9 +LED 156 : xStart= 41 xEnd= 49 yStart= 0 yEnd= 9 +LED 157 : xStart= 32 xEnd= 41 yStart= 0 yEnd= 9 +LED 158 : xStart= 23 xEnd= 32 yStart= 0 yEnd= 9 +LED 159 : xStart= 15 xEnd= 23 yStart= 0 yEnd= 9 +LED 160 : xStart= 15 xEnd= 45 yStart= 0 yEnd= 9 +LED 161 : xStart= 15 xEnd= 45 yStart= 9 yEnd= 18 +LED 162 : xStart= 15 xEnd= 45 yStart= 18 yEnd= 27 +LED 163 : xStart= 15 xEnd= 45 yStart= 27 yEnd= 36 +LED 164 : xStart= 15 xEnd= 45 yStart= 36 yEnd= 45 +LED 165 : xStart= 15 xEnd= 45 yStart= 45 yEnd= 54 +LED 166 : xStart= 15 xEnd= 45 yStart= 54 yEnd= 62 +LED 167 : xStart= 15 xEnd= 45 yStart= 62 yEnd= 72 +LED 168 : xStart= 15 xEnd= 45 yStart= 72 yEnd= 81 +LED 169 : xStart= 15 xEnd= 45 yStart= 81 yEnd= 90 +LED 170 : xStart= 15 xEnd= 45 yStart= 90 yEnd= 99 +LED 171 : xStart= 15 xEnd= 45 yStart= 99 yEnd= 108 +LED 172 : xStart= 15 xEnd= 45 yStart= 108 yEnd= 117 +LED 173 : xStart= 15 xEnd= 45 yStart= 117 yEnd= 125 +LED 174 : xStart= 15 xEnd= 45 yStart= 125 yEnd= 135 +LED 175 : xStart= 15 xEnd= 45 yStart= 135 yEnd= 144 +LED 176 : xStart= 15 xEnd= 45 yStart= 144 yEnd= 153 +LED 177 : xStart= 15 xEnd= 45 yStart= 153 yEnd= 162 +LED 178 : xStart= 15 xEnd= 45 yStart= 162 yEnd= 171 +LED 179 : xStart= 15 xEnd= 45 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#241c14" + LED 1: "#241b14" + LED (bottom+1): "#33291b" + LED (bottom+right+1): "#31332f" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#251b13" + LED 1: "#241b13" + LED (bottom+1): "#352a1b" + LED (bottom+right+1): "#323430" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 10 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 10 border.horizontalSize= 0 +buildLedMap: contentWidth= 620 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 10 xEnd= 18 yStart= 171 yEnd= 180 +LED 1 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 2 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 3 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 4 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 5 : xStart= 54 xEnd= 63 yStart= 171 yEnd= 180 +LED 6 : xStart= 63 xEnd= 72 yStart= 171 yEnd= 180 +LED 7 : xStart= 72 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 89 yStart= 171 yEnd= 180 +LED 9 : xStart= 89 xEnd= 98 yStart= 171 yEnd= 180 +LED 10 : xStart= 98 xEnd= 107 yStart= 171 yEnd= 180 +LED 11 : xStart= 107 xEnd= 116 yStart= 171 yEnd= 180 +LED 12 : xStart= 116 xEnd= 125 yStart= 171 yEnd= 180 +LED 13 : xStart= 125 xEnd= 134 yStart= 171 yEnd= 180 +LED 14 : xStart= 134 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 169 yStart= 171 yEnd= 180 +LED 18 : xStart= 169 xEnd= 178 yStart= 171 yEnd= 180 +LED 19 : xStart= 178 xEnd= 187 yStart= 171 yEnd= 180 +LED 20 : xStart= 187 xEnd= 196 yStart= 171 yEnd= 180 +LED 21 : xStart= 196 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 249 yStart= 171 yEnd= 180 +LED 27 : xStart= 249 xEnd= 258 yStart= 171 yEnd= 180 +LED 28 : xStart= 258 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 390 yStart= 171 yEnd= 180 +LED 43 : xStart= 390 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 452 yStart= 171 yEnd= 180 +LED 50 : xStart= 452 xEnd= 461 yStart= 171 yEnd= 180 +LED 51 : xStart= 461 xEnd= 470 yStart= 171 yEnd= 180 +LED 52 : xStart= 470 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 514 yStart= 171 yEnd= 180 +LED 57 : xStart= 514 xEnd= 523 yStart= 171 yEnd= 180 +LED 58 : xStart= 523 xEnd= 532 yStart= 171 yEnd= 180 +LED 59 : xStart= 532 xEnd= 541 yStart= 171 yEnd= 180 +LED 60 : xStart= 541 xEnd= 550 yStart= 171 yEnd= 180 +LED 61 : xStart= 550 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 576 yStart= 171 yEnd= 180 +LED 64 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 65 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 66 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 67 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 68 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 69 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 70 : xStart= 599 xEnd= 630 yStart= 171 yEnd= 180 +LED 71 : xStart= 599 xEnd= 630 yStart= 162 yEnd= 171 +LED 72 : xStart= 599 xEnd= 630 yStart= 153 yEnd= 162 +LED 73 : xStart= 599 xEnd= 630 yStart= 144 yEnd= 153 +LED 74 : xStart= 599 xEnd= 630 yStart= 135 yEnd= 144 +LED 75 : xStart= 599 xEnd= 630 yStart= 125 yEnd= 135 +LED 76 : xStart= 599 xEnd= 630 yStart= 117 yEnd= 125 +LED 77 : xStart= 599 xEnd= 630 yStart= 108 yEnd= 117 +LED 78 : xStart= 599 xEnd= 630 yStart= 99 yEnd= 108 +LED 79 : xStart= 599 xEnd= 630 yStart= 90 yEnd= 99 +LED 80 : xStart= 599 xEnd= 630 yStart= 80 yEnd= 90 +LED 81 : xStart= 599 xEnd= 630 yStart= 72 yEnd= 80 +LED 82 : xStart= 599 xEnd= 630 yStart= 62 yEnd= 72 +LED 83 : xStart= 599 xEnd= 630 yStart= 54 yEnd= 62 +LED 84 : xStart= 599 xEnd= 630 yStart= 45 yEnd= 54 +LED 85 : xStart= 599 xEnd= 630 yStart= 35 yEnd= 45 +LED 86 : xStart= 599 xEnd= 630 yStart= 27 yEnd= 35 +LED 87 : xStart= 599 xEnd= 630 yStart= 17 yEnd= 27 +LED 88 : xStart= 599 xEnd= 630 yStart= 9 yEnd= 17 +LED 89 : xStart= 599 xEnd= 630 yStart= 0 yEnd= 9 +LED 90 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 91 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 92 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 93 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 94 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 95 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 576 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 550 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 541 xEnd= 550 yStart= 0 yEnd= 9 +LED 100 : xStart= 532 xEnd= 541 yStart= 0 yEnd= 9 +LED 101 : xStart= 523 xEnd= 532 yStart= 0 yEnd= 9 +LED 102 : xStart= 514 xEnd= 523 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 514 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 470 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 461 xEnd= 470 yStart= 0 yEnd= 9 +LED 109 : xStart= 452 xEnd= 461 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 452 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 390 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 390 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 258 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 249 xEnd= 258 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 249 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 196 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 187 xEnd= 196 yStart= 0 yEnd= 9 +LED 140 : xStart= 178 xEnd= 187 yStart= 0 yEnd= 9 +LED 141 : xStart= 169 xEnd= 178 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 169 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 125 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 116 xEnd= 125 yStart= 0 yEnd= 9 +LED 148 : xStart= 107 xEnd= 116 yStart= 0 yEnd= 9 +LED 149 : xStart= 98 xEnd= 107 yStart= 0 yEnd= 9 +LED 150 : xStart= 89 xEnd= 98 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 89 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 63 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 155 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 156 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 157 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 158 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 159 : xStart= 10 xEnd= 18 yStart= 0 yEnd= 9 +LED 160 : xStart= 10 xEnd= 41 yStart= 0 yEnd= 9 +LED 161 : xStart= 10 xEnd= 41 yStart= 9 yEnd= 18 +LED 162 : xStart= 10 xEnd= 41 yStart= 18 yEnd= 27 +LED 163 : xStart= 10 xEnd= 41 yStart= 27 yEnd= 36 +LED 164 : xStart= 10 xEnd= 41 yStart= 36 yEnd= 45 +LED 165 : xStart= 10 xEnd= 41 yStart= 45 yEnd= 54 +LED 166 : xStart= 10 xEnd= 41 yStart= 54 yEnd= 62 +LED 167 : xStart= 10 xEnd= 41 yStart= 62 yEnd= 72 +LED 168 : xStart= 10 xEnd= 41 yStart= 72 yEnd= 81 +LED 169 : xStart= 10 xEnd= 41 yStart= 81 yEnd= 90 +LED 170 : xStart= 10 xEnd= 41 yStart= 90 yEnd= 99 +LED 171 : xStart= 10 xEnd= 41 yStart= 99 yEnd= 108 +LED 172 : xStart= 10 xEnd= 41 yStart= 108 yEnd= 117 +LED 173 : xStart= 10 xEnd= 41 yStart= 117 yEnd= 125 +LED 174 : xStart= 10 xEnd= 41 yStart= 125 yEnd= 135 +LED 175 : xStart= 10 xEnd= 41 yStart= 135 yEnd= 144 +LED 176 : xStart= 10 xEnd= 41 yStart= 144 yEnd= 153 +LED 177 : xStart= 10 xEnd= 41 yStart= 153 yEnd= 162 +LED 178 : xStart= 10 xEnd= 41 yStart= 162 yEnd= 171 +LED 179 : xStart= 10 xEnd= 41 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#231912" + LED 1: "#251b12" + LED (bottom+1): "#362a1a" + LED (bottom+right+1): "#323430" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#231911" + LED 1: "#261b12" + LED (bottom+1): "#372b1a" + LED (bottom+right+1): "#323530" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#241910" + LED 1: "#271b11" + LED (bottom+1): "#392c19" + LED (bottom+right+1): "#333530" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#24190f" + LED 1: "#271b10" + LED (bottom+1): "#3a2c19" + LED (bottom+right+1): "#333631" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#24180e" + LED 1: "#281b0f" + LED (bottom+1): "#3b2d19" + LED (bottom+right+1): "#343631" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#24180e" + LED 1: "#281b0f" + LED (bottom+1): "#3c2d18" + LED (bottom+right+1): "#353832" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25180d" + LED 1: "#291b0e" + LED (bottom+1): "#3d2d18" + LED (bottom+right+1): "#363833" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25180d" + LED 1: "#291b0e" + LED (bottom+1): "#3e2e18" + LED (bottom+right+1): "#363933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170c" + LED 1: "#291b0d" + LED (bottom+1): "#3f2e18" + LED (bottom+right+1): "#363933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170c" + LED 1: "#291b0d" + LED (bottom+1): "#3f2f17" + LED (bottom+right+1): "#363933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170c" + LED 1: "#2a1b0d" + LED (bottom+1): "#402f17" + LED (bottom+right+1): "#373933" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170b" + LED 1: "#2a1b0c" + LED (bottom+1): "#402f17" + LED (bottom+right+1): "#373a33" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170b" + LED 1: "#2a1b0c" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#373a33" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#2a1b0c" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170b" + LED 1: "#2a1a0c" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#2a1b0c" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170b" + LED 1: "#2a1a0c" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#2a1a0c" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#2a1b0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                  [48;2;222;223;225m                      +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 3 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 3 border.horizontalSize= 0 +buildLedMap: contentWidth= 634 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 3 xEnd= 12 yStart= 171 yEnd= 180 +LED 1 : xStart= 12 xEnd= 21 yStart= 171 yEnd= 180 +LED 2 : xStart= 21 xEnd= 30 yStart= 171 yEnd= 180 +LED 3 : xStart= 30 xEnd= 39 yStart= 171 yEnd= 180 +LED 4 : xStart= 39 xEnd= 48 yStart= 171 yEnd= 180 +LED 5 : xStart= 48 xEnd= 57 yStart= 171 yEnd= 180 +LED 6 : xStart= 57 xEnd= 66 yStart= 171 yEnd= 180 +LED 7 : xStart= 66 xEnd= 75 yStart= 171 yEnd= 180 +LED 8 : xStart= 75 xEnd= 84 yStart= 171 yEnd= 180 +LED 9 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 10 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 11 : xStart= 102 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 537 yStart= 171 yEnd= 180 +LED 59 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 60 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 61 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 62 : xStart= 564 xEnd= 573 yStart= 171 yEnd= 180 +LED 63 : xStart= 573 xEnd= 582 yStart= 171 yEnd= 180 +LED 64 : xStart= 582 xEnd= 591 yStart= 171 yEnd= 180 +LED 65 : xStart= 591 xEnd= 600 yStart= 171 yEnd= 180 +LED 66 : xStart= 600 xEnd= 609 yStart= 171 yEnd= 180 +LED 67 : xStart= 609 xEnd= 618 yStart= 171 yEnd= 180 +LED 68 : xStart= 618 xEnd= 627 yStart= 171 yEnd= 180 +LED 69 : xStart= 627 xEnd= 637 yStart= 171 yEnd= 180 +LED 70 : xStart= 606 xEnd= 637 yStart= 171 yEnd= 180 +LED 71 : xStart= 606 xEnd= 637 yStart= 162 yEnd= 171 +LED 72 : xStart= 606 xEnd= 637 yStart= 153 yEnd= 162 +LED 73 : xStart= 606 xEnd= 637 yStart= 144 yEnd= 153 +LED 74 : xStart= 606 xEnd= 637 yStart= 135 yEnd= 144 +LED 75 : xStart= 606 xEnd= 637 yStart= 125 yEnd= 135 +LED 76 : xStart= 606 xEnd= 637 yStart= 117 yEnd= 125 +LED 77 : xStart= 606 xEnd= 637 yStart= 108 yEnd= 117 +LED 78 : xStart= 606 xEnd= 637 yStart= 99 yEnd= 108 +LED 79 : xStart= 606 xEnd= 637 yStart= 90 yEnd= 99 +LED 80 : xStart= 606 xEnd= 637 yStart= 80 yEnd= 90 +LED 81 : xStart= 606 xEnd= 637 yStart= 72 yEnd= 80 +LED 82 : xStart= 606 xEnd= 637 yStart= 62 yEnd= 72 +LED 83 : xStart= 606 xEnd= 637 yStart= 54 yEnd= 62 +LED 84 : xStart= 606 xEnd= 637 yStart= 45 yEnd= 54 +LED 85 : xStart= 606 xEnd= 637 yStart= 35 yEnd= 45 +LED 86 : xStart= 606 xEnd= 637 yStart= 27 yEnd= 35 +LED 87 : xStart= 606 xEnd= 637 yStart= 17 yEnd= 27 +LED 88 : xStart= 606 xEnd= 637 yStart= 9 yEnd= 17 +LED 89 : xStart= 606 xEnd= 637 yStart= 0 yEnd= 9 +LED 90 : xStart= 627 xEnd= 637 yStart= 0 yEnd= 9 +LED 91 : xStart= 618 xEnd= 627 yStart= 0 yEnd= 9 +LED 92 : xStart= 609 xEnd= 618 yStart= 0 yEnd= 9 +LED 93 : xStart= 600 xEnd= 609 yStart= 0 yEnd= 9 +LED 94 : xStart= 591 xEnd= 600 yStart= 0 yEnd= 9 +LED 95 : xStart= 582 xEnd= 591 yStart= 0 yEnd= 9 +LED 96 : xStart= 573 xEnd= 582 yStart= 0 yEnd= 9 +LED 97 : xStart= 564 xEnd= 573 yStart= 0 yEnd= 9 +LED 98 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 99 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 100 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 537 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 102 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 150 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 151 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 152 : xStart= 66 xEnd= 75 yStart= 0 yEnd= 9 +LED 153 : xStart= 57 xEnd= 66 yStart= 0 yEnd= 9 +LED 154 : xStart= 48 xEnd= 57 yStart= 0 yEnd= 9 +LED 155 : xStart= 39 xEnd= 48 yStart= 0 yEnd= 9 +LED 156 : xStart= 30 xEnd= 39 yStart= 0 yEnd= 9 +LED 157 : xStart= 21 xEnd= 30 yStart= 0 yEnd= 9 +LED 158 : xStart= 12 xEnd= 21 yStart= 0 yEnd= 9 +LED 159 : xStart= 3 xEnd= 12 yStart= 0 yEnd= 9 +LED 160 : xStart= 3 xEnd= 34 yStart= 0 yEnd= 9 +LED 161 : xStart= 3 xEnd= 34 yStart= 9 yEnd= 18 +LED 162 : xStart= 3 xEnd= 34 yStart= 18 yEnd= 27 +LED 163 : xStart= 3 xEnd= 34 yStart= 27 yEnd= 36 +LED 164 : xStart= 3 xEnd= 34 yStart= 36 yEnd= 45 +LED 165 : xStart= 3 xEnd= 34 yStart= 45 yEnd= 54 +LED 166 : xStart= 3 xEnd= 34 yStart= 54 yEnd= 62 +LED 167 : xStart= 3 xEnd= 34 yStart= 62 yEnd= 72 +LED 168 : xStart= 3 xEnd= 34 yStart= 72 yEnd= 81 +LED 169 : xStart= 3 xEnd= 34 yStart= 81 yEnd= 90 +LED 170 : xStart= 3 xEnd= 34 yStart= 90 yEnd= 99 +LED 171 : xStart= 3 xEnd= 34 yStart= 99 yEnd= 108 +LED 172 : xStart= 3 xEnd= 34 yStart= 108 yEnd= 117 +LED 173 : xStart= 3 xEnd= 34 yStart= 117 yEnd= 125 +LED 174 : xStart= 3 xEnd= 34 yStart= 125 yEnd= 135 +LED 175 : xStart= 3 xEnd= 34 yStart= 135 yEnd= 144 +LED 176 : xStart= 3 xEnd= 34 yStart= 144 yEnd= 153 +LED 177 : xStart= 3 xEnd= 34 yStart= 153 yEnd= 162 +LED 178 : xStart= 3 xEnd= 34 yStart= 162 yEnd= 171 +LED 179 : xStart= 3 xEnd= 34 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#28190b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 3 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 3 border.horizontalSize= 0 +buildLedMap: contentWidth= 634 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 3 xEnd= 12 yStart= 171 yEnd= 180 +LED 1 : xStart= 12 xEnd= 21 yStart= 171 yEnd= 180 +LED 2 : xStart= 21 xEnd= 30 yStart= 171 yEnd= 180 +LED 3 : xStart= 30 xEnd= 39 yStart= 171 yEnd= 180 +LED 4 : xStart= 39 xEnd= 48 yStart= 171 yEnd= 180 +LED 5 : xStart= 48 xEnd= 57 yStart= 171 yEnd= 180 +LED 6 : xStart= 57 xEnd= 66 yStart= 171 yEnd= 180 +LED 7 : xStart= 66 xEnd= 75 yStart= 171 yEnd= 180 +LED 8 : xStart= 75 xEnd= 84 yStart= 171 yEnd= 180 +LED 9 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 10 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 11 : xStart= 102 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 537 yStart= 171 yEnd= 180 +LED 59 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 60 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 61 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 62 : xStart= 564 xEnd= 573 yStart= 171 yEnd= 180 +LED 63 : xStart= 573 xEnd= 582 yStart= 171 yEnd= 180 +LED 64 : xStart= 582 xEnd= 591 yStart= 171 yEnd= 180 +LED 65 : xStart= 591 xEnd= 600 yStart= 171 yEnd= 180 +LED 66 : xStart= 600 xEnd= 609 yStart= 171 yEnd= 180 +LED 67 : xStart= 609 xEnd= 618 yStart= 171 yEnd= 180 +LED 68 : xStart= 618 xEnd= 627 yStart= 171 yEnd= 180 +LED 69 : xStart= 627 xEnd= 637 yStart= 171 yEnd= 180 +LED 70 : xStart= 606 xEnd= 637 yStart= 171 yEnd= 180 +LED 71 : xStart= 606 xEnd= 637 yStart= 162 yEnd= 171 +LED 72 : xStart= 606 xEnd= 637 yStart= 153 yEnd= 162 +LED 73 : xStart= 606 xEnd= 637 yStart= 144 yEnd= 153 +LED 74 : xStart= 606 xEnd= 637 yStart= 135 yEnd= 144 +LED 75 : xStart= 606 xEnd= 637 yStart= 125 yEnd= 135 +LED 76 : xStart= 606 xEnd= 637 yStart= 117 yEnd= 125 +LED 77 : xStart= 606 xEnd= 637 yStart= 108 yEnd= 117 +LED 78 : xStart= 606 xEnd= 637 yStart= 99 yEnd= 108 +LED 79 : xStart= 606 xEnd= 637 yStart= 90 yEnd= 99 +LED 80 : xStart= 606 xEnd= 637 yStart= 80 yEnd= 90 +LED 81 : xStart= 606 xEnd= 637 yStart= 72 yEnd= 80 +LED 82 : xStart= 606 xEnd= 637 yStart= 62 yEnd= 72 +LED 83 : xStart= 606 xEnd= 637 yStart= 54 yEnd= 62 +LED 84 : xStart= 606 xEnd= 637 yStart= 45 yEnd= 54 +LED 85 : xStart= 606 xEnd= 637 yStart= 35 yEnd= 45 +LED 86 : xStart= 606 xEnd= 637 yStart= 27 yEnd= 35 +LED 87 : xStart= 606 xEnd= 637 yStart= 17 yEnd= 27 +LED 88 : xStart= 606 xEnd= 637 yStart= 9 yEnd= 17 +LED 89 : xStart= 606 xEnd= 637 yStart= 0 yEnd= 9 +LED 90 : xStart= 627 xEnd= 637 yStart= 0 yEnd= 9 +LED 91 : xStart= 618 xEnd= 627 yStart= 0 yEnd= 9 +LED 92 : xStart= 609 xEnd= 618 yStart= 0 yEnd= 9 +LED 93 : xStart= 600 xEnd= 609 yStart= 0 yEnd= 9 +LED 94 : xStart= 591 xEnd= 600 yStart= 0 yEnd= 9 +LED 95 : xStart= 582 xEnd= 591 yStart= 0 yEnd= 9 +LED 96 : xStart= 573 xEnd= 582 yStart= 0 yEnd= 9 +LED 97 : xStart= 564 xEnd= 573 yStart= 0 yEnd= 9 +LED 98 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 99 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 100 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 537 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 102 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 150 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 151 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 152 : xStart= 66 xEnd= 75 yStart= 0 yEnd= 9 +LED 153 : xStart= 57 xEnd= 66 yStart= 0 yEnd= 9 +LED 154 : xStart= 48 xEnd= 57 yStart= 0 yEnd= 9 +LED 155 : xStart= 39 xEnd= 48 yStart= 0 yEnd= 9 +LED 156 : xStart= 30 xEnd= 39 yStart= 0 yEnd= 9 +LED 157 : xStart= 21 xEnd= 30 yStart= 0 yEnd= 9 +LED 158 : xStart= 12 xEnd= 21 yStart= 0 yEnd= 9 +LED 159 : xStart= 3 xEnd= 12 yStart= 0 yEnd= 9 +LED 160 : xStart= 3 xEnd= 34 yStart= 0 yEnd= 9 +LED 161 : xStart= 3 xEnd= 34 yStart= 9 yEnd= 18 +LED 162 : xStart= 3 xEnd= 34 yStart= 18 yEnd= 27 +LED 163 : xStart= 3 xEnd= 34 yStart= 27 yEnd= 36 +LED 164 : xStart= 3 xEnd= 34 yStart= 36 yEnd= 45 +LED 165 : xStart= 3 xEnd= 34 yStart= 45 yEnd= 54 +LED 166 : xStart= 3 xEnd= 34 yStart= 54 yEnd= 62 +LED 167 : xStart= 3 xEnd= 34 yStart= 62 yEnd= 72 +LED 168 : xStart= 3 xEnd= 34 yStart= 72 yEnd= 81 +LED 169 : xStart= 3 xEnd= 34 yStart= 81 yEnd= 90 +LED 170 : xStart= 3 xEnd= 34 yStart= 90 yEnd= 99 +LED 171 : xStart= 3 xEnd= 34 yStart= 99 yEnd= 108 +LED 172 : xStart= 3 xEnd= 34 yStart= 108 yEnd= 117 +LED 173 : xStart= 3 xEnd= 34 yStart= 117 yEnd= 125 +LED 174 : xStart= 3 xEnd= 34 yStart= 125 yEnd= 135 +LED 175 : xStart= 3 xEnd= 34 yStart= 135 yEnd= 144 +LED 176 : xStart= 3 xEnd= 34 yStart= 144 yEnd= 153 +LED 177 : xStart= 3 xEnd= 34 yStart= 153 yEnd= 162 +LED 178 : xStart= 3 xEnd= 34 yStart= 162 yEnd= 171 +LED 179 : xStart= 3 xEnd= 34 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#28190b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 3 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 3 border.horizontalSize= 0 +buildLedMap: contentWidth= 634 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 3 xEnd= 12 yStart= 171 yEnd= 180 +LED 1 : xStart= 12 xEnd= 21 yStart= 171 yEnd= 180 +LED 2 : xStart= 21 xEnd= 30 yStart= 171 yEnd= 180 +LED 3 : xStart= 30 xEnd= 39 yStart= 171 yEnd= 180 +LED 4 : xStart= 39 xEnd= 48 yStart= 171 yEnd= 180 +LED 5 : xStart= 48 xEnd= 57 yStart= 171 yEnd= 180 +LED 6 : xStart= 57 xEnd= 66 yStart= 171 yEnd= 180 +LED 7 : xStart= 66 xEnd= 75 yStart= 171 yEnd= 180 +LED 8 : xStart= 75 xEnd= 84 yStart= 171 yEnd= 180 +LED 9 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 10 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 11 : xStart= 102 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 537 yStart= 171 yEnd= 180 +LED 59 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 60 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 61 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 62 : xStart= 564 xEnd= 573 yStart= 171 yEnd= 180 +LED 63 : xStart= 573 xEnd= 582 yStart= 171 yEnd= 180 +LED 64 : xStart= 582 xEnd= 591 yStart= 171 yEnd= 180 +LED 65 : xStart= 591 xEnd= 600 yStart= 171 yEnd= 180 +LED 66 : xStart= 600 xEnd= 609 yStart= 171 yEnd= 180 +LED 67 : xStart= 609 xEnd= 618 yStart= 171 yEnd= 180 +LED 68 : xStart= 618 xEnd= 627 yStart= 171 yEnd= 180 +LED 69 : xStart= 627 xEnd= 637 yStart= 171 yEnd= 180 +LED 70 : xStart= 606 xEnd= 637 yStart= 171 yEnd= 180 +LED 71 : xStart= 606 xEnd= 637 yStart= 162 yEnd= 171 +LED 72 : xStart= 606 xEnd= 637 yStart= 153 yEnd= 162 +LED 73 : xStart= 606 xEnd= 637 yStart= 144 yEnd= 153 +LED 74 : xStart= 606 xEnd= 637 yStart= 135 yEnd= 144 +LED 75 : xStart= 606 xEnd= 637 yStart= 125 yEnd= 135 +LED 76 : xStart= 606 xEnd= 637 yStart= 117 yEnd= 125 +LED 77 : xStart= 606 xEnd= 637 yStart= 108 yEnd= 117 +LED 78 : xStart= 606 xEnd= 637 yStart= 99 yEnd= 108 +LED 79 : xStart= 606 xEnd= 637 yStart= 90 yEnd= 99 +LED 80 : xStart= 606 xEnd= 637 yStart= 80 yEnd= 90 +LED 81 : xStart= 606 xEnd= 637 yStart= 72 yEnd= 80 +LED 82 : xStart= 606 xEnd= 637 yStart= 62 yEnd= 72 +LED 83 : xStart= 606 xEnd= 637 yStart= 54 yEnd= 62 +LED 84 : xStart= 606 xEnd= 637 yStart= 45 yEnd= 54 +LED 85 : xStart= 606 xEnd= 637 yStart= 35 yEnd= 45 +LED 86 : xStart= 606 xEnd= 637 yStart= 27 yEnd= 35 +LED 87 : xStart= 606 xEnd= 637 yStart= 17 yEnd= 27 +LED 88 : xStart= 606 xEnd= 637 yStart= 9 yEnd= 17 +LED 89 : xStart= 606 xEnd= 637 yStart= 0 yEnd= 9 +LED 90 : xStart= 627 xEnd= 637 yStart= 0 yEnd= 9 +LED 91 : xStart= 618 xEnd= 627 yStart= 0 yEnd= 9 +LED 92 : xStart= 609 xEnd= 618 yStart= 0 yEnd= 9 +LED 93 : xStart= 600 xEnd= 609 yStart= 0 yEnd= 9 +LED 94 : xStart= 591 xEnd= 600 yStart= 0 yEnd= 9 +LED 95 : xStart= 582 xEnd= 591 yStart= 0 yEnd= 9 +LED 96 : xStart= 573 xEnd= 582 yStart= 0 yEnd= 9 +LED 97 : xStart= 564 xEnd= 573 yStart= 0 yEnd= 9 +LED 98 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 99 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 100 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 537 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 102 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 150 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 151 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 152 : xStart= 66 xEnd= 75 yStart= 0 yEnd= 9 +LED 153 : xStart= 57 xEnd= 66 yStart= 0 yEnd= 9 +LED 154 : xStart= 48 xEnd= 57 yStart= 0 yEnd= 9 +LED 155 : xStart= 39 xEnd= 48 yStart= 0 yEnd= 9 +LED 156 : xStart= 30 xEnd= 39 yStart= 0 yEnd= 9 +LED 157 : xStart= 21 xEnd= 30 yStart= 0 yEnd= 9 +LED 158 : xStart= 12 xEnd= 21 yStart= 0 yEnd= 9 +LED 159 : xStart= 3 xEnd= 12 yStart= 0 yEnd= 9 +LED 160 : xStart= 3 xEnd= 34 yStart= 0 yEnd= 9 +LED 161 : xStart= 3 xEnd= 34 yStart= 9 yEnd= 18 +LED 162 : xStart= 3 xEnd= 34 yStart= 18 yEnd= 27 +LED 163 : xStart= 3 xEnd= 34 yStart= 27 yEnd= 36 +LED 164 : xStart= 3 xEnd= 34 yStart= 36 yEnd= 45 +LED 165 : xStart= 3 xEnd= 34 yStart= 45 yEnd= 54 +LED 166 : xStart= 3 xEnd= 34 yStart= 54 yEnd= 62 +LED 167 : xStart= 3 xEnd= 34 yStart= 62 yEnd= 72 +LED 168 : xStart= 3 xEnd= 34 yStart= 72 yEnd= 81 +LED 169 : xStart= 3 xEnd= 34 yStart= 81 yEnd= 90 +LED 170 : xStart= 3 xEnd= 34 yStart= 90 yEnd= 99 +LED 171 : xStart= 3 xEnd= 34 yStart= 99 yEnd= 108 +LED 172 : xStart= 3 xEnd= 34 yStart= 108 yEnd= 117 +LED 173 : xStart= 3 xEnd= 34 yStart= 117 yEnd= 125 +LED 174 : xStart= 3 xEnd= 34 yStart= 125 yEnd= 135 +LED 175 : xStart= 3 xEnd= 34 yStart= 135 yEnd= 144 +LED 176 : xStart= 3 xEnd= 34 yStart= 144 yEnd= 153 +LED 177 : xStart= 3 xEnd= 34 yStart= 153 yEnd= 162 +LED 178 : xStart= 3 xEnd= 34 yStart= 162 yEnd= 171 +LED 179 : xStart= 3 xEnd= 34 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#28190b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 8 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 8 border.horizontalSize= 0 +buildLedMap: contentWidth= 624 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 8 xEnd= 16 yStart= 171 yEnd= 180 +LED 1 : xStart= 16 xEnd= 25 yStart= 171 yEnd= 180 +LED 2 : xStart= 25 xEnd= 34 yStart= 171 yEnd= 180 +LED 3 : xStart= 34 xEnd= 43 yStart= 171 yEnd= 180 +LED 4 : xStart= 43 xEnd= 52 yStart= 171 yEnd= 180 +LED 5 : xStart= 52 xEnd= 61 yStart= 171 yEnd= 180 +LED 6 : xStart= 61 xEnd= 70 yStart= 171 yEnd= 180 +LED 7 : xStart= 70 xEnd= 79 yStart= 171 yEnd= 180 +LED 8 : xStart= 79 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 114 yStart= 171 yEnd= 180 +LED 12 : xStart= 114 xEnd= 123 yStart= 171 yEnd= 180 +LED 13 : xStart= 123 xEnd= 132 yStart= 171 yEnd= 180 +LED 14 : xStart= 132 xEnd= 141 yStart= 171 yEnd= 180 +LED 15 : xStart= 141 xEnd= 150 yStart= 171 yEnd= 180 +LED 16 : xStart= 150 xEnd= 159 yStart= 171 yEnd= 180 +LED 17 : xStart= 159 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 480 yStart= 171 yEnd= 180 +LED 53 : xStart= 480 xEnd= 489 yStart= 171 yEnd= 180 +LED 54 : xStart= 489 xEnd= 498 yStart= 171 yEnd= 180 +LED 55 : xStart= 498 xEnd= 507 yStart= 171 yEnd= 180 +LED 56 : xStart= 507 xEnd= 516 yStart= 171 yEnd= 180 +LED 57 : xStart= 516 xEnd= 525 yStart= 171 yEnd= 180 +LED 58 : xStart= 525 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 560 yStart= 171 yEnd= 180 +LED 62 : xStart= 560 xEnd= 569 yStart= 171 yEnd= 180 +LED 63 : xStart= 569 xEnd= 578 yStart= 171 yEnd= 180 +LED 64 : xStart= 578 xEnd= 587 yStart= 171 yEnd= 180 +LED 65 : xStart= 587 xEnd= 596 yStart= 171 yEnd= 180 +LED 66 : xStart= 596 xEnd= 605 yStart= 171 yEnd= 180 +LED 67 : xStart= 605 xEnd= 614 yStart= 171 yEnd= 180 +LED 68 : xStart= 614 xEnd= 623 yStart= 171 yEnd= 180 +LED 69 : xStart= 623 xEnd= 632 yStart= 171 yEnd= 180 +LED 70 : xStart= 601 xEnd= 632 yStart= 171 yEnd= 180 +LED 71 : xStart= 601 xEnd= 632 yStart= 162 yEnd= 171 +LED 72 : xStart= 601 xEnd= 632 yStart= 153 yEnd= 162 +LED 73 : xStart= 601 xEnd= 632 yStart= 144 yEnd= 153 +LED 74 : xStart= 601 xEnd= 632 yStart= 135 yEnd= 144 +LED 75 : xStart= 601 xEnd= 632 yStart= 125 yEnd= 135 +LED 76 : xStart= 601 xEnd= 632 yStart= 117 yEnd= 125 +LED 77 : xStart= 601 xEnd= 632 yStart= 108 yEnd= 117 +LED 78 : xStart= 601 xEnd= 632 yStart= 99 yEnd= 108 +LED 79 : xStart= 601 xEnd= 632 yStart= 90 yEnd= 99 +LED 80 : xStart= 601 xEnd= 632 yStart= 80 yEnd= 90 +LED 81 : xStart= 601 xEnd= 632 yStart= 72 yEnd= 80 +LED 82 : xStart= 601 xEnd= 632 yStart= 62 yEnd= 72 +LED 83 : xStart= 601 xEnd= 632 yStart= 54 yEnd= 62 +LED 84 : xStart= 601 xEnd= 632 yStart= 45 yEnd= 54 +LED 85 : xStart= 601 xEnd= 632 yStart= 35 yEnd= 45 +LED 86 : xStart= 601 xEnd= 632 yStart= 27 yEnd= 35 +LED 87 : xStart= 601 xEnd= 632 yStart= 17 yEnd= 27 +LED 88 : xStart= 601 xEnd= 632 yStart= 9 yEnd= 17 +LED 89 : xStart= 601 xEnd= 632 yStart= 0 yEnd= 9 +LED 90 : xStart= 623 xEnd= 632 yStart= 0 yEnd= 9 +LED 91 : xStart= 614 xEnd= 623 yStart= 0 yEnd= 9 +LED 92 : xStart= 605 xEnd= 614 yStart= 0 yEnd= 9 +LED 93 : xStart= 596 xEnd= 605 yStart= 0 yEnd= 9 +LED 94 : xStart= 587 xEnd= 596 yStart= 0 yEnd= 9 +LED 95 : xStart= 578 xEnd= 587 yStart= 0 yEnd= 9 +LED 96 : xStart= 569 xEnd= 578 yStart= 0 yEnd= 9 +LED 97 : xStart= 560 xEnd= 569 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 560 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 525 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 516 xEnd= 525 yStart= 0 yEnd= 9 +LED 103 : xStart= 507 xEnd= 516 yStart= 0 yEnd= 9 +LED 104 : xStart= 498 xEnd= 507 yStart= 0 yEnd= 9 +LED 105 : xStart= 489 xEnd= 498 yStart= 0 yEnd= 9 +LED 106 : xStart= 480 xEnd= 489 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 480 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 159 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 150 xEnd= 159 yStart= 0 yEnd= 9 +LED 144 : xStart= 141 xEnd= 150 yStart= 0 yEnd= 9 +LED 145 : xStart= 132 xEnd= 141 yStart= 0 yEnd= 9 +LED 146 : xStart= 123 xEnd= 132 yStart= 0 yEnd= 9 +LED 147 : xStart= 114 xEnd= 123 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 114 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 79 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 70 xEnd= 79 yStart= 0 yEnd= 9 +LED 153 : xStart= 61 xEnd= 70 yStart= 0 yEnd= 9 +LED 154 : xStart= 52 xEnd= 61 yStart= 0 yEnd= 9 +LED 155 : xStart= 43 xEnd= 52 yStart= 0 yEnd= 9 +LED 156 : xStart= 34 xEnd= 43 yStart= 0 yEnd= 9 +LED 157 : xStart= 25 xEnd= 34 yStart= 0 yEnd= 9 +LED 158 : xStart= 16 xEnd= 25 yStart= 0 yEnd= 9 +LED 159 : xStart= 8 xEnd= 16 yStart= 0 yEnd= 9 +LED 160 : xStart= 8 xEnd= 39 yStart= 0 yEnd= 9 +LED 161 : xStart= 8 xEnd= 39 yStart= 9 yEnd= 18 +LED 162 : xStart= 8 xEnd= 39 yStart= 18 yEnd= 27 +LED 163 : xStart= 8 xEnd= 39 yStart= 27 yEnd= 36 +LED 164 : xStart= 8 xEnd= 39 yStart= 36 yEnd= 45 +LED 165 : xStart= 8 xEnd= 39 yStart= 45 yEnd= 54 +LED 166 : xStart= 8 xEnd= 39 yStart= 54 yEnd= 62 +LED 167 : xStart= 8 xEnd= 39 yStart= 62 yEnd= 72 +LED 168 : xStart= 8 xEnd= 39 yStart= 72 yEnd= 81 +LED 169 : xStart= 8 xEnd= 39 yStart= 81 yEnd= 90 +LED 170 : xStart= 8 xEnd= 39 yStart= 90 yEnd= 99 +LED 171 : xStart= 8 xEnd= 39 yStart= 99 yEnd= 108 +LED 172 : xStart= 8 xEnd= 39 yStart= 108 yEnd= 117 +LED 173 : xStart= 8 xEnd= 39 yStart= 117 yEnd= 125 +LED 174 : xStart= 8 xEnd= 39 yStart= 125 yEnd= 135 +LED 175 : xStart= 8 xEnd= 39 yStart= 135 yEnd= 144 +LED 176 : xStart= 8 xEnd= 39 yStart= 144 yEnd= 153 +LED 177 : xStart= 8 xEnd= 39 yStart= 153 yEnd= 162 +LED 178 : xStart= 8 xEnd= 39 yStart= 162 yEnd= 171 +LED 179 : xStart= 8 xEnd= 39 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170a" + LED 1: "#2b1b0c" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 3 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 3 border.horizontalSize= 0 +buildLedMap: contentWidth= 634 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 3 xEnd= 12 yStart= 171 yEnd= 180 +LED 1 : xStart= 12 xEnd= 21 yStart= 171 yEnd= 180 +LED 2 : xStart= 21 xEnd= 30 yStart= 171 yEnd= 180 +LED 3 : xStart= 30 xEnd= 39 yStart= 171 yEnd= 180 +LED 4 : xStart= 39 xEnd= 48 yStart= 171 yEnd= 180 +LED 5 : xStart= 48 xEnd= 57 yStart= 171 yEnd= 180 +LED 6 : xStart= 57 xEnd= 66 yStart= 171 yEnd= 180 +LED 7 : xStart= 66 xEnd= 75 yStart= 171 yEnd= 180 +LED 8 : xStart= 75 xEnd= 84 yStart= 171 yEnd= 180 +LED 9 : xStart= 84 xEnd= 93 yStart= 171 yEnd= 180 +LED 10 : xStart= 93 xEnd= 102 yStart= 171 yEnd= 180 +LED 11 : xStart= 102 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 537 yStart= 171 yEnd= 180 +LED 59 : xStart= 537 xEnd= 546 yStart= 171 yEnd= 180 +LED 60 : xStart= 546 xEnd= 555 yStart= 171 yEnd= 180 +LED 61 : xStart= 555 xEnd= 564 yStart= 171 yEnd= 180 +LED 62 : xStart= 564 xEnd= 573 yStart= 171 yEnd= 180 +LED 63 : xStart= 573 xEnd= 582 yStart= 171 yEnd= 180 +LED 64 : xStart= 582 xEnd= 591 yStart= 171 yEnd= 180 +LED 65 : xStart= 591 xEnd= 600 yStart= 171 yEnd= 180 +LED 66 : xStart= 600 xEnd= 609 yStart= 171 yEnd= 180 +LED 67 : xStart= 609 xEnd= 618 yStart= 171 yEnd= 180 +LED 68 : xStart= 618 xEnd= 627 yStart= 171 yEnd= 180 +LED 69 : xStart= 627 xEnd= 637 yStart= 171 yEnd= 180 +LED 70 : xStart= 606 xEnd= 637 yStart= 171 yEnd= 180 +LED 71 : xStart= 606 xEnd= 637 yStart= 162 yEnd= 171 +LED 72 : xStart= 606 xEnd= 637 yStart= 153 yEnd= 162 +LED 73 : xStart= 606 xEnd= 637 yStart= 144 yEnd= 153 +LED 74 : xStart= 606 xEnd= 637 yStart= 135 yEnd= 144 +LED 75 : xStart= 606 xEnd= 637 yStart= 125 yEnd= 135 +LED 76 : xStart= 606 xEnd= 637 yStart= 117 yEnd= 125 +LED 77 : xStart= 606 xEnd= 637 yStart= 108 yEnd= 117 +LED 78 : xStart= 606 xEnd= 637 yStart= 99 yEnd= 108 +LED 79 : xStart= 606 xEnd= 637 yStart= 90 yEnd= 99 +LED 80 : xStart= 606 xEnd= 637 yStart= 80 yEnd= 90 +LED 81 : xStart= 606 xEnd= 637 yStart= 72 yEnd= 80 +LED 82 : xStart= 606 xEnd= 637 yStart= 62 yEnd= 72 +LED 83 : xStart= 606 xEnd= 637 yStart= 54 yEnd= 62 +LED 84 : xStart= 606 xEnd= 637 yStart= 45 yEnd= 54 +LED 85 : xStart= 606 xEnd= 637 yStart= 35 yEnd= 45 +LED 86 : xStart= 606 xEnd= 637 yStart= 27 yEnd= 35 +LED 87 : xStart= 606 xEnd= 637 yStart= 17 yEnd= 27 +LED 88 : xStart= 606 xEnd= 637 yStart= 9 yEnd= 17 +LED 89 : xStart= 606 xEnd= 637 yStart= 0 yEnd= 9 +LED 90 : xStart= 627 xEnd= 637 yStart= 0 yEnd= 9 +LED 91 : xStart= 618 xEnd= 627 yStart= 0 yEnd= 9 +LED 92 : xStart= 609 xEnd= 618 yStart= 0 yEnd= 9 +LED 93 : xStart= 600 xEnd= 609 yStart= 0 yEnd= 9 +LED 94 : xStart= 591 xEnd= 600 yStart= 0 yEnd= 9 +LED 95 : xStart= 582 xEnd= 591 yStart= 0 yEnd= 9 +LED 96 : xStart= 573 xEnd= 582 yStart= 0 yEnd= 9 +LED 97 : xStart= 564 xEnd= 573 yStart= 0 yEnd= 9 +LED 98 : xStart= 555 xEnd= 564 yStart= 0 yEnd= 9 +LED 99 : xStart= 546 xEnd= 555 yStart= 0 yEnd= 9 +LED 100 : xStart= 537 xEnd= 546 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 537 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 102 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 93 xEnd= 102 yStart= 0 yEnd= 9 +LED 150 : xStart= 84 xEnd= 93 yStart= 0 yEnd= 9 +LED 151 : xStart= 75 xEnd= 84 yStart= 0 yEnd= 9 +LED 152 : xStart= 66 xEnd= 75 yStart= 0 yEnd= 9 +LED 153 : xStart= 57 xEnd= 66 yStart= 0 yEnd= 9 +LED 154 : xStart= 48 xEnd= 57 yStart= 0 yEnd= 9 +LED 155 : xStart= 39 xEnd= 48 yStart= 0 yEnd= 9 +LED 156 : xStart= 30 xEnd= 39 yStart= 0 yEnd= 9 +LED 157 : xStart= 21 xEnd= 30 yStart= 0 yEnd= 9 +LED 158 : xStart= 12 xEnd= 21 yStart= 0 yEnd= 9 +LED 159 : xStart= 3 xEnd= 12 yStart= 0 yEnd= 9 +LED 160 : xStart= 3 xEnd= 34 yStart= 0 yEnd= 9 +LED 161 : xStart= 3 xEnd= 34 yStart= 9 yEnd= 18 +LED 162 : xStart= 3 xEnd= 34 yStart= 18 yEnd= 27 +LED 163 : xStart= 3 xEnd= 34 yStart= 27 yEnd= 36 +LED 164 : xStart= 3 xEnd= 34 yStart= 36 yEnd= 45 +LED 165 : xStart= 3 xEnd= 34 yStart= 45 yEnd= 54 +LED 166 : xStart= 3 xEnd= 34 yStart= 54 yEnd= 62 +LED 167 : xStart= 3 xEnd= 34 yStart= 62 yEnd= 72 +LED 168 : xStart= 3 xEnd= 34 yStart= 72 yEnd= 81 +LED 169 : xStart= 3 xEnd= 34 yStart= 81 yEnd= 90 +LED 170 : xStart= 3 xEnd= 34 yStart= 90 yEnd= 99 +LED 171 : xStart= 3 xEnd= 34 yStart= 99 yEnd= 108 +LED 172 : xStart= 3 xEnd= 34 yStart= 108 yEnd= 117 +LED 173 : xStart= 3 xEnd= 34 yStart= 117 yEnd= 125 +LED 174 : xStart= 3 xEnd= 34 yStart= 125 yEnd= 135 +LED 175 : xStart= 3 xEnd= 34 yStart= 135 yEnd= 144 +LED 176 : xStart= 3 xEnd= 34 yStart= 144 yEnd= 153 +LED 177 : xStart= 3 xEnd= 34 yStart= 153 yEnd= 162 +LED 178 : xStart= 3 xEnd= 34 yStart= 162 yEnd= 171 +LED 179 : xStart= 3 xEnd= 34 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#28190b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 4 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 4 border.horizontalSize= 0 +buildLedMap: contentWidth= 632 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 4 xEnd= 13 yStart= 171 yEnd= 180 +LED 1 : xStart= 13 xEnd= 22 yStart= 171 yEnd= 180 +LED 2 : xStart= 22 xEnd= 31 yStart= 171 yEnd= 180 +LED 3 : xStart= 31 xEnd= 40 yStart= 171 yEnd= 180 +LED 4 : xStart= 40 xEnd= 49 yStart= 171 yEnd= 180 +LED 5 : xStart= 49 xEnd= 58 yStart= 171 yEnd= 180 +LED 6 : xStart= 58 xEnd= 67 yStart= 171 yEnd= 180 +LED 7 : xStart= 67 xEnd= 76 yStart= 171 yEnd= 180 +LED 8 : xStart= 76 xEnd= 85 yStart= 171 yEnd= 180 +LED 9 : xStart= 85 xEnd= 94 yStart= 171 yEnd= 180 +LED 10 : xStart= 94 xEnd= 103 yStart= 171 yEnd= 180 +LED 11 : xStart= 103 xEnd= 112 yStart= 171 yEnd= 180 +LED 12 : xStart= 112 xEnd= 121 yStart= 171 yEnd= 180 +LED 13 : xStart= 121 xEnd= 130 yStart= 171 yEnd= 180 +LED 14 : xStart= 130 xEnd= 139 yStart= 171 yEnd= 180 +LED 15 : xStart= 139 xEnd= 148 yStart= 171 yEnd= 180 +LED 16 : xStart= 148 xEnd= 157 yStart= 171 yEnd= 180 +LED 17 : xStart= 157 xEnd= 166 yStart= 171 yEnd= 180 +LED 18 : xStart= 166 xEnd= 175 yStart= 171 yEnd= 180 +LED 19 : xStart= 175 xEnd= 184 yStart= 171 yEnd= 180 +LED 20 : xStart= 184 xEnd= 193 yStart= 171 yEnd= 180 +LED 21 : xStart= 193 xEnd= 202 yStart= 171 yEnd= 180 +LED 22 : xStart= 202 xEnd= 211 yStart= 171 yEnd= 180 +LED 23 : xStart= 211 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 428 yStart= 171 yEnd= 180 +LED 47 : xStart= 428 xEnd= 437 yStart= 171 yEnd= 180 +LED 48 : xStart= 437 xEnd= 446 yStart= 171 yEnd= 180 +LED 49 : xStart= 446 xEnd= 455 yStart= 171 yEnd= 180 +LED 50 : xStart= 455 xEnd= 464 yStart= 171 yEnd= 180 +LED 51 : xStart= 464 xEnd= 473 yStart= 171 yEnd= 180 +LED 52 : xStart= 473 xEnd= 482 yStart= 171 yEnd= 180 +LED 53 : xStart= 482 xEnd= 491 yStart= 171 yEnd= 180 +LED 54 : xStart= 491 xEnd= 500 yStart= 171 yEnd= 180 +LED 55 : xStart= 500 xEnd= 509 yStart= 171 yEnd= 180 +LED 56 : xStart= 509 xEnd= 518 yStart= 171 yEnd= 180 +LED 57 : xStart= 518 xEnd= 527 yStart= 171 yEnd= 180 +LED 58 : xStart= 527 xEnd= 536 yStart= 171 yEnd= 180 +LED 59 : xStart= 536 xEnd= 545 yStart= 171 yEnd= 180 +LED 60 : xStart= 545 xEnd= 554 yStart= 171 yEnd= 180 +LED 61 : xStart= 554 xEnd= 563 yStart= 171 yEnd= 180 +LED 62 : xStart= 563 xEnd= 572 yStart= 171 yEnd= 180 +LED 63 : xStart= 572 xEnd= 581 yStart= 171 yEnd= 180 +LED 64 : xStart= 581 xEnd= 590 yStart= 171 yEnd= 180 +LED 65 : xStart= 590 xEnd= 599 yStart= 171 yEnd= 180 +LED 66 : xStart= 599 xEnd= 608 yStart= 171 yEnd= 180 +LED 67 : xStart= 608 xEnd= 617 yStart= 171 yEnd= 180 +LED 68 : xStart= 617 xEnd= 626 yStart= 171 yEnd= 180 +LED 69 : xStart= 626 xEnd= 636 yStart= 171 yEnd= 180 +LED 70 : xStart= 605 xEnd= 636 yStart= 171 yEnd= 180 +LED 71 : xStart= 605 xEnd= 636 yStart= 162 yEnd= 171 +LED 72 : xStart= 605 xEnd= 636 yStart= 153 yEnd= 162 +LED 73 : xStart= 605 xEnd= 636 yStart= 144 yEnd= 153 +LED 74 : xStart= 605 xEnd= 636 yStart= 135 yEnd= 144 +LED 75 : xStart= 605 xEnd= 636 yStart= 125 yEnd= 135 +LED 76 : xStart= 605 xEnd= 636 yStart= 117 yEnd= 125 +LED 77 : xStart= 605 xEnd= 636 yStart= 108 yEnd= 117 +LED 78 : xStart= 605 xEnd= 636 yStart= 99 yEnd= 108 +LED 79 : xStart= 605 xEnd= 636 yStart= 90 yEnd= 99 +LED 80 : xStart= 605 xEnd= 636 yStart= 80 yEnd= 90 +LED 81 : xStart= 605 xEnd= 636 yStart= 72 yEnd= 80 +LED 82 : xStart= 605 xEnd= 636 yStart= 62 yEnd= 72 +LED 83 : xStart= 605 xEnd= 636 yStart= 54 yEnd= 62 +LED 84 : xStart= 605 xEnd= 636 yStart= 45 yEnd= 54 +LED 85 : xStart= 605 xEnd= 636 yStart= 35 yEnd= 45 +LED 86 : xStart= 605 xEnd= 636 yStart= 27 yEnd= 35 +LED 87 : xStart= 605 xEnd= 636 yStart= 17 yEnd= 27 +LED 88 : xStart= 605 xEnd= 636 yStart= 9 yEnd= 17 +LED 89 : xStart= 605 xEnd= 636 yStart= 0 yEnd= 9 +LED 90 : xStart= 626 xEnd= 636 yStart= 0 yEnd= 9 +LED 91 : xStart= 617 xEnd= 626 yStart= 0 yEnd= 9 +LED 92 : xStart= 608 xEnd= 617 yStart= 0 yEnd= 9 +LED 93 : xStart= 599 xEnd= 608 yStart= 0 yEnd= 9 +LED 94 : xStart= 590 xEnd= 599 yStart= 0 yEnd= 9 +LED 95 : xStart= 581 xEnd= 590 yStart= 0 yEnd= 9 +LED 96 : xStart= 572 xEnd= 581 yStart= 0 yEnd= 9 +LED 97 : xStart= 563 xEnd= 572 yStart= 0 yEnd= 9 +LED 98 : xStart= 554 xEnd= 563 yStart= 0 yEnd= 9 +LED 99 : xStart= 545 xEnd= 554 yStart= 0 yEnd= 9 +LED 100 : xStart= 536 xEnd= 545 yStart= 0 yEnd= 9 +LED 101 : xStart= 527 xEnd= 536 yStart= 0 yEnd= 9 +LED 102 : xStart= 518 xEnd= 527 yStart= 0 yEnd= 9 +LED 103 : xStart= 509 xEnd= 518 yStart= 0 yEnd= 9 +LED 104 : xStart= 500 xEnd= 509 yStart= 0 yEnd= 9 +LED 105 : xStart= 491 xEnd= 500 yStart= 0 yEnd= 9 +LED 106 : xStart= 482 xEnd= 491 yStart= 0 yEnd= 9 +LED 107 : xStart= 473 xEnd= 482 yStart= 0 yEnd= 9 +LED 108 : xStart= 464 xEnd= 473 yStart= 0 yEnd= 9 +LED 109 : xStart= 455 xEnd= 464 yStart= 0 yEnd= 9 +LED 110 : xStart= 446 xEnd= 455 yStart= 0 yEnd= 9 +LED 111 : xStart= 437 xEnd= 446 yStart= 0 yEnd= 9 +LED 112 : xStart= 428 xEnd= 437 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 428 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 211 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 202 xEnd= 211 yStart= 0 yEnd= 9 +LED 138 : xStart= 193 xEnd= 202 yStart= 0 yEnd= 9 +LED 139 : xStart= 184 xEnd= 193 yStart= 0 yEnd= 9 +LED 140 : xStart= 175 xEnd= 184 yStart= 0 yEnd= 9 +LED 141 : xStart= 166 xEnd= 175 yStart= 0 yEnd= 9 +LED 142 : xStart= 157 xEnd= 166 yStart= 0 yEnd= 9 +LED 143 : xStart= 148 xEnd= 157 yStart= 0 yEnd= 9 +LED 144 : xStart= 139 xEnd= 148 yStart= 0 yEnd= 9 +LED 145 : xStart= 130 xEnd= 139 yStart= 0 yEnd= 9 +LED 146 : xStart= 121 xEnd= 130 yStart= 0 yEnd= 9 +LED 147 : xStart= 112 xEnd= 121 yStart= 0 yEnd= 9 +LED 148 : xStart= 103 xEnd= 112 yStart= 0 yEnd= 9 +LED 149 : xStart= 94 xEnd= 103 yStart= 0 yEnd= 9 +LED 150 : xStart= 85 xEnd= 94 yStart= 0 yEnd= 9 +LED 151 : xStart= 76 xEnd= 85 yStart= 0 yEnd= 9 +LED 152 : xStart= 67 xEnd= 76 yStart= 0 yEnd= 9 +LED 153 : xStart= 58 xEnd= 67 yStart= 0 yEnd= 9 +LED 154 : xStart= 49 xEnd= 58 yStart= 0 yEnd= 9 +LED 155 : xStart= 40 xEnd= 49 yStart= 0 yEnd= 9 +LED 156 : xStart= 31 xEnd= 40 yStart= 0 yEnd= 9 +LED 157 : xStart= 22 xEnd= 31 yStart= 0 yEnd= 9 +LED 158 : xStart= 13 xEnd= 22 yStart= 0 yEnd= 9 +LED 159 : xStart= 4 xEnd= 13 yStart= 0 yEnd= 9 +LED 160 : xStart= 4 xEnd= 35 yStart= 0 yEnd= 9 +LED 161 : xStart= 4 xEnd= 35 yStart= 9 yEnd= 18 +LED 162 : xStart= 4 xEnd= 35 yStart= 18 yEnd= 27 +LED 163 : xStart= 4 xEnd= 35 yStart= 27 yEnd= 36 +LED 164 : xStart= 4 xEnd= 35 yStart= 36 yEnd= 45 +LED 165 : xStart= 4 xEnd= 35 yStart= 45 yEnd= 54 +LED 166 : xStart= 4 xEnd= 35 yStart= 54 yEnd= 62 +LED 167 : xStart= 4 xEnd= 35 yStart= 62 yEnd= 72 +LED 168 : xStart= 4 xEnd= 35 yStart= 72 yEnd= 81 +LED 169 : xStart= 4 xEnd= 35 yStart= 81 yEnd= 90 +LED 170 : xStart= 4 xEnd= 35 yStart= 90 yEnd= 99 +LED 171 : xStart= 4 xEnd= 35 yStart= 99 yEnd= 108 +LED 172 : xStart= 4 xEnd= 35 yStart= 108 yEnd= 117 +LED 173 : xStart= 4 xEnd= 35 yStart= 117 yEnd= 125 +LED 174 : xStart= 4 xEnd= 35 yStart= 125 yEnd= 135 +LED 175 : xStart= 4 xEnd= 35 yStart= 135 yEnd= 144 +LED 176 : xStart= 4 xEnd= 35 yStart= 144 yEnd= 153 +LED 177 : xStart= 4 xEnd= 35 yStart= 153 yEnd= 162 +LED 178 : xStart= 4 xEnd= 35 yStart= 162 yEnd= 171 +LED 179 : xStart= 4 xEnd= 35 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#28190b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3b3e37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 6 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 6 border.horizontalSize= 0 +buildLedMap: contentWidth= 628 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 6 xEnd= 14 yStart= 171 yEnd= 180 +LED 1 : xStart= 14 xEnd= 23 yStart= 171 yEnd= 180 +LED 2 : xStart= 23 xEnd= 32 yStart= 171 yEnd= 180 +LED 3 : xStart= 32 xEnd= 41 yStart= 171 yEnd= 180 +LED 4 : xStart= 41 xEnd= 50 yStart= 171 yEnd= 180 +LED 5 : xStart= 50 xEnd= 59 yStart= 171 yEnd= 180 +LED 6 : xStart= 59 xEnd= 68 yStart= 171 yEnd= 180 +LED 7 : xStart= 68 xEnd= 77 yStart= 171 yEnd= 180 +LED 8 : xStart= 77 xEnd= 86 yStart= 171 yEnd= 180 +LED 9 : xStart= 86 xEnd= 95 yStart= 171 yEnd= 180 +LED 10 : xStart= 95 xEnd= 104 yStart= 171 yEnd= 180 +LED 11 : xStart= 104 xEnd= 113 yStart= 171 yEnd= 180 +LED 12 : xStart= 113 xEnd= 122 yStart= 171 yEnd= 180 +LED 13 : xStart= 122 xEnd= 131 yStart= 171 yEnd= 180 +LED 14 : xStart= 131 xEnd= 140 yStart= 171 yEnd= 180 +LED 15 : xStart= 140 xEnd= 149 yStart= 171 yEnd= 180 +LED 16 : xStart= 149 xEnd= 158 yStart= 171 yEnd= 180 +LED 17 : xStart= 158 xEnd= 167 yStart= 171 yEnd= 180 +LED 18 : xStart= 167 xEnd= 176 yStart= 171 yEnd= 180 +LED 19 : xStart= 176 xEnd= 185 yStart= 171 yEnd= 180 +LED 20 : xStart= 185 xEnd= 194 yStart= 171 yEnd= 180 +LED 21 : xStart= 194 xEnd= 203 yStart= 171 yEnd= 180 +LED 22 : xStart= 203 xEnd= 212 yStart= 171 yEnd= 180 +LED 23 : xStart= 212 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 427 yStart= 171 yEnd= 180 +LED 47 : xStart= 427 xEnd= 436 yStart= 171 yEnd= 180 +LED 48 : xStart= 436 xEnd= 445 yStart= 171 yEnd= 180 +LED 49 : xStart= 445 xEnd= 454 yStart= 171 yEnd= 180 +LED 50 : xStart= 454 xEnd= 463 yStart= 171 yEnd= 180 +LED 51 : xStart= 463 xEnd= 472 yStart= 171 yEnd= 180 +LED 52 : xStart= 472 xEnd= 481 yStart= 171 yEnd= 180 +LED 53 : xStart= 481 xEnd= 490 yStart= 171 yEnd= 180 +LED 54 : xStart= 490 xEnd= 499 yStart= 171 yEnd= 180 +LED 55 : xStart= 499 xEnd= 508 yStart= 171 yEnd= 180 +LED 56 : xStart= 508 xEnd= 517 yStart= 171 yEnd= 180 +LED 57 : xStart= 517 xEnd= 526 yStart= 171 yEnd= 180 +LED 58 : xStart= 526 xEnd= 535 yStart= 171 yEnd= 180 +LED 59 : xStart= 535 xEnd= 544 yStart= 171 yEnd= 180 +LED 60 : xStart= 544 xEnd= 553 yStart= 171 yEnd= 180 +LED 61 : xStart= 553 xEnd= 562 yStart= 171 yEnd= 180 +LED 62 : xStart= 562 xEnd= 571 yStart= 171 yEnd= 180 +LED 63 : xStart= 571 xEnd= 580 yStart= 171 yEnd= 180 +LED 64 : xStart= 580 xEnd= 589 yStart= 171 yEnd= 180 +LED 65 : xStart= 589 xEnd= 598 yStart= 171 yEnd= 180 +LED 66 : xStart= 598 xEnd= 607 yStart= 171 yEnd= 180 +LED 67 : xStart= 607 xEnd= 616 yStart= 171 yEnd= 180 +LED 68 : xStart= 616 xEnd= 625 yStart= 171 yEnd= 180 +LED 69 : xStart= 625 xEnd= 634 yStart= 171 yEnd= 180 +LED 70 : xStart= 603 xEnd= 634 yStart= 171 yEnd= 180 +LED 71 : xStart= 603 xEnd= 634 yStart= 162 yEnd= 171 +LED 72 : xStart= 603 xEnd= 634 yStart= 153 yEnd= 162 +LED 73 : xStart= 603 xEnd= 634 yStart= 144 yEnd= 153 +LED 74 : xStart= 603 xEnd= 634 yStart= 135 yEnd= 144 +LED 75 : xStart= 603 xEnd= 634 yStart= 125 yEnd= 135 +LED 76 : xStart= 603 xEnd= 634 yStart= 117 yEnd= 125 +LED 77 : xStart= 603 xEnd= 634 yStart= 108 yEnd= 117 +LED 78 : xStart= 603 xEnd= 634 yStart= 99 yEnd= 108 +LED 79 : xStart= 603 xEnd= 634 yStart= 90 yEnd= 99 +LED 80 : xStart= 603 xEnd= 634 yStart= 80 yEnd= 90 +LED 81 : xStart= 603 xEnd= 634 yStart= 72 yEnd= 80 +LED 82 : xStart= 603 xEnd= 634 yStart= 62 yEnd= 72 +LED 83 : xStart= 603 xEnd= 634 yStart= 54 yEnd= 62 +LED 84 : xStart= 603 xEnd= 634 yStart= 45 yEnd= 54 +LED 85 : xStart= 603 xEnd= 634 yStart= 35 yEnd= 45 +LED 86 : xStart= 603 xEnd= 634 yStart= 27 yEnd= 35 +LED 87 : xStart= 603 xEnd= 634 yStart= 17 yEnd= 27 +LED 88 : xStart= 603 xEnd= 634 yStart= 9 yEnd= 17 +LED 89 : xStart= 603 xEnd= 634 yStart= 0 yEnd= 9 +LED 90 : xStart= 625 xEnd= 634 yStart= 0 yEnd= 9 +LED 91 : xStart= 616 xEnd= 625 yStart= 0 yEnd= 9 +LED 92 : xStart= 607 xEnd= 616 yStart= 0 yEnd= 9 +LED 93 : xStart= 598 xEnd= 607 yStart= 0 yEnd= 9 +LED 94 : xStart= 589 xEnd= 598 yStart= 0 yEnd= 9 +LED 95 : xStart= 580 xEnd= 589 yStart= 0 yEnd= 9 +LED 96 : xStart= 571 xEnd= 580 yStart= 0 yEnd= 9 +LED 97 : xStart= 562 xEnd= 571 yStart= 0 yEnd= 9 +LED 98 : xStart= 553 xEnd= 562 yStart= 0 yEnd= 9 +LED 99 : xStart= 544 xEnd= 553 yStart= 0 yEnd= 9 +LED 100 : xStart= 535 xEnd= 544 yStart= 0 yEnd= 9 +LED 101 : xStart= 526 xEnd= 535 yStart= 0 yEnd= 9 +LED 102 : xStart= 517 xEnd= 526 yStart= 0 yEnd= 9 +LED 103 : xStart= 508 xEnd= 517 yStart= 0 yEnd= 9 +LED 104 : xStart= 499 xEnd= 508 yStart= 0 yEnd= 9 +LED 105 : xStart= 490 xEnd= 499 yStart= 0 yEnd= 9 +LED 106 : xStart= 481 xEnd= 490 yStart= 0 yEnd= 9 +LED 107 : xStart= 472 xEnd= 481 yStart= 0 yEnd= 9 +LED 108 : xStart= 463 xEnd= 472 yStart= 0 yEnd= 9 +LED 109 : xStart= 454 xEnd= 463 yStart= 0 yEnd= 9 +LED 110 : xStart= 445 xEnd= 454 yStart= 0 yEnd= 9 +LED 111 : xStart= 436 xEnd= 445 yStart= 0 yEnd= 9 +LED 112 : xStart= 427 xEnd= 436 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 427 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 212 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 203 xEnd= 212 yStart= 0 yEnd= 9 +LED 138 : xStart= 194 xEnd= 203 yStart= 0 yEnd= 9 +LED 139 : xStart= 185 xEnd= 194 yStart= 0 yEnd= 9 +LED 140 : xStart= 176 xEnd= 185 yStart= 0 yEnd= 9 +LED 141 : xStart= 167 xEnd= 176 yStart= 0 yEnd= 9 +LED 142 : xStart= 158 xEnd= 167 yStart= 0 yEnd= 9 +LED 143 : xStart= 149 xEnd= 158 yStart= 0 yEnd= 9 +LED 144 : xStart= 140 xEnd= 149 yStart= 0 yEnd= 9 +LED 145 : xStart= 131 xEnd= 140 yStart= 0 yEnd= 9 +LED 146 : xStart= 122 xEnd= 131 yStart= 0 yEnd= 9 +LED 147 : xStart= 113 xEnd= 122 yStart= 0 yEnd= 9 +LED 148 : xStart= 104 xEnd= 113 yStart= 0 yEnd= 9 +LED 149 : xStart= 95 xEnd= 104 yStart= 0 yEnd= 9 +LED 150 : xStart= 86 xEnd= 95 yStart= 0 yEnd= 9 +LED 151 : xStart= 77 xEnd= 86 yStart= 0 yEnd= 9 +LED 152 : xStart= 68 xEnd= 77 yStart= 0 yEnd= 9 +LED 153 : xStart= 59 xEnd= 68 yStart= 0 yEnd= 9 +LED 154 : xStart= 50 xEnd= 59 yStart= 0 yEnd= 9 +LED 155 : xStart= 41 xEnd= 50 yStart= 0 yEnd= 9 +LED 156 : xStart= 32 xEnd= 41 yStart= 0 yEnd= 9 +LED 157 : xStart= 23 xEnd= 32 yStart= 0 yEnd= 9 +LED 158 : xStart= 14 xEnd= 23 yStart= 0 yEnd= 9 +LED 159 : xStart= 6 xEnd= 14 yStart= 0 yEnd= 9 +LED 160 : xStart= 6 xEnd= 37 yStart= 0 yEnd= 9 +LED 161 : xStart= 6 xEnd= 37 yStart= 9 yEnd= 18 +LED 162 : xStart= 6 xEnd= 37 yStart= 18 yEnd= 27 +LED 163 : xStart= 6 xEnd= 37 yStart= 27 yEnd= 36 +LED 164 : xStart= 6 xEnd= 37 yStart= 36 yEnd= 45 +LED 165 : xStart= 6 xEnd= 37 yStart= 45 yEnd= 54 +LED 166 : xStart= 6 xEnd= 37 yStart= 54 yEnd= 62 +LED 167 : xStart= 6 xEnd= 37 yStart= 62 yEnd= 72 +LED 168 : xStart= 6 xEnd= 37 yStart= 72 yEnd= 81 +LED 169 : xStart= 6 xEnd= 37 yStart= 81 yEnd= 90 +LED 170 : xStart= 6 xEnd= 37 yStart= 90 yEnd= 99 +LED 171 : xStart= 6 xEnd= 37 yStart= 99 yEnd= 108 +LED 172 : xStart= 6 xEnd= 37 yStart= 108 yEnd= 117 +LED 173 : xStart= 6 xEnd= 37 yStart= 117 yEnd= 125 +LED 174 : xStart= 6 xEnd= 37 yStart= 125 yEnd= 135 +LED 175 : xStart= 6 xEnd= 37 yStart= 135 yEnd= 144 +LED 176 : xStart= 6 xEnd= 37 yStart= 144 yEnd= 153 +LED 177 : xStart= 6 xEnd= 37 yStart= 153 yEnd= 162 +LED 178 : xStart= 6 xEnd= 37 yStart= 162 yEnd= 171 +LED 179 : xStart= 6 xEnd= 37 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +  [48;2;66;49;23m                                                                      +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 6 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 6 border.horizontalSize= 0 +buildLedMap: contentWidth= 628 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 6 xEnd= 14 yStart= 171 yEnd= 180 +LED 1 : xStart= 14 xEnd= 23 yStart= 171 yEnd= 180 +LED 2 : xStart= 23 xEnd= 32 yStart= 171 yEnd= 180 +LED 3 : xStart= 32 xEnd= 41 yStart= 171 yEnd= 180 +LED 4 : xStart= 41 xEnd= 50 yStart= 171 yEnd= 180 +LED 5 : xStart= 50 xEnd= 59 yStart= 171 yEnd= 180 +LED 6 : xStart= 59 xEnd= 68 yStart= 171 yEnd= 180 +LED 7 : xStart= 68 xEnd= 77 yStart= 171 yEnd= 180 +LED 8 : xStart= 77 xEnd= 86 yStart= 171 yEnd= 180 +LED 9 : xStart= 86 xEnd= 95 yStart= 171 yEnd= 180 +LED 10 : xStart= 95 xEnd= 104 yStart= 171 yEnd= 180 +LED 11 : xStart= 104 xEnd= 113 yStart= 171 yEnd= 180 +LED 12 : xStart= 113 xEnd= 122 yStart= 171 yEnd= 180 +LED 13 : xStart= 122 xEnd= 131 yStart= 171 yEnd= 180 +LED 14 : xStart= 131 xEnd= 140 yStart= 171 yEnd= 180 +LED 15 : xStart= 140 xEnd= 149 yStart= 171 yEnd= 180 +LED 16 : xStart= 149 xEnd= 158 yStart= 171 yEnd= 180 +LED 17 : xStart= 158 xEnd= 167 yStart= 171 yEnd= 180 +LED 18 : xStart= 167 xEnd= 176 yStart= 171 yEnd= 180 +LED 19 : xStart= 176 xEnd= 185 yStart= 171 yEnd= 180 +LED 20 : xStart= 185 xEnd= 194 yStart= 171 yEnd= 180 +LED 21 : xStart= 194 xEnd= 203 yStart= 171 yEnd= 180 +LED 22 : xStart= 203 xEnd= 212 yStart= 171 yEnd= 180 +LED 23 : xStart= 212 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 427 yStart= 171 yEnd= 180 +LED 47 : xStart= 427 xEnd= 436 yStart= 171 yEnd= 180 +LED 48 : xStart= 436 xEnd= 445 yStart= 171 yEnd= 180 +LED 49 : xStart= 445 xEnd= 454 yStart= 171 yEnd= 180 +LED 50 : xStart= 454 xEnd= 463 yStart= 171 yEnd= 180 +LED 51 : xStart= 463 xEnd= 472 yStart= 171 yEnd= 180 +LED 52 : xStart= 472 xEnd= 481 yStart= 171 yEnd= 180 +LED 53 : xStart= 481 xEnd= 490 yStart= 171 yEnd= 180 +LED 54 : xStart= 490 xEnd= 499 yStart= 171 yEnd= 180 +LED 55 : xStart= 499 xEnd= 508 yStart= 171 yEnd= 180 +LED 56 : xStart= 508 xEnd= 517 yStart= 171 yEnd= 180 +LED 57 : xStart= 517 xEnd= 526 yStart= 171 yEnd= 180 +LED 58 : xStart= 526 xEnd= 535 yStart= 171 yEnd= 180 +LED 59 : xStart= 535 xEnd= 544 yStart= 171 yEnd= 180 +LED 60 : xStart= 544 xEnd= 553 yStart= 171 yEnd= 180 +LED 61 : xStart= 553 xEnd= 562 yStart= 171 yEnd= 180 +LED 62 : xStart= 562 xEnd= 571 yStart= 171 yEnd= 180 +LED 63 : xStart= 571 xEnd= 580 yStart= 171 yEnd= 180 +LED 64 : xStart= 580 xEnd= 589 yStart= 171 yEnd= 180 +LED 65 : xStart= 589 xEnd= 598 yStart= 171 yEnd= 180 +LED 66 : xStart= 598 xEnd= 607 yStart= 171 yEnd= 180 +LED 67 : xStart= 607 xEnd= 616 yStart= 171 yEnd= 180 +LED 68 : xStart= 616 xEnd= 625 yStart= 171 yEnd= 180 +LED 69 : xStart= 625 xEnd= 634 yStart= 171 yEnd= 180 +LED 70 : xStart= 603 xEnd= 634 yStart= 171 yEnd= 180 +LED 71 : xStart= 603 xEnd= 634 yStart= 162 yEnd= 171 +LED 72 : xStart= 603 xEnd= 634 yStart= 153 yEnd= 162 +LED 73 : xStart= 603 xEnd= 634 yStart= 144 yEnd= 153 +LED 74 : xStart= 603 xEnd= 634 yStart= 135 yEnd= 144 +LED 75 : xStart= 603 xEnd= 634 yStart= 125 yEnd= 135 +LED 76 : xStart= 603 xEnd= 634 yStart= 117 yEnd= 125 +LED 77 : xStart= 603 xEnd= 634 yStart= 108 yEnd= 117 +LED 78 : xStart= 603 xEnd= 634 yStart= 99 yEnd= 108 +LED 79 : xStart= 603 xEnd= 634 yStart= 90 yEnd= 99 +LED 80 : xStart= 603 xEnd= 634 yStart= 80 yEnd= 90 +LED 81 : xStart= 603 xEnd= 634 yStart= 72 yEnd= 80 +LED 82 : xStart= 603 xEnd= 634 yStart= 62 yEnd= 72 +LED 83 : xStart= 603 xEnd= 634 yStart= 54 yEnd= 62 +LED 84 : xStart= 603 xEnd= 634 yStart= 45 yEnd= 54 +LED 85 : xStart= 603 xEnd= 634 yStart= 35 yEnd= 45 +LED 86 : xStart= 603 xEnd= 634 yStart= 27 yEnd= 35 +LED 87 : xStart= 603 xEnd= 634 yStart= 17 yEnd= 27 +LED 88 : xStart= 603 xEnd= 634 yStart= 9 yEnd= 17 +LED 89 : xStart= 603 xEnd= 634 yStart= 0 yEnd= 9 +LED 90 : xStart= 625 xEnd= 634 yStart= 0 yEnd= 9 +LED 91 : xStart= 616 xEnd= 625 yStart= 0 yEnd= 9 +LED 92 : xStart= 607 xEnd= 616 yStart= 0 yEnd= 9 +LED 93 : xStart= 598 xEnd= 607 yStart= 0 yEnd= 9 +LED 94 : xStart= 589 xEnd= 598 yStart= 0 yEnd= 9 +LED 95 : xStart= 580 xEnd= 589 yStart= 0 yEnd= 9 +LED 96 : xStart= 571 xEnd= 580 yStart= 0 yEnd= 9 +LED 97 : xStart= 562 xEnd= 571 yStart= 0 yEnd= 9 +LED 98 : xStart= 553 xEnd= 562 yStart= 0 yEnd= 9 +LED 99 : xStart= 544 xEnd= 553 yStart= 0 yEnd= 9 +LED 100 : xStart= 535 xEnd= 544 yStart= 0 yEnd= 9 +LED 101 : xStart= 526 xEnd= 535 yStart= 0 yEnd= 9 +LED 102 : xStart= 517 xEnd= 526 yStart= 0 yEnd= 9 +LED 103 : xStart= 508 xEnd= 517 yStart= 0 yEnd= 9 +LED 104 : xStart= 499 xEnd= 508 yStart= 0 yEnd= 9 +LED 105 : xStart= 490 xEnd= 499 yStart= 0 yEnd= 9 +LED 106 : xStart= 481 xEnd= 490 yStart= 0 yEnd= 9 +LED 107 : xStart= 472 xEnd= 481 yStart= 0 yEnd= 9 +LED 108 : xStart= 463 xEnd= 472 yStart= 0 yEnd= 9 +LED 109 : xStart= 454 xEnd= 463 yStart= 0 yEnd= 9 +LED 110 : xStart= 445 xEnd= 454 yStart= 0 yEnd= 9 +LED 111 : xStart= 436 xEnd= 445 yStart= 0 yEnd= 9 +LED 112 : xStart= 427 xEnd= 436 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 427 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 212 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 203 xEnd= 212 yStart= 0 yEnd= 9 +LED 138 : xStart= 194 xEnd= 203 yStart= 0 yEnd= 9 +LED 139 : xStart= 185 xEnd= 194 yStart= 0 yEnd= 9 +LED 140 : xStart= 176 xEnd= 185 yStart= 0 yEnd= 9 +LED 141 : xStart= 167 xEnd= 176 yStart= 0 yEnd= 9 +LED 142 : xStart= 158 xEnd= 167 yStart= 0 yEnd= 9 +LED 143 : xStart= 149 xEnd= 158 yStart= 0 yEnd= 9 +LED 144 : xStart= 140 xEnd= 149 yStart= 0 yEnd= 9 +LED 145 : xStart= 131 xEnd= 140 yStart= 0 yEnd= 9 +LED 146 : xStart= 122 xEnd= 131 yStart= 0 yEnd= 9 +LED 147 : xStart= 113 xEnd= 122 yStart= 0 yEnd= 9 +LED 148 : xStart= 104 xEnd= 113 yStart= 0 yEnd= 9 +LED 149 : xStart= 95 xEnd= 104 yStart= 0 yEnd= 9 +LED 150 : xStart= 86 xEnd= 95 yStart= 0 yEnd= 9 +LED 151 : xStart= 77 xEnd= 86 yStart= 0 yEnd= 9 +LED 152 : xStart= 68 xEnd= 77 yStart= 0 yEnd= 9 +LED 153 : xStart= 59 xEnd= 68 yStart= 0 yEnd= 9 +LED 154 : xStart= 50 xEnd= 59 yStart= 0 yEnd= 9 +LED 155 : xStart= 41 xEnd= 50 yStart= 0 yEnd= 9 +LED 156 : xStart= 32 xEnd= 41 yStart= 0 yEnd= 9 +LED 157 : xStart= 23 xEnd= 32 yStart= 0 yEnd= 9 +LED 158 : xStart= 14 xEnd= 23 yStart= 0 yEnd= 9 +LED 159 : xStart= 6 xEnd= 14 yStart= 0 yEnd= 9 +LED 160 : xStart= 6 xEnd= 37 yStart= 0 yEnd= 9 +LED 161 : xStart= 6 xEnd= 37 yStart= 9 yEnd= 18 +LED 162 : xStart= 6 xEnd= 37 yStart= 18 yEnd= 27 +LED 163 : xStart= 6 xEnd= 37 yStart= 27 yEnd= 36 +LED 164 : xStart= 6 xEnd= 37 yStart= 36 yEnd= 45 +LED 165 : xStart= 6 xEnd= 37 yStart= 45 yEnd= 54 +LED 166 : xStart= 6 xEnd= 37 yStart= 54 yEnd= 62 +LED 167 : xStart= 6 xEnd= 37 yStart= 62 yEnd= 72 +LED 168 : xStart= 6 xEnd= 37 yStart= 72 yEnd= 81 +LED 169 : xStart= 6 xEnd= 37 yStart= 81 yEnd= 90 +LED 170 : xStart= 6 xEnd= 37 yStart= 90 yEnd= 99 +LED 171 : xStart= 6 xEnd= 37 yStart= 99 yEnd= 108 +LED 172 : xStart= 6 xEnd= 37 yStart= 108 yEnd= 117 +LED 173 : xStart= 6 xEnd= 37 yStart= 117 yEnd= 125 +LED 174 : xStart= 6 xEnd= 37 yStart= 125 yEnd= 135 +LED 175 : xStart= 6 xEnd= 37 yStart= 135 yEnd= 144 +LED 176 : xStart= 6 xEnd= 37 yStart= 144 yEnd= 153 +LED 177 : xStart= 6 xEnd= 37 yStart= 153 yEnd= 162 +LED 178 : xStart= 6 xEnd= 37 yStart= 162 yEnd= 171 +LED 179 : xStart= 6 xEnd= 37 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 6 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 6 border.horizontalSize= 0 +buildLedMap: contentWidth= 628 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 6 xEnd= 14 yStart= 171 yEnd= 180 +LED 1 : xStart= 14 xEnd= 23 yStart= 171 yEnd= 180 +LED 2 : xStart= 23 xEnd= 32 yStart= 171 yEnd= 180 +LED 3 : xStart= 32 xEnd= 41 yStart= 171 yEnd= 180 +LED 4 : xStart= 41 xEnd= 50 yStart= 171 yEnd= 180 +LED 5 : xStart= 50 xEnd= 59 yStart= 171 yEnd= 180 +LED 6 : xStart= 59 xEnd= 68 yStart= 171 yEnd= 180 +LED 7 : xStart= 68 xEnd= 77 yStart= 171 yEnd= 180 +LED 8 : xStart= 77 xEnd= 86 yStart= 171 yEnd= 180 +LED 9 : xStart= 86 xEnd= 95 yStart= 171 yEnd= 180 +LED 10 : xStart= 95 xEnd= 104 yStart= 171 yEnd= 180 +LED 11 : xStart= 104 xEnd= 113 yStart= 171 yEnd= 180 +LED 12 : xStart= 113 xEnd= 122 yStart= 171 yEnd= 180 +LED 13 : xStart= 122 xEnd= 131 yStart= 171 yEnd= 180 +LED 14 : xStart= 131 xEnd= 140 yStart= 171 yEnd= 180 +LED 15 : xStart= 140 xEnd= 149 yStart= 171 yEnd= 180 +LED 16 : xStart= 149 xEnd= 158 yStart= 171 yEnd= 180 +LED 17 : xStart= 158 xEnd= 167 yStart= 171 yEnd= 180 +LED 18 : xStart= 167 xEnd= 176 yStart= 171 yEnd= 180 +LED 19 : xStart= 176 xEnd= 185 yStart= 171 yEnd= 180 +LED 20 : xStart= 185 xEnd= 194 yStart= 171 yEnd= 180 +LED 21 : xStart= 194 xEnd= 203 yStart= 171 yEnd= 180 +LED 22 : xStart= 203 xEnd= 212 yStart= 171 yEnd= 180 +LED 23 : xStart= 212 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 427 yStart= 171 yEnd= 180 +LED 47 : xStart= 427 xEnd= 436 yStart= 171 yEnd= 180 +LED 48 : xStart= 436 xEnd= 445 yStart= 171 yEnd= 180 +LED 49 : xStart= 445 xEnd= 454 yStart= 171 yEnd= 180 +LED 50 : xStart= 454 xEnd= 463 yStart= 171 yEnd= 180 +LED 51 : xStart= 463 xEnd= 472 yStart= 171 yEnd= 180 +LED 52 : xStart= 472 xEnd= 481 yStart= 171 yEnd= 180 +LED 53 : xStart= 481 xEnd= 490 yStart= 171 yEnd= 180 +LED 54 : xStart= 490 xEnd= 499 yStart= 171 yEnd= 180 +LED 55 : xStart= 499 xEnd= 508 yStart= 171 yEnd= 180 +LED 56 : xStart= 508 xEnd= 517 yStart= 171 yEnd= 180 +LED 57 : xStart= 517 xEnd= 526 yStart= 171 yEnd= 180 +LED 58 : xStart= 526 xEnd= 535 yStart= 171 yEnd= 180 +LED 59 : xStart= 535 xEnd= 544 yStart= 171 yEnd= 180 +LED 60 : xStart= 544 xEnd= 553 yStart= 171 yEnd= 180 +LED 61 : xStart= 553 xEnd= 562 yStart= 171 yEnd= 180 +LED 62 : xStart= 562 xEnd= 571 yStart= 171 yEnd= 180 +LED 63 : xStart= 571 xEnd= 580 yStart= 171 yEnd= 180 +LED 64 : xStart= 580 xEnd= 589 yStart= 171 yEnd= 180 +LED 65 : xStart= 589 xEnd= 598 yStart= 171 yEnd= 180 +LED 66 : xStart= 598 xEnd= 607 yStart= 171 yEnd= 180 +LED 67 : xStart= 607 xEnd= 616 yStart= 171 yEnd= 180 +LED 68 : xStart= 616 xEnd= 625 yStart= 171 yEnd= 180 +LED 69 : xStart= 625 xEnd= 634 yStart= 171 yEnd= 180 +LED 70 : xStart= 603 xEnd= 634 yStart= 171 yEnd= 180 +LED 71 : xStart= 603 xEnd= 634 yStart= 162 yEnd= 171 +LED 72 : xStart= 603 xEnd= 634 yStart= 153 yEnd= 162 +LED 73 : xStart= 603 xEnd= 634 yStart= 144 yEnd= 153 +LED 74 : xStart= 603 xEnd= 634 yStart= 135 yEnd= 144 +LED 75 : xStart= 603 xEnd= 634 yStart= 125 yEnd= 135 +LED 76 : xStart= 603 xEnd= 634 yStart= 117 yEnd= 125 +LED 77 : xStart= 603 xEnd= 634 yStart= 108 yEnd= 117 +LED 78 : xStart= 603 xEnd= 634 yStart= 99 yEnd= 108 +LED 79 : xStart= 603 xEnd= 634 yStart= 90 yEnd= 99 +LED 80 : xStart= 603 xEnd= 634 yStart= 80 yEnd= 90 +LED 81 : xStart= 603 xEnd= 634 yStart= 72 yEnd= 80 +LED 82 : xStart= 603 xEnd= 634 yStart= 62 yEnd= 72 +LED 83 : xStart= 603 xEnd= 634 yStart= 54 yEnd= 62 +LED 84 : xStart= 603 xEnd= 634 yStart= 45 yEnd= 54 +LED 85 : xStart= 603 xEnd= 634 yStart= 35 yEnd= 45 +LED 86 : xStart= 603 xEnd= 634 yStart= 27 yEnd= 35 +LED 87 : xStart= 603 xEnd= 634 yStart= 17 yEnd= 27 +LED 88 : xStart= 603 xEnd= 634 yStart= 9 yEnd= 17 +LED 89 : xStart= 603 xEnd= 634 yStart= 0 yEnd= 9 +LED 90 : xStart= 625 xEnd= 634 yStart= 0 yEnd= 9 +LED 91 : xStart= 616 xEnd= 625 yStart= 0 yEnd= 9 +LED 92 : xStart= 607 xEnd= 616 yStart= 0 yEnd= 9 +LED 93 : xStart= 598 xEnd= 607 yStart= 0 yEnd= 9 +LED 94 : xStart= 589 xEnd= 598 yStart= 0 yEnd= 9 +LED 95 : xStart= 580 xEnd= 589 yStart= 0 yEnd= 9 +LED 96 : xStart= 571 xEnd= 580 yStart= 0 yEnd= 9 +LED 97 : xStart= 562 xEnd= 571 yStart= 0 yEnd= 9 +LED 98 : xStart= 553 xEnd= 562 yStart= 0 yEnd= 9 +LED 99 : xStart= 544 xEnd= 553 yStart= 0 yEnd= 9 +LED 100 : xStart= 535 xEnd= 544 yStart= 0 yEnd= 9 +LED 101 : xStart= 526 xEnd= 535 yStart= 0 yEnd= 9 +LED 102 : xStart= 517 xEnd= 526 yStart= 0 yEnd= 9 +LED 103 : xStart= 508 xEnd= 517 yStart= 0 yEnd= 9 +LED 104 : xStart= 499 xEnd= 508 yStart= 0 yEnd= 9 +LED 105 : xStart= 490 xEnd= 499 yStart= 0 yEnd= 9 +LED 106 : xStart= 481 xEnd= 490 yStart= 0 yEnd= 9 +LED 107 : xStart= 472 xEnd= 481 yStart= 0 yEnd= 9 +LED 108 : xStart= 463 xEnd= 472 yStart= 0 yEnd= 9 +LED 109 : xStart= 454 xEnd= 463 yStart= 0 yEnd= 9 +LED 110 : xStart= 445 xEnd= 454 yStart= 0 yEnd= 9 +LED 111 : xStart= 436 xEnd= 445 yStart= 0 yEnd= 9 +LED 112 : xStart= 427 xEnd= 436 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 427 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 212 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 203 xEnd= 212 yStart= 0 yEnd= 9 +LED 138 : xStart= 194 xEnd= 203 yStart= 0 yEnd= 9 +LED 139 : xStart= 185 xEnd= 194 yStart= 0 yEnd= 9 +LED 140 : xStart= 176 xEnd= 185 yStart= 0 yEnd= 9 +LED 141 : xStart= 167 xEnd= 176 yStart= 0 yEnd= 9 +LED 142 : xStart= 158 xEnd= 167 yStart= 0 yEnd= 9 +LED 143 : xStart= 149 xEnd= 158 yStart= 0 yEnd= 9 +LED 144 : xStart= 140 xEnd= 149 yStart= 0 yEnd= 9 +LED 145 : xStart= 131 xEnd= 140 yStart= 0 yEnd= 9 +LED 146 : xStart= 122 xEnd= 131 yStart= 0 yEnd= 9 +LED 147 : xStart= 113 xEnd= 122 yStart= 0 yEnd= 9 +LED 148 : xStart= 104 xEnd= 113 yStart= 0 yEnd= 9 +LED 149 : xStart= 95 xEnd= 104 yStart= 0 yEnd= 9 +LED 150 : xStart= 86 xEnd= 95 yStart= 0 yEnd= 9 +LED 151 : xStart= 77 xEnd= 86 yStart= 0 yEnd= 9 +LED 152 : xStart= 68 xEnd= 77 yStart= 0 yEnd= 9 +LED 153 : xStart= 59 xEnd= 68 yStart= 0 yEnd= 9 +LED 154 : xStart= 50 xEnd= 59 yStart= 0 yEnd= 9 +LED 155 : xStart= 41 xEnd= 50 yStart= 0 yEnd= 9 +LED 156 : xStart= 32 xEnd= 41 yStart= 0 yEnd= 9 +LED 157 : xStart= 23 xEnd= 32 yStart= 0 yEnd= 9 +LED 158 : xStart= 14 xEnd= 23 yStart= 0 yEnd= 9 +LED 159 : xStart= 6 xEnd= 14 yStart= 0 yEnd= 9 +LED 160 : xStart= 6 xEnd= 37 yStart= 0 yEnd= 9 +LED 161 : xStart= 6 xEnd= 37 yStart= 9 yEnd= 18 +LED 162 : xStart= 6 xEnd= 37 yStart= 18 yEnd= 27 +LED 163 : xStart= 6 xEnd= 37 yStart= 27 yEnd= 36 +LED 164 : xStart= 6 xEnd= 37 yStart= 36 yEnd= 45 +LED 165 : xStart= 6 xEnd= 37 yStart= 45 yEnd= 54 +LED 166 : xStart= 6 xEnd= 37 yStart= 54 yEnd= 62 +LED 167 : xStart= 6 xEnd= 37 yStart= 62 yEnd= 72 +LED 168 : xStart= 6 xEnd= 37 yStart= 72 yEnd= 81 +LED 169 : xStart= 6 xEnd= 37 yStart= 81 yEnd= 90 +LED 170 : xStart= 6 xEnd= 37 yStart= 90 yEnd= 99 +LED 171 : xStart= 6 xEnd= 37 yStart= 99 yEnd= 108 +LED 172 : xStart= 6 xEnd= 37 yStart= 108 yEnd= 117 +LED 173 : xStart= 6 xEnd= 37 yStart= 117 yEnd= 125 +LED 174 : xStart= 6 xEnd= 37 yStart= 125 yEnd= 135 +LED 175 : xStart= 6 xEnd= 37 yStart= 135 yEnd= 144 +LED 176 : xStart= 6 xEnd= 37 yStart= 144 yEnd= 153 +LED 177 : xStart= 6 xEnd= 37 yStart= 153 yEnd= 162 +LED 178 : xStart= 6 xEnd= 37 yStart= 162 yEnd= 171 +LED 179 : xStart= 6 xEnd= 37 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170b" + LED 1: "#291a0b" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   + [48;2;55;56;53m  +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26180b" + LED 1: "#27180b" + LED (bottom+1): "#402f16" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#26170b" + LED (bottom+1): "#402e16" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 8 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 8 border.horizontalSize= 0 +buildLedMap: contentWidth= 624 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 8 xEnd= 16 yStart= 171 yEnd= 180 +LED 1 : xStart= 16 xEnd= 25 yStart= 171 yEnd= 180 +LED 2 : xStart= 25 xEnd= 34 yStart= 171 yEnd= 180 +LED 3 : xStart= 34 xEnd= 43 yStart= 171 yEnd= 180 +LED 4 : xStart= 43 xEnd= 52 yStart= 171 yEnd= 180 +LED 5 : xStart= 52 xEnd= 61 yStart= 171 yEnd= 180 +LED 6 : xStart= 61 xEnd= 70 yStart= 171 yEnd= 180 +LED 7 : xStart= 70 xEnd= 79 yStart= 171 yEnd= 180 +LED 8 : xStart= 79 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 114 yStart= 171 yEnd= 180 +LED 12 : xStart= 114 xEnd= 123 yStart= 171 yEnd= 180 +LED 13 : xStart= 123 xEnd= 132 yStart= 171 yEnd= 180 +LED 14 : xStart= 132 xEnd= 141 yStart= 171 yEnd= 180 +LED 15 : xStart= 141 xEnd= 150 yStart= 171 yEnd= 180 +LED 16 : xStart= 150 xEnd= 159 yStart= 171 yEnd= 180 +LED 17 : xStart= 159 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 221 yStart= 171 yEnd= 180 +LED 24 : xStart= 221 xEnd= 230 yStart= 171 yEnd= 180 +LED 25 : xStart= 230 xEnd= 239 yStart= 171 yEnd= 180 +LED 26 : xStart= 239 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 400 yStart= 171 yEnd= 180 +LED 44 : xStart= 400 xEnd= 409 yStart= 171 yEnd= 180 +LED 45 : xStart= 409 xEnd= 418 yStart= 171 yEnd= 180 +LED 46 : xStart= 418 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 480 yStart= 171 yEnd= 180 +LED 53 : xStart= 480 xEnd= 489 yStart= 171 yEnd= 180 +LED 54 : xStart= 489 xEnd= 498 yStart= 171 yEnd= 180 +LED 55 : xStart= 498 xEnd= 507 yStart= 171 yEnd= 180 +LED 56 : xStart= 507 xEnd= 516 yStart= 171 yEnd= 180 +LED 57 : xStart= 516 xEnd= 525 yStart= 171 yEnd= 180 +LED 58 : xStart= 525 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 560 yStart= 171 yEnd= 180 +LED 62 : xStart= 560 xEnd= 569 yStart= 171 yEnd= 180 +LED 63 : xStart= 569 xEnd= 578 yStart= 171 yEnd= 180 +LED 64 : xStart= 578 xEnd= 587 yStart= 171 yEnd= 180 +LED 65 : xStart= 587 xEnd= 596 yStart= 171 yEnd= 180 +LED 66 : xStart= 596 xEnd= 605 yStart= 171 yEnd= 180 +LED 67 : xStart= 605 xEnd= 614 yStart= 171 yEnd= 180 +LED 68 : xStart= 614 xEnd= 623 yStart= 171 yEnd= 180 +LED 69 : xStart= 623 xEnd= 632 yStart= 171 yEnd= 180 +LED 70 : xStart= 601 xEnd= 632 yStart= 171 yEnd= 180 +LED 71 : xStart= 601 xEnd= 632 yStart= 162 yEnd= 171 +LED 72 : xStart= 601 xEnd= 632 yStart= 153 yEnd= 162 +LED 73 : xStart= 601 xEnd= 632 yStart= 144 yEnd= 153 +LED 74 : xStart= 601 xEnd= 632 yStart= 135 yEnd= 144 +LED 75 : xStart= 601 xEnd= 632 yStart= 125 yEnd= 135 +LED 76 : xStart= 601 xEnd= 632 yStart= 117 yEnd= 125 +LED 77 : xStart= 601 xEnd= 632 yStart= 108 yEnd= 117 +LED 78 : xStart= 601 xEnd= 632 yStart= 99 yEnd= 108 +LED 79 : xStart= 601 xEnd= 632 yStart= 90 yEnd= 99 +LED 80 : xStart= 601 xEnd= 632 yStart= 80 yEnd= 90 +LED 81 : xStart= 601 xEnd= 632 yStart= 72 yEnd= 80 +LED 82 : xStart= 601 xEnd= 632 yStart= 62 yEnd= 72 +LED 83 : xStart= 601 xEnd= 632 yStart= 54 yEnd= 62 +LED 84 : xStart= 601 xEnd= 632 yStart= 45 yEnd= 54 +LED 85 : xStart= 601 xEnd= 632 yStart= 35 yEnd= 45 +LED 86 : xStart= 601 xEnd= 632 yStart= 27 yEnd= 35 +LED 87 : xStart= 601 xEnd= 632 yStart= 17 yEnd= 27 +LED 88 : xStart= 601 xEnd= 632 yStart= 9 yEnd= 17 +LED 89 : xStart= 601 xEnd= 632 yStart= 0 yEnd= 9 +LED 90 : xStart= 623 xEnd= 632 yStart= 0 yEnd= 9 +LED 91 : xStart= 614 xEnd= 623 yStart= 0 yEnd= 9 +LED 92 : xStart= 605 xEnd= 614 yStart= 0 yEnd= 9 +LED 93 : xStart= 596 xEnd= 605 yStart= 0 yEnd= 9 +LED 94 : xStart= 587 xEnd= 596 yStart= 0 yEnd= 9 +LED 95 : xStart= 578 xEnd= 587 yStart= 0 yEnd= 9 +LED 96 : xStart= 569 xEnd= 578 yStart= 0 yEnd= 9 +LED 97 : xStart= 560 xEnd= 569 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 560 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 525 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 516 xEnd= 525 yStart= 0 yEnd= 9 +LED 103 : xStart= 507 xEnd= 516 yStart= 0 yEnd= 9 +LED 104 : xStart= 498 xEnd= 507 yStart= 0 yEnd= 9 +LED 105 : xStart= 489 xEnd= 498 yStart= 0 yEnd= 9 +LED 106 : xStart= 480 xEnd= 489 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 480 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 418 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 409 xEnd= 418 yStart= 0 yEnd= 9 +LED 115 : xStart= 400 xEnd= 409 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 400 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 239 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 230 xEnd= 239 yStart= 0 yEnd= 9 +LED 135 : xStart= 221 xEnd= 230 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 221 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 159 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 150 xEnd= 159 yStart= 0 yEnd= 9 +LED 144 : xStart= 141 xEnd= 150 yStart= 0 yEnd= 9 +LED 145 : xStart= 132 xEnd= 141 yStart= 0 yEnd= 9 +LED 146 : xStart= 123 xEnd= 132 yStart= 0 yEnd= 9 +LED 147 : xStart= 114 xEnd= 123 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 114 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 79 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 70 xEnd= 79 yStart= 0 yEnd= 9 +LED 153 : xStart= 61 xEnd= 70 yStart= 0 yEnd= 9 +LED 154 : xStart= 52 xEnd= 61 yStart= 0 yEnd= 9 +LED 155 : xStart= 43 xEnd= 52 yStart= 0 yEnd= 9 +LED 156 : xStart= 34 xEnd= 43 yStart= 0 yEnd= 9 +LED 157 : xStart= 25 xEnd= 34 yStart= 0 yEnd= 9 +LED 158 : xStart= 16 xEnd= 25 yStart= 0 yEnd= 9 +LED 159 : xStart= 8 xEnd= 16 yStart= 0 yEnd= 9 +LED 160 : xStart= 8 xEnd= 39 yStart= 0 yEnd= 9 +LED 161 : xStart= 8 xEnd= 39 yStart= 9 yEnd= 18 +LED 162 : xStart= 8 xEnd= 39 yStart= 18 yEnd= 27 +LED 163 : xStart= 8 xEnd= 39 yStart= 27 yEnd= 36 +LED 164 : xStart= 8 xEnd= 39 yStart= 36 yEnd= 45 +LED 165 : xStart= 8 xEnd= 39 yStart= 45 yEnd= 54 +LED 166 : xStart= 8 xEnd= 39 yStart= 54 yEnd= 62 +LED 167 : xStart= 8 xEnd= 39 yStart= 62 yEnd= 72 +LED 168 : xStart= 8 xEnd= 39 yStart= 72 yEnd= 81 +LED 169 : xStart= 8 xEnd= 39 yStart= 81 yEnd= 90 +LED 170 : xStart= 8 xEnd= 39 yStart= 90 yEnd= 99 +LED 171 : xStart= 8 xEnd= 39 yStart= 99 yEnd= 108 +LED 172 : xStart= 8 xEnd= 39 yStart= 108 yEnd= 117 +LED 173 : xStart= 8 xEnd= 39 yStart= 117 yEnd= 125 +LED 174 : xStart= 8 xEnd= 39 yStart= 125 yEnd= 135 +LED 175 : xStart= 8 xEnd= 39 yStart= 135 yEnd= 144 +LED 176 : xStart= 8 xEnd= 39 yStart= 144 yEnd= 153 +LED 177 : xStart= 8 xEnd= 39 yStart= 153 yEnd= 162 +LED 178 : xStart= 8 xEnd= 39 yStart= 162 yEnd= 171 +LED 179 : xStart= 8 xEnd= 39 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170a" + LED 1: "#2a1b0c" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#25170b" + LED 1: "#2a1a0c" + LED (bottom+1): "#413017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 1 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 1 border.horizontalSize= 0 +buildLedMap: contentWidth= 638 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 1 xEnd= 10 yStart= 171 yEnd= 180 +LED 1 : xStart= 10 xEnd= 19 yStart= 171 yEnd= 180 +LED 2 : xStart= 19 xEnd= 28 yStart= 171 yEnd= 180 +LED 3 : xStart= 28 xEnd= 37 yStart= 171 yEnd= 180 +LED 4 : xStart= 37 xEnd= 46 yStart= 171 yEnd= 180 +LED 5 : xStart= 46 xEnd= 55 yStart= 171 yEnd= 180 +LED 6 : xStart= 55 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 110 yStart= 171 yEnd= 180 +LED 12 : xStart= 110 xEnd= 119 yStart= 171 yEnd= 180 +LED 13 : xStart= 119 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 511 yStart= 171 yEnd= 180 +LED 56 : xStart= 511 xEnd= 520 yStart= 171 yEnd= 180 +LED 57 : xStart= 520 xEnd= 529 yStart= 171 yEnd= 180 +LED 58 : xStart= 529 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 575 yStart= 171 yEnd= 180 +LED 63 : xStart= 575 xEnd= 584 yStart= 171 yEnd= 180 +LED 64 : xStart= 584 xEnd= 593 yStart= 171 yEnd= 180 +LED 65 : xStart= 593 xEnd= 602 yStart= 171 yEnd= 180 +LED 66 : xStart= 602 xEnd= 611 yStart= 171 yEnd= 180 +LED 67 : xStart= 611 xEnd= 620 yStart= 171 yEnd= 180 +LED 68 : xStart= 620 xEnd= 629 yStart= 171 yEnd= 180 +LED 69 : xStart= 629 xEnd= 639 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 639 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 639 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 639 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 639 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 639 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 639 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 639 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 639 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 639 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 639 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 639 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 639 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 639 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 639 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 639 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 639 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 639 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 639 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 639 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 639 yStart= 0 yEnd= 9 +LED 90 : xStart= 629 xEnd= 639 yStart= 0 yEnd= 9 +LED 91 : xStart= 620 xEnd= 629 yStart= 0 yEnd= 9 +LED 92 : xStart= 611 xEnd= 620 yStart= 0 yEnd= 9 +LED 93 : xStart= 602 xEnd= 611 yStart= 0 yEnd= 9 +LED 94 : xStart= 593 xEnd= 602 yStart= 0 yEnd= 9 +LED 95 : xStart= 584 xEnd= 593 yStart= 0 yEnd= 9 +LED 96 : xStart= 575 xEnd= 584 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 575 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 529 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 520 xEnd= 529 yStart= 0 yEnd= 9 +LED 103 : xStart= 511 xEnd= 520 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 511 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 128 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 119 xEnd= 128 yStart= 0 yEnd= 9 +LED 147 : xStart= 110 xEnd= 119 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 110 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 64 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 55 xEnd= 64 yStart= 0 yEnd= 9 +LED 154 : xStart= 46 xEnd= 55 yStart= 0 yEnd= 9 +LED 155 : xStart= 37 xEnd= 46 yStart= 0 yEnd= 9 +LED 156 : xStart= 28 xEnd= 37 yStart= 0 yEnd= 9 +LED 157 : xStart= 19 xEnd= 28 yStart= 0 yEnd= 9 +LED 158 : xStart= 10 xEnd= 19 yStart= 0 yEnd= 9 +LED 159 : xStart= 1 xEnd= 10 yStart= 0 yEnd= 9 +LED 160 : xStart= 1 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 1 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 1 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 1 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 1 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 1 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 1 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 1 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 1 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 1 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 1 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 1 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 1 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 1 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 1 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 1 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 1 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 1 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 1 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 1 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#1f150e" + LED 1: "#20160e" + LED (bottom+1): "#3d2d18" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#191411" + LED 1: "#191411" + LED (bottom+1): "#32291c" + LED (bottom+right+1): "#3c3f38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#171311" + LED 1: "#181411" + LED (bottom+1): "#2f271d" + LED (bottom+right+1): "#3b3e38" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 0 +buildLedMap: contentWidth= 636 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 171 yEnd= 180 +LED 1 : xStart= 11 xEnd= 20 yStart= 171 yEnd= 180 +LED 2 : xStart= 20 xEnd= 29 yStart= 171 yEnd= 180 +LED 3 : xStart= 29 xEnd= 38 yStart= 171 yEnd= 180 +LED 4 : xStart= 38 xEnd= 47 yStart= 171 yEnd= 180 +LED 5 : xStart= 47 xEnd= 56 yStart= 171 yEnd= 180 +LED 6 : xStart= 56 xEnd= 65 yStart= 171 yEnd= 180 +LED 7 : xStart= 65 xEnd= 74 yStart= 171 yEnd= 180 +LED 8 : xStart= 74 xEnd= 83 yStart= 171 yEnd= 180 +LED 9 : xStart= 83 xEnd= 92 yStart= 171 yEnd= 180 +LED 10 : xStart= 92 xEnd= 101 yStart= 171 yEnd= 180 +LED 11 : xStart= 101 xEnd= 111 yStart= 171 yEnd= 180 +LED 12 : xStart= 111 xEnd= 120 yStart= 171 yEnd= 180 +LED 13 : xStart= 120 xEnd= 129 yStart= 171 yEnd= 180 +LED 14 : xStart= 129 xEnd= 138 yStart= 171 yEnd= 180 +LED 15 : xStart= 138 xEnd= 147 yStart= 171 yEnd= 180 +LED 16 : xStart= 147 xEnd= 156 yStart= 171 yEnd= 180 +LED 17 : xStart= 156 xEnd= 165 yStart= 171 yEnd= 180 +LED 18 : xStart= 165 xEnd= 174 yStart= 171 yEnd= 180 +LED 19 : xStart= 174 xEnd= 183 yStart= 171 yEnd= 180 +LED 20 : xStart= 183 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 220 yStart= 171 yEnd= 180 +LED 24 : xStart= 220 xEnd= 229 yStart= 171 yEnd= 180 +LED 25 : xStart= 229 xEnd= 238 yStart= 171 yEnd= 180 +LED 26 : xStart= 238 xEnd= 247 yStart= 171 yEnd= 180 +LED 27 : xStart= 247 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 383 yStart= 171 yEnd= 180 +LED 42 : xStart= 383 xEnd= 392 yStart= 171 yEnd= 180 +LED 43 : xStart= 392 xEnd= 401 yStart= 171 yEnd= 180 +LED 44 : xStart= 401 xEnd= 410 yStart= 171 yEnd= 180 +LED 45 : xStart= 410 xEnd= 419 yStart= 171 yEnd= 180 +LED 46 : xStart= 419 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 447 yStart= 171 yEnd= 180 +LED 49 : xStart= 447 xEnd= 456 yStart= 171 yEnd= 180 +LED 50 : xStart= 456 xEnd= 465 yStart= 171 yEnd= 180 +LED 51 : xStart= 465 xEnd= 474 yStart= 171 yEnd= 180 +LED 52 : xStart= 474 xEnd= 483 yStart= 171 yEnd= 180 +LED 53 : xStart= 483 xEnd= 492 yStart= 171 yEnd= 180 +LED 54 : xStart= 492 xEnd= 501 yStart= 171 yEnd= 180 +LED 55 : xStart= 501 xEnd= 510 yStart= 171 yEnd= 180 +LED 56 : xStart= 510 xEnd= 519 yStart= 171 yEnd= 180 +LED 57 : xStart= 519 xEnd= 528 yStart= 171 yEnd= 180 +LED 58 : xStart= 528 xEnd= 538 yStart= 171 yEnd= 180 +LED 59 : xStart= 538 xEnd= 547 yStart= 171 yEnd= 180 +LED 60 : xStart= 547 xEnd= 556 yStart= 171 yEnd= 180 +LED 61 : xStart= 556 xEnd= 565 yStart= 171 yEnd= 180 +LED 62 : xStart= 565 xEnd= 574 yStart= 171 yEnd= 180 +LED 63 : xStart= 574 xEnd= 583 yStart= 171 yEnd= 180 +LED 64 : xStart= 583 xEnd= 592 yStart= 171 yEnd= 180 +LED 65 : xStart= 592 xEnd= 601 yStart= 171 yEnd= 180 +LED 66 : xStart= 601 xEnd= 610 yStart= 171 yEnd= 180 +LED 67 : xStart= 610 xEnd= 619 yStart= 171 yEnd= 180 +LED 68 : xStart= 619 xEnd= 628 yStart= 171 yEnd= 180 +LED 69 : xStart= 628 xEnd= 638 yStart= 171 yEnd= 180 +LED 70 : xStart= 607 xEnd= 638 yStart= 171 yEnd= 180 +LED 71 : xStart= 607 xEnd= 638 yStart= 162 yEnd= 171 +LED 72 : xStart= 607 xEnd= 638 yStart= 153 yEnd= 162 +LED 73 : xStart= 607 xEnd= 638 yStart= 144 yEnd= 153 +LED 74 : xStart= 607 xEnd= 638 yStart= 135 yEnd= 144 +LED 75 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 135 +LED 76 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 125 +LED 77 : xStart= 607 xEnd= 638 yStart= 108 yEnd= 117 +LED 78 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 108 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 99 +LED 80 : xStart= 607 xEnd= 638 yStart= 80 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 80 +LED 82 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 72 +LED 83 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 62 +LED 84 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 54 +LED 85 : xStart= 607 xEnd= 638 yStart= 35 yEnd= 45 +LED 86 : xStart= 607 xEnd= 638 yStart= 27 yEnd= 35 +LED 87 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 27 +LED 88 : xStart= 607 xEnd= 638 yStart= 9 yEnd= 17 +LED 89 : xStart= 607 xEnd= 638 yStart= 0 yEnd= 9 +LED 90 : xStart= 628 xEnd= 638 yStart= 0 yEnd= 9 +LED 91 : xStart= 619 xEnd= 628 yStart= 0 yEnd= 9 +LED 92 : xStart= 610 xEnd= 619 yStart= 0 yEnd= 9 +LED 93 : xStart= 601 xEnd= 610 yStart= 0 yEnd= 9 +LED 94 : xStart= 592 xEnd= 601 yStart= 0 yEnd= 9 +LED 95 : xStart= 583 xEnd= 592 yStart= 0 yEnd= 9 +LED 96 : xStart= 574 xEnd= 583 yStart= 0 yEnd= 9 +LED 97 : xStart= 565 xEnd= 574 yStart= 0 yEnd= 9 +LED 98 : xStart= 556 xEnd= 565 yStart= 0 yEnd= 9 +LED 99 : xStart= 547 xEnd= 556 yStart= 0 yEnd= 9 +LED 100 : xStart= 538 xEnd= 547 yStart= 0 yEnd= 9 +LED 101 : xStart= 528 xEnd= 538 yStart= 0 yEnd= 9 +LED 102 : xStart= 519 xEnd= 528 yStart= 0 yEnd= 9 +LED 103 : xStart= 510 xEnd= 519 yStart= 0 yEnd= 9 +LED 104 : xStart= 501 xEnd= 510 yStart= 0 yEnd= 9 +LED 105 : xStart= 492 xEnd= 501 yStart= 0 yEnd= 9 +LED 106 : xStart= 483 xEnd= 492 yStart= 0 yEnd= 9 +LED 107 : xStart= 474 xEnd= 483 yStart= 0 yEnd= 9 +LED 108 : xStart= 465 xEnd= 474 yStart= 0 yEnd= 9 +LED 109 : xStart= 456 xEnd= 465 yStart= 0 yEnd= 9 +LED 110 : xStart= 447 xEnd= 456 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 447 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 419 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 410 xEnd= 419 yStart= 0 yEnd= 9 +LED 115 : xStart= 401 xEnd= 410 yStart= 0 yEnd= 9 +LED 116 : xStart= 392 xEnd= 401 yStart= 0 yEnd= 9 +LED 117 : xStart= 383 xEnd= 392 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 383 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 247 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 238 xEnd= 247 yStart= 0 yEnd= 9 +LED 134 : xStart= 229 xEnd= 238 yStart= 0 yEnd= 9 +LED 135 : xStart= 220 xEnd= 229 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 220 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 183 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 174 xEnd= 183 yStart= 0 yEnd= 9 +LED 141 : xStart= 165 xEnd= 174 yStart= 0 yEnd= 9 +LED 142 : xStart= 156 xEnd= 165 yStart= 0 yEnd= 9 +LED 143 : xStart= 147 xEnd= 156 yStart= 0 yEnd= 9 +LED 144 : xStart= 138 xEnd= 147 yStart= 0 yEnd= 9 +LED 145 : xStart= 129 xEnd= 138 yStart= 0 yEnd= 9 +LED 146 : xStart= 120 xEnd= 129 yStart= 0 yEnd= 9 +LED 147 : xStart= 111 xEnd= 120 yStart= 0 yEnd= 9 +LED 148 : xStart= 101 xEnd= 111 yStart= 0 yEnd= 9 +LED 149 : xStart= 92 xEnd= 101 yStart= 0 yEnd= 9 +LED 150 : xStart= 83 xEnd= 92 yStart= 0 yEnd= 9 +LED 151 : xStart= 74 xEnd= 83 yStart= 0 yEnd= 9 +LED 152 : xStart= 65 xEnd= 74 yStart= 0 yEnd= 9 +LED 153 : xStart= 56 xEnd= 65 yStart= 0 yEnd= 9 +LED 154 : xStart= 47 xEnd= 56 yStart= 0 yEnd= 9 +LED 155 : xStart= 38 xEnd= 47 yStart= 0 yEnd= 9 +LED 156 : xStart= 29 xEnd= 38 yStart= 0 yEnd= 9 +LED 157 : xStart= 20 xEnd= 29 yStart= 0 yEnd= 9 +LED 158 : xStart= 11 xEnd= 20 yStart= 0 yEnd= 9 +LED 159 : xStart= 2 xEnd= 11 yStart= 0 yEnd= 9 +LED 160 : xStart= 2 xEnd= 33 yStart= 0 yEnd= 9 +LED 161 : xStart= 2 xEnd= 33 yStart= 9 yEnd= 18 +LED 162 : xStart= 2 xEnd= 33 yStart= 18 yEnd= 27 +LED 163 : xStart= 2 xEnd= 33 yStart= 27 yEnd= 36 +LED 164 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 45 +LED 165 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 54 +LED 166 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 62 +LED 167 : xStart= 2 xEnd= 33 yStart= 62 yEnd= 72 +LED 168 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 81 +LED 169 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 99 +LED 171 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 108 +LED 172 : xStart= 2 xEnd= 33 yStart= 108 yEnd= 117 +LED 173 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 125 +LED 174 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 135 +LED 175 : xStart= 2 xEnd= 33 yStart= 135 yEnd= 144 +LED 176 : xStart= 2 xEnd= 33 yStart= 144 yEnd= 153 +LED 177 : xStart= 2 xEnd= 33 yStart= 153 yEnd= 162 +LED 178 : xStart= 2 xEnd= 33 yStart= 162 yEnd= 171 +LED 179 : xStart= 2 xEnd= 33 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#131314" + LED 1: "#131314" + LED (bottom+1): "#212021" + LED (bottom+right+1): "#343636" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121314" + LED 1: "#121314" + LED (bottom+1): "#1f1f21" + LED (bottom+right+1): "#333535" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#333535" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#333535" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#333535" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 17 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 17 +buildLedMap: contentWidth= 636 contentHeight= 146 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 156 yEnd= 163 +LED 1 : xStart= 11 xEnd= 20 yStart= 156 yEnd= 163 +LED 2 : xStart= 20 xEnd= 29 yStart= 156 yEnd= 163 +LED 3 : xStart= 29 xEnd= 38 yStart= 156 yEnd= 163 +LED 4 : xStart= 38 xEnd= 47 yStart= 156 yEnd= 163 +LED 5 : xStart= 47 xEnd= 56 yStart= 156 yEnd= 163 +LED 6 : xStart= 56 xEnd= 65 yStart= 156 yEnd= 163 +LED 7 : xStart= 65 xEnd= 74 yStart= 156 yEnd= 163 +LED 8 : xStart= 74 xEnd= 83 yStart= 156 yEnd= 163 +LED 9 : xStart= 83 xEnd= 92 yStart= 156 yEnd= 163 +LED 10 : xStart= 92 xEnd= 101 yStart= 156 yEnd= 163 +LED 11 : xStart= 101 xEnd= 111 yStart= 156 yEnd= 163 +LED 12 : xStart= 111 xEnd= 120 yStart= 156 yEnd= 163 +LED 13 : xStart= 120 xEnd= 129 yStart= 156 yEnd= 163 +LED 14 : xStart= 129 xEnd= 138 yStart= 156 yEnd= 163 +LED 15 : xStart= 138 xEnd= 147 yStart= 156 yEnd= 163 +LED 16 : xStart= 147 xEnd= 156 yStart= 156 yEnd= 163 +LED 17 : xStart= 156 xEnd= 165 yStart= 156 yEnd= 163 +LED 18 : xStart= 165 xEnd= 174 yStart= 156 yEnd= 163 +LED 19 : xStart= 174 xEnd= 183 yStart= 156 yEnd= 163 +LED 20 : xStart= 183 xEnd= 192 yStart= 156 yEnd= 163 +LED 21 : xStart= 192 xEnd= 201 yStart= 156 yEnd= 163 +LED 22 : xStart= 201 xEnd= 210 yStart= 156 yEnd= 163 +LED 23 : xStart= 210 xEnd= 220 yStart= 156 yEnd= 163 +LED 24 : xStart= 220 xEnd= 229 yStart= 156 yEnd= 163 +LED 25 : xStart= 229 xEnd= 238 yStart= 156 yEnd= 163 +LED 26 : xStart= 238 xEnd= 247 yStart= 156 yEnd= 163 +LED 27 : xStart= 247 xEnd= 256 yStart= 156 yEnd= 163 +LED 28 : xStart= 256 xEnd= 265 yStart= 156 yEnd= 163 +LED 29 : xStart= 265 xEnd= 274 yStart= 156 yEnd= 163 +LED 30 : xStart= 274 xEnd= 283 yStart= 156 yEnd= 163 +LED 31 : xStart= 283 xEnd= 292 yStart= 156 yEnd= 163 +LED 32 : xStart= 292 xEnd= 301 yStart= 156 yEnd= 163 +LED 33 : xStart= 301 xEnd= 310 yStart= 156 yEnd= 163 +LED 34 : xStart= 310 xEnd= 320 yStart= 156 yEnd= 163 +LED 35 : xStart= 320 xEnd= 329 yStart= 156 yEnd= 163 +LED 36 : xStart= 329 xEnd= 338 yStart= 156 yEnd= 163 +LED 37 : xStart= 338 xEnd= 347 yStart= 156 yEnd= 163 +LED 38 : xStart= 347 xEnd= 356 yStart= 156 yEnd= 163 +LED 39 : xStart= 356 xEnd= 365 yStart= 156 yEnd= 163 +LED 40 : xStart= 365 xEnd= 374 yStart= 156 yEnd= 163 +LED 41 : xStart= 374 xEnd= 383 yStart= 156 yEnd= 163 +LED 42 : xStart= 383 xEnd= 392 yStart= 156 yEnd= 163 +LED 43 : xStart= 392 xEnd= 401 yStart= 156 yEnd= 163 +LED 44 : xStart= 401 xEnd= 410 yStart= 156 yEnd= 163 +LED 45 : xStart= 410 xEnd= 419 yStart= 156 yEnd= 163 +LED 46 : xStart= 419 xEnd= 429 yStart= 156 yEnd= 163 +LED 47 : xStart= 429 xEnd= 438 yStart= 156 yEnd= 163 +LED 48 : xStart= 438 xEnd= 447 yStart= 156 yEnd= 163 +LED 49 : xStart= 447 xEnd= 456 yStart= 156 yEnd= 163 +LED 50 : xStart= 456 xEnd= 465 yStart= 156 yEnd= 163 +LED 51 : xStart= 465 xEnd= 474 yStart= 156 yEnd= 163 +LED 52 : xStart= 474 xEnd= 483 yStart= 156 yEnd= 163 +LED 53 : xStart= 483 xEnd= 492 yStart= 156 yEnd= 163 +LED 54 : xStart= 492 xEnd= 501 yStart= 156 yEnd= 163 +LED 55 : xStart= 501 xEnd= 510 yStart= 156 yEnd= 163 +LED 56 : xStart= 510 xEnd= 519 yStart= 156 yEnd= 163 +LED 57 : xStart= 519 xEnd= 528 yStart= 156 yEnd= 163 +LED 58 : xStart= 528 xEnd= 538 yStart= 156 yEnd= 163 +LED 59 : xStart= 538 xEnd= 547 yStart= 156 yEnd= 163 +LED 60 : xStart= 547 xEnd= 556 yStart= 156 yEnd= 163 +LED 61 : xStart= 556 xEnd= 565 yStart= 156 yEnd= 163 +LED 62 : xStart= 565 xEnd= 574 yStart= 156 yEnd= 163 +LED 63 : xStart= 574 xEnd= 583 yStart= 156 yEnd= 163 +LED 64 : xStart= 583 xEnd= 592 yStart= 156 yEnd= 163 +LED 65 : xStart= 592 xEnd= 601 yStart= 156 yEnd= 163 +LED 66 : xStart= 601 xEnd= 610 yStart= 156 yEnd= 163 +LED 67 : xStart= 610 xEnd= 619 yStart= 156 yEnd= 163 +LED 68 : xStart= 619 xEnd= 628 yStart= 156 yEnd= 163 +LED 69 : xStart= 628 xEnd= 638 yStart= 156 yEnd= 163 +LED 70 : xStart= 607 xEnd= 638 yStart= 155 yEnd= 163 +LED 71 : xStart= 607 xEnd= 638 yStart= 148 yEnd= 155 +LED 72 : xStart= 607 xEnd= 638 yStart= 141 yEnd= 148 +LED 73 : xStart= 607 xEnd= 638 yStart= 133 yEnd= 141 +LED 74 : xStart= 607 xEnd= 638 yStart= 126 yEnd= 133 +LED 75 : xStart= 607 xEnd= 638 yStart= 119 yEnd= 126 +LED 76 : xStart= 607 xEnd= 638 yStart= 111 yEnd= 119 +LED 77 : xStart= 607 xEnd= 638 yStart= 104 yEnd= 111 +LED 78 : xStart= 607 xEnd= 638 yStart= 97 yEnd= 104 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 97 +LED 80 : xStart= 607 xEnd= 638 yStart= 82 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 75 yEnd= 82 +LED 82 : xStart= 607 xEnd= 638 yStart= 68 yEnd= 75 +LED 83 : xStart= 607 xEnd= 638 yStart= 60 yEnd= 68 +LED 84 : xStart= 607 xEnd= 638 yStart= 53 yEnd= 60 +LED 85 : xStart= 607 xEnd= 638 yStart= 46 yEnd= 53 +LED 86 : xStart= 607 xEnd= 638 yStart= 38 yEnd= 46 +LED 87 : xStart= 607 xEnd= 638 yStart= 31 yEnd= 38 +LED 88 : xStart= 607 xEnd= 638 yStart= 24 yEnd= 31 +LED 89 : xStart= 607 xEnd= 638 yStart= 17 yEnd= 24 +LED 90 : xStart= 628 xEnd= 638 yStart= 17 yEnd= 24 +LED 91 : xStart= 619 xEnd= 628 yStart= 17 yEnd= 24 +LED 92 : xStart= 610 xEnd= 619 yStart= 17 yEnd= 24 +LED 93 : xStart= 601 xEnd= 610 yStart= 17 yEnd= 24 +LED 94 : xStart= 592 xEnd= 601 yStart= 17 yEnd= 24 +LED 95 : xStart= 583 xEnd= 592 yStart= 17 yEnd= 24 +LED 96 : xStart= 574 xEnd= 583 yStart= 17 yEnd= 24 +LED 97 : xStart= 565 xEnd= 574 yStart= 17 yEnd= 24 +LED 98 : xStart= 556 xEnd= 565 yStart= 17 yEnd= 24 +LED 99 : xStart= 547 xEnd= 556 yStart= 17 yEnd= 24 +LED 100 : xStart= 538 xEnd= 547 yStart= 17 yEnd= 24 +LED 101 : xStart= 528 xEnd= 538 yStart= 17 yEnd= 24 +LED 102 : xStart= 519 xEnd= 528 yStart= 17 yEnd= 24 +LED 103 : xStart= 510 xEnd= 519 yStart= 17 yEnd= 24 +LED 104 : xStart= 501 xEnd= 510 yStart= 17 yEnd= 24 +LED 105 : xStart= 492 xEnd= 501 yStart= 17 yEnd= 24 +LED 106 : xStart= 483 xEnd= 492 yStart= 17 yEnd= 24 +LED 107 : xStart= 474 xEnd= 483 yStart= 17 yEnd= 24 +LED 108 : xStart= 465 xEnd= 474 yStart= 17 yEnd= 24 +LED 109 : xStart= 456 xEnd= 465 yStart= 17 yEnd= 24 +LED 110 : xStart= 447 xEnd= 456 yStart= 17 yEnd= 24 +LED 111 : xStart= 438 xEnd= 447 yStart= 17 yEnd= 24 +LED 112 : xStart= 429 xEnd= 438 yStart= 17 yEnd= 24 +LED 113 : xStart= 419 xEnd= 429 yStart= 17 yEnd= 24 +LED 114 : xStart= 410 xEnd= 419 yStart= 17 yEnd= 24 +LED 115 : xStart= 401 xEnd= 410 yStart= 17 yEnd= 24 +LED 116 : xStart= 392 xEnd= 401 yStart= 17 yEnd= 24 +LED 117 : xStart= 383 xEnd= 392 yStart= 17 yEnd= 24 +LED 118 : xStart= 374 xEnd= 383 yStart= 17 yEnd= 24 +LED 119 : xStart= 365 xEnd= 374 yStart= 17 yEnd= 24 +LED 120 : xStart= 356 xEnd= 365 yStart= 17 yEnd= 24 +LED 121 : xStart= 347 xEnd= 356 yStart= 17 yEnd= 24 +LED 122 : xStart= 338 xEnd= 347 yStart= 17 yEnd= 24 +LED 123 : xStart= 329 xEnd= 338 yStart= 17 yEnd= 24 +LED 124 : xStart= 320 xEnd= 329 yStart= 17 yEnd= 24 +LED 125 : xStart= 310 xEnd= 320 yStart= 17 yEnd= 24 +LED 126 : xStart= 301 xEnd= 310 yStart= 17 yEnd= 24 +LED 127 : xStart= 292 xEnd= 301 yStart= 17 yEnd= 24 +LED 128 : xStart= 283 xEnd= 292 yStart= 17 yEnd= 24 +LED 129 : xStart= 274 xEnd= 283 yStart= 17 yEnd= 24 +LED 130 : xStart= 265 xEnd= 274 yStart= 17 yEnd= 24 +LED 131 : xStart= 256 xEnd= 265 yStart= 17 yEnd= 24 +LED 132 : xStart= 247 xEnd= 256 yStart= 17 yEnd= 24 +LED 133 : xStart= 238 xEnd= 247 yStart= 17 yEnd= 24 +LED 134 : xStart= 229 xEnd= 238 yStart= 17 yEnd= 24 +LED 135 : xStart= 220 xEnd= 229 yStart= 17 yEnd= 24 +LED 136 : xStart= 210 xEnd= 220 yStart= 17 yEnd= 24 +LED 137 : xStart= 201 xEnd= 210 yStart= 17 yEnd= 24 +LED 138 : xStart= 192 xEnd= 201 yStart= 17 yEnd= 24 +LED 139 : xStart= 183 xEnd= 192 yStart= 17 yEnd= 24 +LED 140 : xStart= 174 xEnd= 183 yStart= 17 yEnd= 24 +LED 141 : xStart= 165 xEnd= 174 yStart= 17 yEnd= 24 +LED 142 : xStart= 156 xEnd= 165 yStart= 17 yEnd= 24 +LED 143 : xStart= 147 xEnd= 156 yStart= 17 yEnd= 24 +LED 144 : xStart= 138 xEnd= 147 yStart= 17 yEnd= 24 +LED 145 : xStart= 129 xEnd= 138 yStart= 17 yEnd= 24 +LED 146 : xStart= 120 xEnd= 129 yStart= 17 yEnd= 24 +LED 147 : xStart= 111 xEnd= 120 yStart= 17 yEnd= 24 +LED 148 : xStart= 101 xEnd= 111 yStart= 17 yEnd= 24 +LED 149 : xStart= 92 xEnd= 101 yStart= 17 yEnd= 24 +LED 150 : xStart= 83 xEnd= 92 yStart= 17 yEnd= 24 +LED 151 : xStart= 74 xEnd= 83 yStart= 17 yEnd= 24 +LED 152 : xStart= 65 xEnd= 74 yStart= 17 yEnd= 24 +LED 153 : xStart= 56 xEnd= 65 yStart= 17 yEnd= 24 +LED 154 : xStart= 47 xEnd= 56 yStart= 17 yEnd= 24 +LED 155 : xStart= 38 xEnd= 47 yStart= 17 yEnd= 24 +LED 156 : xStart= 29 xEnd= 38 yStart= 17 yEnd= 24 +LED 157 : xStart= 20 xEnd= 29 yStart= 17 yEnd= 24 +LED 158 : xStart= 11 xEnd= 20 yStart= 17 yEnd= 24 +LED 159 : xStart= 2 xEnd= 11 yStart= 17 yEnd= 24 +LED 160 : xStart= 2 xEnd= 33 yStart= 17 yEnd= 24 +LED 161 : xStart= 2 xEnd= 33 yStart= 24 yEnd= 31 +LED 162 : xStart= 2 xEnd= 33 yStart= 31 yEnd= 38 +LED 163 : xStart= 2 xEnd= 33 yStart= 38 yEnd= 46 +LED 164 : xStart= 2 xEnd= 33 yStart= 46 yEnd= 53 +LED 165 : xStart= 2 xEnd= 33 yStart= 53 yEnd= 60 +LED 166 : xStart= 2 xEnd= 33 yStart= 60 yEnd= 68 +LED 167 : xStart= 2 xEnd= 33 yStart= 68 yEnd= 75 +LED 168 : xStart= 2 xEnd= 33 yStart= 75 yEnd= 82 +LED 169 : xStart= 2 xEnd= 33 yStart= 82 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 97 +LED 171 : xStart= 2 xEnd= 33 yStart= 97 yEnd= 104 +LED 172 : xStart= 2 xEnd= 33 yStart= 104 yEnd= 111 +LED 173 : xStart= 2 xEnd= 33 yStart= 111 yEnd= 119 +LED 174 : xStart= 2 xEnd= 33 yStart= 119 yEnd= 126 +LED 175 : xStart= 2 xEnd= 33 yStart= 126 yEnd= 133 +LED 176 : xStart= 2 xEnd= 33 yStart= 133 yEnd= 141 +LED 177 : xStart= 2 xEnd= 33 yStart= 141 yEnd= 148 +LED 178 : xStart= 2 xEnd= 33 yStart= 148 yEnd= 155 +LED 179 : xStart= 2 xEnd= 33 yStart= 155 yEnd= 163 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#191c20" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 23 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 23 +buildLedMap: contentWidth= 636 contentHeight= 134 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 151 yEnd= 157 +LED 1 : xStart= 11 xEnd= 20 yStart= 151 yEnd= 157 +LED 2 : xStart= 20 xEnd= 29 yStart= 151 yEnd= 157 +LED 3 : xStart= 29 xEnd= 38 yStart= 151 yEnd= 157 +LED 4 : xStart= 38 xEnd= 47 yStart= 151 yEnd= 157 +LED 5 : xStart= 47 xEnd= 56 yStart= 151 yEnd= 157 +LED 6 : xStart= 56 xEnd= 65 yStart= 151 yEnd= 157 +LED 7 : xStart= 65 xEnd= 74 yStart= 151 yEnd= 157 +LED 8 : xStart= 74 xEnd= 83 yStart= 151 yEnd= 157 +LED 9 : xStart= 83 xEnd= 92 yStart= 151 yEnd= 157 +LED 10 : xStart= 92 xEnd= 101 yStart= 151 yEnd= 157 +LED 11 : xStart= 101 xEnd= 111 yStart= 151 yEnd= 157 +LED 12 : xStart= 111 xEnd= 120 yStart= 151 yEnd= 157 +LED 13 : xStart= 120 xEnd= 129 yStart= 151 yEnd= 157 +LED 14 : xStart= 129 xEnd= 138 yStart= 151 yEnd= 157 +LED 15 : xStart= 138 xEnd= 147 yStart= 151 yEnd= 157 +LED 16 : xStart= 147 xEnd= 156 yStart= 151 yEnd= 157 +LED 17 : xStart= 156 xEnd= 165 yStart= 151 yEnd= 157 +LED 18 : xStart= 165 xEnd= 174 yStart= 151 yEnd= 157 +LED 19 : xStart= 174 xEnd= 183 yStart= 151 yEnd= 157 +LED 20 : xStart= 183 xEnd= 192 yStart= 151 yEnd= 157 +LED 21 : xStart= 192 xEnd= 201 yStart= 151 yEnd= 157 +LED 22 : xStart= 201 xEnd= 210 yStart= 151 yEnd= 157 +LED 23 : xStart= 210 xEnd= 220 yStart= 151 yEnd= 157 +LED 24 : xStart= 220 xEnd= 229 yStart= 151 yEnd= 157 +LED 25 : xStart= 229 xEnd= 238 yStart= 151 yEnd= 157 +LED 26 : xStart= 238 xEnd= 247 yStart= 151 yEnd= 157 +LED 27 : xStart= 247 xEnd= 256 yStart= 151 yEnd= 157 +LED 28 : xStart= 256 xEnd= 265 yStart= 151 yEnd= 157 +LED 29 : xStart= 265 xEnd= 274 yStart= 151 yEnd= 157 +LED 30 : xStart= 274 xEnd= 283 yStart= 151 yEnd= 157 +LED 31 : xStart= 283 xEnd= 292 yStart= 151 yEnd= 157 +LED 32 : xStart= 292 xEnd= 301 yStart= 151 yEnd= 157 +LED 33 : xStart= 301 xEnd= 310 yStart= 151 yEnd= 157 +LED 34 : xStart= 310 xEnd= 320 yStart= 151 yEnd= 157 +LED 35 : xStart= 320 xEnd= 329 yStart= 151 yEnd= 157 +LED 36 : xStart= 329 xEnd= 338 yStart= 151 yEnd= 157 +LED 37 : xStart= 338 xEnd= 347 yStart= 151 yEnd= 157 +LED 38 : xStart= 347 xEnd= 356 yStart= 151 yEnd= 157 +LED 39 : xStart= 356 xEnd= 365 yStart= 151 yEnd= 157 +LED 40 : xStart= 365 xEnd= 374 yStart= 151 yEnd= 157 +LED 41 : xStart= 374 xEnd= 383 yStart= 151 yEnd= 157 +LED 42 : xStart= 383 xEnd= 392 yStart= 151 yEnd= 157 +LED 43 : xStart= 392 xEnd= 401 yStart= 151 yEnd= 157 +LED 44 : xStart= 401 xEnd= 410 yStart= 151 yEnd= 157 +LED 45 : xStart= 410 xEnd= 419 yStart= 151 yEnd= 157 +LED 46 : xStart= 419 xEnd= 429 yStart= 151 yEnd= 157 +LED 47 : xStart= 429 xEnd= 438 yStart= 151 yEnd= 157 +LED 48 : xStart= 438 xEnd= 447 yStart= 151 yEnd= 157 +LED 49 : xStart= 447 xEnd= 456 yStart= 151 yEnd= 157 +LED 50 : xStart= 456 xEnd= 465 yStart= 151 yEnd= 157 +LED 51 : xStart= 465 xEnd= 474 yStart= 151 yEnd= 157 +LED 52 : xStart= 474 xEnd= 483 yStart= 151 yEnd= 157 +LED 53 : xStart= 483 xEnd= 492 yStart= 151 yEnd= 157 +LED 54 : xStart= 492 xEnd= 501 yStart= 151 yEnd= 157 +LED 55 : xStart= 501 xEnd= 510 yStart= 151 yEnd= 157 +LED 56 : xStart= 510 xEnd= 519 yStart= 151 yEnd= 157 +LED 57 : xStart= 519 xEnd= 528 yStart= 151 yEnd= 157 +LED 58 : xStart= 528 xEnd= 538 yStart= 151 yEnd= 157 +LED 59 : xStart= 538 xEnd= 547 yStart= 151 yEnd= 157 +LED 60 : xStart= 547 xEnd= 556 yStart= 151 yEnd= 157 +LED 61 : xStart= 556 xEnd= 565 yStart= 151 yEnd= 157 +LED 62 : xStart= 565 xEnd= 574 yStart= 151 yEnd= 157 +LED 63 : xStart= 574 xEnd= 583 yStart= 151 yEnd= 157 +LED 64 : xStart= 583 xEnd= 592 yStart= 151 yEnd= 157 +LED 65 : xStart= 592 xEnd= 601 yStart= 151 yEnd= 157 +LED 66 : xStart= 601 xEnd= 610 yStart= 151 yEnd= 157 +LED 67 : xStart= 610 xEnd= 619 yStart= 151 yEnd= 157 +LED 68 : xStart= 619 xEnd= 628 yStart= 151 yEnd= 157 +LED 69 : xStart= 628 xEnd= 638 yStart= 151 yEnd= 157 +LED 70 : xStart= 607 xEnd= 638 yStart= 150 yEnd= 157 +LED 71 : xStart= 607 xEnd= 638 yStart= 143 yEnd= 150 +LED 72 : xStart= 607 xEnd= 638 yStart= 136 yEnd= 143 +LED 73 : xStart= 607 xEnd= 638 yStart= 130 yEnd= 136 +LED 74 : xStart= 607 xEnd= 638 yStart= 123 yEnd= 130 +LED 75 : xStart= 607 xEnd= 638 yStart= 116 yEnd= 123 +LED 76 : xStart= 607 xEnd= 638 yStart= 110 yEnd= 116 +LED 77 : xStart= 607 xEnd= 638 yStart= 103 yEnd= 110 +LED 78 : xStart= 607 xEnd= 638 yStart= 96 yEnd= 103 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 96 +LED 80 : xStart= 607 xEnd= 638 yStart= 83 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 76 yEnd= 83 +LED 82 : xStart= 607 xEnd= 638 yStart= 69 yEnd= 76 +LED 83 : xStart= 607 xEnd= 638 yStart= 63 yEnd= 69 +LED 84 : xStart= 607 xEnd= 638 yStart= 56 yEnd= 63 +LED 85 : xStart= 607 xEnd= 638 yStart= 49 yEnd= 56 +LED 86 : xStart= 607 xEnd= 638 yStart= 43 yEnd= 49 +LED 87 : xStart= 607 xEnd= 638 yStart= 36 yEnd= 43 +LED 88 : xStart= 607 xEnd= 638 yStart= 29 yEnd= 36 +LED 89 : xStart= 607 xEnd= 638 yStart= 23 yEnd= 29 +LED 90 : xStart= 628 xEnd= 638 yStart= 23 yEnd= 29 +LED 91 : xStart= 619 xEnd= 628 yStart= 23 yEnd= 29 +LED 92 : xStart= 610 xEnd= 619 yStart= 23 yEnd= 29 +LED 93 : xStart= 601 xEnd= 610 yStart= 23 yEnd= 29 +LED 94 : xStart= 592 xEnd= 601 yStart= 23 yEnd= 29 +LED 95 : xStart= 583 xEnd= 592 yStart= 23 yEnd= 29 +LED 96 : xStart= 574 xEnd= 583 yStart= 23 yEnd= 29 +LED 97 : xStart= 565 xEnd= 574 yStart= 23 yEnd= 29 +LED 98 : xStart= 556 xEnd= 565 yStart= 23 yEnd= 29 +LED 99 : xStart= 547 xEnd= 556 yStart= 23 yEnd= 29 +LED 100 : xStart= 538 xEnd= 547 yStart= 23 yEnd= 29 +LED 101 : xStart= 528 xEnd= 538 yStart= 23 yEnd= 29 +LED 102 : xStart= 519 xEnd= 528 yStart= 23 yEnd= 29 +LED 103 : xStart= 510 xEnd= 519 yStart= 23 yEnd= 29 +LED 104 : xStart= 501 xEnd= 510 yStart= 23 yEnd= 29 +LED 105 : xStart= 492 xEnd= 501 yStart= 23 yEnd= 29 +LED 106 : xStart= 483 xEnd= 492 yStart= 23 yEnd= 29 +LED 107 : xStart= 474 xEnd= 483 yStart= 23 yEnd= 29 +LED 108 : xStart= 465 xEnd= 474 yStart= 23 yEnd= 29 +LED 109 : xStart= 456 xEnd= 465 yStart= 23 yEnd= 29 +LED 110 : xStart= 447 xEnd= 456 yStart= 23 yEnd= 29 +LED 111 : xStart= 438 xEnd= 447 yStart= 23 yEnd= 29 +LED 112 : xStart= 429 xEnd= 438 yStart= 23 yEnd= 29 +LED 113 : xStart= 419 xEnd= 429 yStart= 23 yEnd= 29 +LED 114 : xStart= 410 xEnd= 419 yStart= 23 yEnd= 29 +LED 115 : xStart= 401 xEnd= 410 yStart= 23 yEnd= 29 +LED 116 : xStart= 392 xEnd= 401 yStart= 23 yEnd= 29 +LED 117 : xStart= 383 xEnd= 392 yStart= 23 yEnd= 29 +LED 118 : xStart= 374 xEnd= 383 yStart= 23 yEnd= 29 +LED 119 : xStart= 365 xEnd= 374 yStart= 23 yEnd= 29 +LED 120 : xStart= 356 xEnd= 365 yStart= 23 yEnd= 29 +LED 121 : xStart= 347 xEnd= 356 yStart= 23 yEnd= 29 +LED 122 : xStart= 338 xEnd= 347 yStart= 23 yEnd= 29 +LED 123 : xStart= 329 xEnd= 338 yStart= 23 yEnd= 29 +LED 124 : xStart= 320 xEnd= 329 yStart= 23 yEnd= 29 +LED 125 : xStart= 310 xEnd= 320 yStart= 23 yEnd= 29 +LED 126 : xStart= 301 xEnd= 310 yStart= 23 yEnd= 29 +LED 127 : xStart= 292 xEnd= 301 yStart= 23 yEnd= 29 +LED 128 : xStart= 283 xEnd= 292 yStart= 23 yEnd= 29 +LED 129 : xStart= 274 xEnd= 283 yStart= 23 yEnd= 29 +LED 130 : xStart= 265 xEnd= 274 yStart= 23 yEnd= 29 +LED 131 : xStart= 256 xEnd= 265 yStart= 23 yEnd= 29 +LED 132 : xStart= 247 xEnd= 256 yStart= 23 yEnd= 29 +LED 133 : xStart= 238 xEnd= 247 yStart= 23 yEnd= 29 +LED 134 : xStart= 229 xEnd= 238 yStart= 23 yEnd= 29 +LED 135 : xStart= 220 xEnd= 229 yStart= 23 yEnd= 29 +LED 136 : xStart= 210 xEnd= 220 yStart= 23 yEnd= 29 +LED 137 : xStart= 201 xEnd= 210 yStart= 23 yEnd= 29 +LED 138 : xStart= 192 xEnd= 201 yStart= 23 yEnd= 29 +LED 139 : xStart= 183 xEnd= 192 yStart= 23 yEnd= 29 +LED 140 : xStart= 174 xEnd= 183 yStart= 23 yEnd= 29 +LED 141 : xStart= 165 xEnd= 174 yStart= 23 yEnd= 29 +LED 142 : xStart= 156 xEnd= 165 yStart= 23 yEnd= 29 +LED 143 : xStart= 147 xEnd= 156 yStart= 23 yEnd= 29 +LED 144 : xStart= 138 xEnd= 147 yStart= 23 yEnd= 29 +LED 145 : xStart= 129 xEnd= 138 yStart= 23 yEnd= 29 +LED 146 : xStart= 120 xEnd= 129 yStart= 23 yEnd= 29 +LED 147 : xStart= 111 xEnd= 120 yStart= 23 yEnd= 29 +LED 148 : xStart= 101 xEnd= 111 yStart= 23 yEnd= 29 +LED 149 : xStart= 92 xEnd= 101 yStart= 23 yEnd= 29 +LED 150 : xStart= 83 xEnd= 92 yStart= 23 yEnd= 29 +LED 151 : xStart= 74 xEnd= 83 yStart= 23 yEnd= 29 +LED 152 : xStart= 65 xEnd= 74 yStart= 23 yEnd= 29 +LED 153 : xStart= 56 xEnd= 65 yStart= 23 yEnd= 29 +LED 154 : xStart= 47 xEnd= 56 yStart= 23 yEnd= 29 +LED 155 : xStart= 38 xEnd= 47 yStart= 23 yEnd= 29 +LED 156 : xStart= 29 xEnd= 38 yStart= 23 yEnd= 29 +LED 157 : xStart= 20 xEnd= 29 yStart= 23 yEnd= 29 +LED 158 : xStart= 11 xEnd= 20 yStart= 23 yEnd= 29 +LED 159 : xStart= 2 xEnd= 11 yStart= 23 yEnd= 29 +LED 160 : xStart= 2 xEnd= 33 yStart= 23 yEnd= 29 +LED 161 : xStart= 2 xEnd= 33 yStart= 29 yEnd= 36 +LED 162 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 43 +LED 163 : xStart= 2 xEnd= 33 yStart= 43 yEnd= 49 +LED 164 : xStart= 2 xEnd= 33 yStart= 49 yEnd= 56 +LED 165 : xStart= 2 xEnd= 33 yStart= 56 yEnd= 63 +LED 166 : xStart= 2 xEnd= 33 yStart= 63 yEnd= 69 +LED 167 : xStart= 2 xEnd= 33 yStart= 69 yEnd= 76 +LED 168 : xStart= 2 xEnd= 33 yStart= 76 yEnd= 83 +LED 169 : xStart= 2 xEnd= 33 yStart= 83 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 96 +LED 171 : xStart= 2 xEnd= 33 yStart= 96 yEnd= 103 +LED 172 : xStart= 2 xEnd= 33 yStart= 103 yEnd= 110 +LED 173 : xStart= 2 xEnd= 33 yStart= 110 yEnd= 116 +LED 174 : xStart= 2 xEnd= 33 yStart= 116 yEnd= 123 +LED 175 : xStart= 2 xEnd= 33 yStart= 123 yEnd= 130 +LED 176 : xStart= 2 xEnd= 33 yStart= 130 yEnd= 136 +LED 177 : xStart= 2 xEnd= 33 yStart= 136 yEnd= 143 +LED 178 : xStart= 2 xEnd= 33 yStart= 143 yEnd= 150 +LED 179 : xStart= 2 xEnd= 33 yStart= 150 yEnd= 157 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#303b49" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 38 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 38 +buildLedMap: contentWidth= 636 contentHeight= 104 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 137 yEnd= 142 +LED 1 : xStart= 11 xEnd= 20 yStart= 137 yEnd= 142 +LED 2 : xStart= 20 xEnd= 29 yStart= 137 yEnd= 142 +LED 3 : xStart= 29 xEnd= 38 yStart= 137 yEnd= 142 +LED 4 : xStart= 38 xEnd= 47 yStart= 137 yEnd= 142 +LED 5 : xStart= 47 xEnd= 56 yStart= 137 yEnd= 142 +LED 6 : xStart= 56 xEnd= 65 yStart= 137 yEnd= 142 +LED 7 : xStart= 65 xEnd= 74 yStart= 137 yEnd= 142 +LED 8 : xStart= 74 xEnd= 83 yStart= 137 yEnd= 142 +LED 9 : xStart= 83 xEnd= 92 yStart= 137 yEnd= 142 +LED 10 : xStart= 92 xEnd= 101 yStart= 137 yEnd= 142 +LED 11 : xStart= 101 xEnd= 111 yStart= 137 yEnd= 142 +LED 12 : xStart= 111 xEnd= 120 yStart= 137 yEnd= 142 +LED 13 : xStart= 120 xEnd= 129 yStart= 137 yEnd= 142 +LED 14 : xStart= 129 xEnd= 138 yStart= 137 yEnd= 142 +LED 15 : xStart= 138 xEnd= 147 yStart= 137 yEnd= 142 +LED 16 : xStart= 147 xEnd= 156 yStart= 137 yEnd= 142 +LED 17 : xStart= 156 xEnd= 165 yStart= 137 yEnd= 142 +LED 18 : xStart= 165 xEnd= 174 yStart= 137 yEnd= 142 +LED 19 : xStart= 174 xEnd= 183 yStart= 137 yEnd= 142 +LED 20 : xStart= 183 xEnd= 192 yStart= 137 yEnd= 142 +LED 21 : xStart= 192 xEnd= 201 yStart= 137 yEnd= 142 +LED 22 : xStart= 201 xEnd= 210 yStart= 137 yEnd= 142 +LED 23 : xStart= 210 xEnd= 220 yStart= 137 yEnd= 142 +LED 24 : xStart= 220 xEnd= 229 yStart= 137 yEnd= 142 +LED 25 : xStart= 229 xEnd= 238 yStart= 137 yEnd= 142 +LED 26 : xStart= 238 xEnd= 247 yStart= 137 yEnd= 142 +LED 27 : xStart= 247 xEnd= 256 yStart= 137 yEnd= 142 +LED 28 : xStart= 256 xEnd= 265 yStart= 137 yEnd= 142 +LED 29 : xStart= 265 xEnd= 274 yStart= 137 yEnd= 142 +LED 30 : xStart= 274 xEnd= 283 yStart= 137 yEnd= 142 +LED 31 : xStart= 283 xEnd= 292 yStart= 137 yEnd= 142 +LED 32 : xStart= 292 xEnd= 301 yStart= 137 yEnd= 142 +LED 33 : xStart= 301 xEnd= 310 yStart= 137 yEnd= 142 +LED 34 : xStart= 310 xEnd= 320 yStart= 137 yEnd= 142 +LED 35 : xStart= 320 xEnd= 329 yStart= 137 yEnd= 142 +LED 36 : xStart= 329 xEnd= 338 yStart= 137 yEnd= 142 +LED 37 : xStart= 338 xEnd= 347 yStart= 137 yEnd= 142 +LED 38 : xStart= 347 xEnd= 356 yStart= 137 yEnd= 142 +LED 39 : xStart= 356 xEnd= 365 yStart= 137 yEnd= 142 +LED 40 : xStart= 365 xEnd= 374 yStart= 137 yEnd= 142 +LED 41 : xStart= 374 xEnd= 383 yStart= 137 yEnd= 142 +LED 42 : xStart= 383 xEnd= 392 yStart= 137 yEnd= 142 +LED 43 : xStart= 392 xEnd= 401 yStart= 137 yEnd= 142 +LED 44 : xStart= 401 xEnd= 410 yStart= 137 yEnd= 142 +LED 45 : xStart= 410 xEnd= 419 yStart= 137 yEnd= 142 +LED 46 : xStart= 419 xEnd= 429 yStart= 137 yEnd= 142 +LED 47 : xStart= 429 xEnd= 438 yStart= 137 yEnd= 142 +LED 48 : xStart= 438 xEnd= 447 yStart= 137 yEnd= 142 +LED 49 : xStart= 447 xEnd= 456 yStart= 137 yEnd= 142 +LED 50 : xStart= 456 xEnd= 465 yStart= 137 yEnd= 142 +LED 51 : xStart= 465 xEnd= 474 yStart= 137 yEnd= 142 +LED 52 : xStart= 474 xEnd= 483 yStart= 137 yEnd= 142 +LED 53 : xStart= 483 xEnd= 492 yStart= 137 yEnd= 142 +LED 54 : xStart= 492 xEnd= 501 yStart= 137 yEnd= 142 +LED 55 : xStart= 501 xEnd= 510 yStart= 137 yEnd= 142 +LED 56 : xStart= 510 xEnd= 519 yStart= 137 yEnd= 142 +LED 57 : xStart= 519 xEnd= 528 yStart= 137 yEnd= 142 +LED 58 : xStart= 528 xEnd= 538 yStart= 137 yEnd= 142 +LED 59 : xStart= 538 xEnd= 547 yStart= 137 yEnd= 142 +LED 60 : xStart= 547 xEnd= 556 yStart= 137 yEnd= 142 +LED 61 : xStart= 556 xEnd= 565 yStart= 137 yEnd= 142 +LED 62 : xStart= 565 xEnd= 574 yStart= 137 yEnd= 142 +LED 63 : xStart= 574 xEnd= 583 yStart= 137 yEnd= 142 +LED 64 : xStart= 583 xEnd= 592 yStart= 137 yEnd= 142 +LED 65 : xStart= 592 xEnd= 601 yStart= 137 yEnd= 142 +LED 66 : xStart= 601 xEnd= 610 yStart= 137 yEnd= 142 +LED 67 : xStart= 610 xEnd= 619 yStart= 137 yEnd= 142 +LED 68 : xStart= 619 xEnd= 628 yStart= 137 yEnd= 142 +LED 69 : xStart= 628 xEnd= 638 yStart= 137 yEnd= 142 +LED 70 : xStart= 607 xEnd= 638 yStart= 136 yEnd= 142 +LED 71 : xStart= 607 xEnd= 638 yStart= 131 yEnd= 136 +LED 72 : xStart= 607 xEnd= 638 yStart= 126 yEnd= 131 +LED 73 : xStart= 607 xEnd= 638 yStart= 121 yEnd= 126 +LED 74 : xStart= 607 xEnd= 638 yStart= 116 yEnd= 121 +LED 75 : xStart= 607 xEnd= 638 yStart= 110 yEnd= 116 +LED 76 : xStart= 607 xEnd= 638 yStart= 105 yEnd= 110 +LED 77 : xStart= 607 xEnd= 638 yStart= 100 yEnd= 105 +LED 78 : xStart= 607 xEnd= 638 yStart= 95 yEnd= 100 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 95 +LED 80 : xStart= 607 xEnd= 638 yStart= 84 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 79 yEnd= 84 +LED 82 : xStart= 607 xEnd= 638 yStart= 74 yEnd= 79 +LED 83 : xStart= 607 xEnd= 638 yStart= 69 yEnd= 74 +LED 84 : xStart= 607 xEnd= 638 yStart= 64 yEnd= 69 +LED 85 : xStart= 607 xEnd= 638 yStart= 58 yEnd= 64 +LED 86 : xStart= 607 xEnd= 638 yStart= 53 yEnd= 58 +LED 87 : xStart= 607 xEnd= 638 yStart= 48 yEnd= 53 +LED 88 : xStart= 607 xEnd= 638 yStart= 43 yEnd= 48 +LED 89 : xStart= 607 xEnd= 638 yStart= 38 yEnd= 43 +LED 90 : xStart= 628 xEnd= 638 yStart= 38 yEnd= 43 +LED 91 : xStart= 619 xEnd= 628 yStart= 38 yEnd= 43 +LED 92 : xStart= 610 xEnd= 619 yStart= 38 yEnd= 43 +LED 93 : xStart= 601 xEnd= 610 yStart= 38 yEnd= 43 +LED 94 : xStart= 592 xEnd= 601 yStart= 38 yEnd= 43 +LED 95 : xStart= 583 xEnd= 592 yStart= 38 yEnd= 43 +LED 96 : xStart= 574 xEnd= 583 yStart= 38 yEnd= 43 +LED 97 : xStart= 565 xEnd= 574 yStart= 38 yEnd= 43 +LED 98 : xStart= 556 xEnd= 565 yStart= 38 yEnd= 43 +LED 99 : xStart= 547 xEnd= 556 yStart= 38 yEnd= 43 +LED 100 : xStart= 538 xEnd= 547 yStart= 38 yEnd= 43 +LED 101 : xStart= 528 xEnd= 538 yStart= 38 yEnd= 43 +LED 102 : xStart= 519 xEnd= 528 yStart= 38 yEnd= 43 +LED 103 : xStart= 510 xEnd= 519 yStart= 38 yEnd= 43 +LED 104 : xStart= 501 xEnd= 510 yStart= 38 yEnd= 43 +LED 105 : xStart= 492 xEnd= 501 yStart= 38 yEnd= 43 +LED 106 : xStart= 483 xEnd= 492 yStart= 38 yEnd= 43 +LED 107 : xStart= 474 xEnd= 483 yStart= 38 yEnd= 43 +LED 108 : xStart= 465 xEnd= 474 yStart= 38 yEnd= 43 +LED 109 : xStart= 456 xEnd= 465 yStart= 38 yEnd= 43 +LED 110 : xStart= 447 xEnd= 456 yStart= 38 yEnd= 43 +LED 111 : xStart= 438 xEnd= 447 yStart= 38 yEnd= 43 +LED 112 : xStart= 429 xEnd= 438 yStart= 38 yEnd= 43 +LED 113 : xStart= 419 xEnd= 429 yStart= 38 yEnd= 43 +LED 114 : xStart= 410 xEnd= 419 yStart= 38 yEnd= 43 +LED 115 : xStart= 401 xEnd= 410 yStart= 38 yEnd= 43 +LED 116 : xStart= 392 xEnd= 401 yStart= 38 yEnd= 43 +LED 117 : xStart= 383 xEnd= 392 yStart= 38 yEnd= 43 +LED 118 : xStart= 374 xEnd= 383 yStart= 38 yEnd= 43 +LED 119 : xStart= 365 xEnd= 374 yStart= 38 yEnd= 43 +LED 120 : xStart= 356 xEnd= 365 yStart= 38 yEnd= 43 +LED 121 : xStart= 347 xEnd= 356 yStart= 38 yEnd= 43 +LED 122 : xStart= 338 xEnd= 347 yStart= 38 yEnd= 43 +LED 123 : xStart= 329 xEnd= 338 yStart= 38 yEnd= 43 +LED 124 : xStart= 320 xEnd= 329 yStart= 38 yEnd= 43 +LED 125 : xStart= 310 xEnd= 320 yStart= 38 yEnd= 43 +LED 126 : xStart= 301 xEnd= 310 yStart= 38 yEnd= 43 +LED 127 : xStart= 292 xEnd= 301 yStart= 38 yEnd= 43 +LED 128 : xStart= 283 xEnd= 292 yStart= 38 yEnd= 43 +LED 129 : xStart= 274 xEnd= 283 yStart= 38 yEnd= 43 +LED 130 : xStart= 265 xEnd= 274 yStart= 38 yEnd= 43 +LED 131 : xStart= 256 xEnd= 265 yStart= 38 yEnd= 43 +LED 132 : xStart= 247 xEnd= 256 yStart= 38 yEnd= 43 +LED 133 : xStart= 238 xEnd= 247 yStart= 38 yEnd= 43 +LED 134 : xStart= 229 xEnd= 238 yStart= 38 yEnd= 43 +LED 135 : xStart= 220 xEnd= 229 yStart= 38 yEnd= 43 +LED 136 : xStart= 210 xEnd= 220 yStart= 38 yEnd= 43 +LED 137 : xStart= 201 xEnd= 210 yStart= 38 yEnd= 43 +LED 138 : xStart= 192 xEnd= 201 yStart= 38 yEnd= 43 +LED 139 : xStart= 183 xEnd= 192 yStart= 38 yEnd= 43 +LED 140 : xStart= 174 xEnd= 183 yStart= 38 yEnd= 43 +LED 141 : xStart= 165 xEnd= 174 yStart= 38 yEnd= 43 +LED 142 : xStart= 156 xEnd= 165 yStart= 38 yEnd= 43 +LED 143 : xStart= 147 xEnd= 156 yStart= 38 yEnd= 43 +LED 144 : xStart= 138 xEnd= 147 yStart= 38 yEnd= 43 +LED 145 : xStart= 129 xEnd= 138 yStart= 38 yEnd= 43 +LED 146 : xStart= 120 xEnd= 129 yStart= 38 yEnd= 43 +LED 147 : xStart= 111 xEnd= 120 yStart= 38 yEnd= 43 +LED 148 : xStart= 101 xEnd= 111 yStart= 38 yEnd= 43 +LED 149 : xStart= 92 xEnd= 101 yStart= 38 yEnd= 43 +LED 150 : xStart= 83 xEnd= 92 yStart= 38 yEnd= 43 +LED 151 : xStart= 74 xEnd= 83 yStart= 38 yEnd= 43 +LED 152 : xStart= 65 xEnd= 74 yStart= 38 yEnd= 43 +LED 153 : xStart= 56 xEnd= 65 yStart= 38 yEnd= 43 +LED 154 : xStart= 47 xEnd= 56 yStart= 38 yEnd= 43 +LED 155 : xStart= 38 xEnd= 47 yStart= 38 yEnd= 43 +LED 156 : xStart= 29 xEnd= 38 yStart= 38 yEnd= 43 +LED 157 : xStart= 20 xEnd= 29 yStart= 38 yEnd= 43 +LED 158 : xStart= 11 xEnd= 20 yStart= 38 yEnd= 43 +LED 159 : xStart= 2 xEnd= 11 yStart= 38 yEnd= 43 +LED 160 : xStart= 2 xEnd= 33 yStart= 38 yEnd= 43 +LED 161 : xStart= 2 xEnd= 33 yStart= 43 yEnd= 48 +LED 162 : xStart= 2 xEnd= 33 yStart= 48 yEnd= 53 +LED 163 : xStart= 2 xEnd= 33 yStart= 53 yEnd= 58 +LED 164 : xStart= 2 xEnd= 33 yStart= 58 yEnd= 64 +LED 165 : xStart= 2 xEnd= 33 yStart= 64 yEnd= 69 +LED 166 : xStart= 2 xEnd= 33 yStart= 69 yEnd= 74 +LED 167 : xStart= 2 xEnd= 33 yStart= 74 yEnd= 79 +LED 168 : xStart= 2 xEnd= 33 yStart= 79 yEnd= 84 +LED 169 : xStart= 2 xEnd= 33 yStart= 84 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 95 +LED 171 : xStart= 2 xEnd= 33 yStart= 95 yEnd= 100 +LED 172 : xStart= 2 xEnd= 33 yStart= 100 yEnd= 105 +LED 173 : xStart= 2 xEnd= 33 yStart= 105 yEnd= 110 +LED 174 : xStart= 2 xEnd= 33 yStart= 110 yEnd= 116 +LED 175 : xStart= 2 xEnd= 33 yStart= 116 yEnd= 121 +LED 176 : xStart= 2 xEnd= 33 yStart= 121 yEnd= 126 +LED 177 : xStart= 2 xEnd= 33 yStart= 126 yEnd= 131 +LED 178 : xStart= 2 xEnd= 33 yStart= 131 yEnd= 136 +LED 179 : xStart= 2 xEnd= 33 yStart= 136 yEnd= 142 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#323f4e" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 45 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 45 +buildLedMap: contentWidth= 636 contentHeight= 90 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 131 yEnd= 135 +LED 1 : xStart= 11 xEnd= 20 yStart= 131 yEnd= 135 +LED 2 : xStart= 20 xEnd= 29 yStart= 131 yEnd= 135 +LED 3 : xStart= 29 xEnd= 38 yStart= 131 yEnd= 135 +LED 4 : xStart= 38 xEnd= 47 yStart= 131 yEnd= 135 +LED 5 : xStart= 47 xEnd= 56 yStart= 131 yEnd= 135 +LED 6 : xStart= 56 xEnd= 65 yStart= 131 yEnd= 135 +LED 7 : xStart= 65 xEnd= 74 yStart= 131 yEnd= 135 +LED 8 : xStart= 74 xEnd= 83 yStart= 131 yEnd= 135 +LED 9 : xStart= 83 xEnd= 92 yStart= 131 yEnd= 135 +LED 10 : xStart= 92 xEnd= 101 yStart= 131 yEnd= 135 +LED 11 : xStart= 101 xEnd= 111 yStart= 131 yEnd= 135 +LED 12 : xStart= 111 xEnd= 120 yStart= 131 yEnd= 135 +LED 13 : xStart= 120 xEnd= 129 yStart= 131 yEnd= 135 +LED 14 : xStart= 129 xEnd= 138 yStart= 131 yEnd= 135 +LED 15 : xStart= 138 xEnd= 147 yStart= 131 yEnd= 135 +LED 16 : xStart= 147 xEnd= 156 yStart= 131 yEnd= 135 +LED 17 : xStart= 156 xEnd= 165 yStart= 131 yEnd= 135 +LED 18 : xStart= 165 xEnd= 174 yStart= 131 yEnd= 135 +LED 19 : xStart= 174 xEnd= 183 yStart= 131 yEnd= 135 +LED 20 : xStart= 183 xEnd= 192 yStart= 131 yEnd= 135 +LED 21 : xStart= 192 xEnd= 201 yStart= 131 yEnd= 135 +LED 22 : xStart= 201 xEnd= 210 yStart= 131 yEnd= 135 +LED 23 : xStart= 210 xEnd= 220 yStart= 131 yEnd= 135 +LED 24 : xStart= 220 xEnd= 229 yStart= 131 yEnd= 135 +LED 25 : xStart= 229 xEnd= 238 yStart= 131 yEnd= 135 +LED 26 : xStart= 238 xEnd= 247 yStart= 131 yEnd= 135 +LED 27 : xStart= 247 xEnd= 256 yStart= 131 yEnd= 135 +LED 28 : xStart= 256 xEnd= 265 yStart= 131 yEnd= 135 +LED 29 : xStart= 265 xEnd= 274 yStart= 131 yEnd= 135 +LED 30 : xStart= 274 xEnd= 283 yStart= 131 yEnd= 135 +LED 31 : xStart= 283 xEnd= 292 yStart= 131 yEnd= 135 +LED 32 : xStart= 292 xEnd= 301 yStart= 131 yEnd= 135 +LED 33 : xStart= 301 xEnd= 310 yStart= 131 yEnd= 135 +LED 34 : xStart= 310 xEnd= 320 yStart= 131 yEnd= 135 +LED 35 : xStart= 320 xEnd= 329 yStart= 131 yEnd= 135 +LED 36 : xStart= 329 xEnd= 338 yStart= 131 yEnd= 135 +LED 37 : xStart= 338 xEnd= 347 yStart= 131 yEnd= 135 +LED 38 : xStart= 347 xEnd= 356 yStart= 131 yEnd= 135 +LED 39 : xStart= 356 xEnd= 365 yStart= 131 yEnd= 135 +LED 40 : xStart= 365 xEnd= 374 yStart= 131 yEnd= 135 +LED 41 : xStart= 374 xEnd= 383 yStart= 131 yEnd= 135 +LED 42 : xStart= 383 xEnd= 392 yStart= 131 yEnd= 135 +LED 43 : xStart= 392 xEnd= 401 yStart= 131 yEnd= 135 +LED 44 : xStart= 401 xEnd= 410 yStart= 131 yEnd= 135 +LED 45 : xStart= 410 xEnd= 419 yStart= 131 yEnd= 135 +LED 46 : xStart= 419 xEnd= 429 yStart= 131 yEnd= 135 +LED 47 : xStart= 429 xEnd= 438 yStart= 131 yEnd= 135 +LED 48 : xStart= 438 xEnd= 447 yStart= 131 yEnd= 135 +LED 49 : xStart= 447 xEnd= 456 yStart= 131 yEnd= 135 +LED 50 : xStart= 456 xEnd= 465 yStart= 131 yEnd= 135 +LED 51 : xStart= 465 xEnd= 474 yStart= 131 yEnd= 135 +LED 52 : xStart= 474 xEnd= 483 yStart= 131 yEnd= 135 +LED 53 : xStart= 483 xEnd= 492 yStart= 131 yEnd= 135 +LED 54 : xStart= 492 xEnd= 501 yStart= 131 yEnd= 135 +LED 55 : xStart= 501 xEnd= 510 yStart= 131 yEnd= 135 +LED 56 : xStart= 510 xEnd= 519 yStart= 131 yEnd= 135 +LED 57 : xStart= 519 xEnd= 528 yStart= 131 yEnd= 135 +LED 58 : xStart= 528 xEnd= 538 yStart= 131 yEnd= 135 +LED 59 : xStart= 538 xEnd= 547 yStart= 131 yEnd= 135 +LED 60 : xStart= 547 xEnd= 556 yStart= 131 yEnd= 135 +LED 61 : xStart= 556 xEnd= 565 yStart= 131 yEnd= 135 +LED 62 : xStart= 565 xEnd= 574 yStart= 131 yEnd= 135 +LED 63 : xStart= 574 xEnd= 583 yStart= 131 yEnd= 135 +LED 64 : xStart= 583 xEnd= 592 yStart= 131 yEnd= 135 +LED 65 : xStart= 592 xEnd= 601 yStart= 131 yEnd= 135 +LED 66 : xStart= 601 xEnd= 610 yStart= 131 yEnd= 135 +LED 67 : xStart= 610 xEnd= 619 yStart= 131 yEnd= 135 +LED 68 : xStart= 619 xEnd= 628 yStart= 131 yEnd= 135 +LED 69 : xStart= 628 xEnd= 638 yStart= 131 yEnd= 135 +LED 70 : xStart= 607 xEnd= 638 yStart= 130 yEnd= 135 +LED 71 : xStart= 607 xEnd= 638 yStart= 126 yEnd= 130 +LED 72 : xStart= 607 xEnd= 638 yStart= 121 yEnd= 126 +LED 73 : xStart= 607 xEnd= 638 yStart= 117 yEnd= 121 +LED 74 : xStart= 607 xEnd= 638 yStart= 112 yEnd= 117 +LED 75 : xStart= 607 xEnd= 638 yStart= 107 yEnd= 112 +LED 76 : xStart= 607 xEnd= 638 yStart= 103 yEnd= 107 +LED 77 : xStart= 607 xEnd= 638 yStart= 99 yEnd= 103 +LED 78 : xStart= 607 xEnd= 638 yStart= 94 yEnd= 99 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 94 +LED 80 : xStart= 607 xEnd= 638 yStart= 85 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 81 yEnd= 85 +LED 82 : xStart= 607 xEnd= 638 yStart= 76 yEnd= 81 +LED 83 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 76 +LED 84 : xStart= 607 xEnd= 638 yStart= 67 yEnd= 72 +LED 85 : xStart= 607 xEnd= 638 yStart= 62 yEnd= 67 +LED 86 : xStart= 607 xEnd= 638 yStart= 58 yEnd= 62 +LED 87 : xStart= 607 xEnd= 638 yStart= 53 yEnd= 58 +LED 88 : xStart= 607 xEnd= 638 yStart= 49 yEnd= 53 +LED 89 : xStart= 607 xEnd= 638 yStart= 45 yEnd= 49 +LED 90 : xStart= 628 xEnd= 638 yStart= 45 yEnd= 49 +LED 91 : xStart= 619 xEnd= 628 yStart= 45 yEnd= 49 +LED 92 : xStart= 610 xEnd= 619 yStart= 45 yEnd= 49 +LED 93 : xStart= 601 xEnd= 610 yStart= 45 yEnd= 49 +LED 94 : xStart= 592 xEnd= 601 yStart= 45 yEnd= 49 +LED 95 : xStart= 583 xEnd= 592 yStart= 45 yEnd= 49 +LED 96 : xStart= 574 xEnd= 583 yStart= 45 yEnd= 49 +LED 97 : xStart= 565 xEnd= 574 yStart= 45 yEnd= 49 +LED 98 : xStart= 556 xEnd= 565 yStart= 45 yEnd= 49 +LED 99 : xStart= 547 xEnd= 556 yStart= 45 yEnd= 49 +LED 100 : xStart= 538 xEnd= 547 yStart= 45 yEnd= 49 +LED 101 : xStart= 528 xEnd= 538 yStart= 45 yEnd= 49 +LED 102 : xStart= 519 xEnd= 528 yStart= 45 yEnd= 49 +LED 103 : xStart= 510 xEnd= 519 yStart= 45 yEnd= 49 +LED 104 : xStart= 501 xEnd= 510 yStart= 45 yEnd= 49 +LED 105 : xStart= 492 xEnd= 501 yStart= 45 yEnd= 49 +LED 106 : xStart= 483 xEnd= 492 yStart= 45 yEnd= 49 +LED 107 : xStart= 474 xEnd= 483 yStart= 45 yEnd= 49 +LED 108 : xStart= 465 xEnd= 474 yStart= 45 yEnd= 49 +LED 109 : xStart= 456 xEnd= 465 yStart= 45 yEnd= 49 +LED 110 : xStart= 447 xEnd= 456 yStart= 45 yEnd= 49 +LED 111 : xStart= 438 xEnd= 447 yStart= 45 yEnd= 49 +LED 112 : xStart= 429 xEnd= 438 yStart= 45 yEnd= 49 +LED 113 : xStart= 419 xEnd= 429 yStart= 45 yEnd= 49 +LED 114 : xStart= 410 xEnd= 419 yStart= 45 yEnd= 49 +LED 115 : xStart= 401 xEnd= 410 yStart= 45 yEnd= 49 +LED 116 : xStart= 392 xEnd= 401 yStart= 45 yEnd= 49 +LED 117 : xStart= 383 xEnd= 392 yStart= 45 yEnd= 49 +LED 118 : xStart= 374 xEnd= 383 yStart= 45 yEnd= 49 +LED 119 : xStart= 365 xEnd= 374 yStart= 45 yEnd= 49 +LED 120 : xStart= 356 xEnd= 365 yStart= 45 yEnd= 49 +LED 121 : xStart= 347 xEnd= 356 yStart= 45 yEnd= 49 +LED 122 : xStart= 338 xEnd= 347 yStart= 45 yEnd= 49 +LED 123 : xStart= 329 xEnd= 338 yStart= 45 yEnd= 49 +LED 124 : xStart= 320 xEnd= 329 yStart= 45 yEnd= 49 +LED 125 : xStart= 310 xEnd= 320 yStart= 45 yEnd= 49 +LED 126 : xStart= 301 xEnd= 310 yStart= 45 yEnd= 49 +LED 127 : xStart= 292 xEnd= 301 yStart= 45 yEnd= 49 +LED 128 : xStart= 283 xEnd= 292 yStart= 45 yEnd= 49 +LED 129 : xStart= 274 xEnd= 283 yStart= 45 yEnd= 49 +LED 130 : xStart= 265 xEnd= 274 yStart= 45 yEnd= 49 +LED 131 : xStart= 256 xEnd= 265 yStart= 45 yEnd= 49 +LED 132 : xStart= 247 xEnd= 256 yStart= 45 yEnd= 49 +LED 133 : xStart= 238 xEnd= 247 yStart= 45 yEnd= 49 +LED 134 : xStart= 229 xEnd= 238 yStart= 45 yEnd= 49 +LED 135 : xStart= 220 xEnd= 229 yStart= 45 yEnd= 49 +LED 136 : xStart= 210 xEnd= 220 yStart= 45 yEnd= 49 +LED 137 : xStart= 201 xEnd= 210 yStart= 45 yEnd= 49 +LED 138 : xStart= 192 xEnd= 201 yStart= 45 yEnd= 49 +LED 139 : xStart= 183 xEnd= 192 yStart= 45 yEnd= 49 +LED 140 : xStart= 174 xEnd= 183 yStart= 45 yEnd= 49 +LED 141 : xStart= 165 xEnd= 174 yStart= 45 yEnd= 49 +LED 142 : xStart= 156 xEnd= 165 yStart= 45 yEnd= 49 +LED 143 : xStart= 147 xEnd= 156 yStart= 45 yEnd= 49 +LED 144 : xStart= 138 xEnd= 147 yStart= 45 yEnd= 49 +LED 145 : xStart= 129 xEnd= 138 yStart= 45 yEnd= 49 +LED 146 : xStart= 120 xEnd= 129 yStart= 45 yEnd= 49 +LED 147 : xStart= 111 xEnd= 120 yStart= 45 yEnd= 49 +LED 148 : xStart= 101 xEnd= 111 yStart= 45 yEnd= 49 +LED 149 : xStart= 92 xEnd= 101 yStart= 45 yEnd= 49 +LED 150 : xStart= 83 xEnd= 92 yStart= 45 yEnd= 49 +LED 151 : xStart= 74 xEnd= 83 yStart= 45 yEnd= 49 +LED 152 : xStart= 65 xEnd= 74 yStart= 45 yEnd= 49 +LED 153 : xStart= 56 xEnd= 65 yStart= 45 yEnd= 49 +LED 154 : xStart= 47 xEnd= 56 yStart= 45 yEnd= 49 +LED 155 : xStart= 38 xEnd= 47 yStart= 45 yEnd= 49 +LED 156 : xStart= 29 xEnd= 38 yStart= 45 yEnd= 49 +LED 157 : xStart= 20 xEnd= 29 yStart= 45 yEnd= 49 +LED 158 : xStart= 11 xEnd= 20 yStart= 45 yEnd= 49 +LED 159 : xStart= 2 xEnd= 11 yStart= 45 yEnd= 49 +LED 160 : xStart= 2 xEnd= 33 yStart= 45 yEnd= 49 +LED 161 : xStart= 2 xEnd= 33 yStart= 49 yEnd= 54 +LED 162 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 58 +LED 163 : xStart= 2 xEnd= 33 yStart= 58 yEnd= 63 +LED 164 : xStart= 2 xEnd= 33 yStart= 63 yEnd= 67 +LED 165 : xStart= 2 xEnd= 33 yStart= 67 yEnd= 72 +LED 166 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 76 +LED 167 : xStart= 2 xEnd= 33 yStart= 76 yEnd= 81 +LED 168 : xStart= 2 xEnd= 33 yStart= 81 yEnd= 85 +LED 169 : xStart= 2 xEnd= 33 yStart= 85 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 94 +LED 171 : xStart= 2 xEnd= 33 yStart= 94 yEnd= 99 +LED 172 : xStart= 2 xEnd= 33 yStart= 99 yEnd= 103 +LED 173 : xStart= 2 xEnd= 33 yStart= 103 yEnd= 107 +LED 174 : xStart= 2 xEnd= 33 yStart= 107 yEnd= 112 +LED 175 : xStart= 2 xEnd= 33 yStart= 112 yEnd= 117 +LED 176 : xStart= 2 xEnd= 33 yStart= 117 yEnd= 121 +LED 177 : xStart= 2 xEnd= 33 yStart= 121 yEnd= 126 +LED 178 : xStart= 2 xEnd= 33 yStart= 126 yEnd= 130 +LED 179 : xStart= 2 xEnd= 33 yStart= 130 yEnd= 135 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#303d4c" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#303d4c" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 38 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 38 +buildLedMap: contentWidth= 636 contentHeight= 104 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 137 yEnd= 142 +LED 1 : xStart= 11 xEnd= 20 yStart= 137 yEnd= 142 +LED 2 : xStart= 20 xEnd= 29 yStart= 137 yEnd= 142 +LED 3 : xStart= 29 xEnd= 38 yStart= 137 yEnd= 142 +LED 4 : xStart= 38 xEnd= 47 yStart= 137 yEnd= 142 +LED 5 : xStart= 47 xEnd= 56 yStart= 137 yEnd= 142 +LED 6 : xStart= 56 xEnd= 65 yStart= 137 yEnd= 142 +LED 7 : xStart= 65 xEnd= 74 yStart= 137 yEnd= 142 +LED 8 : xStart= 74 xEnd= 83 yStart= 137 yEnd= 142 +LED 9 : xStart= 83 xEnd= 92 yStart= 137 yEnd= 142 +LED 10 : xStart= 92 xEnd= 101 yStart= 137 yEnd= 142 +LED 11 : xStart= 101 xEnd= 111 yStart= 137 yEnd= 142 +LED 12 : xStart= 111 xEnd= 120 yStart= 137 yEnd= 142 +LED 13 : xStart= 120 xEnd= 129 yStart= 137 yEnd= 142 +LED 14 : xStart= 129 xEnd= 138 yStart= 137 yEnd= 142 +LED 15 : xStart= 138 xEnd= 147 yStart= 137 yEnd= 142 +LED 16 : xStart= 147 xEnd= 156 yStart= 137 yEnd= 142 +LED 17 : xStart= 156 xEnd= 165 yStart= 137 yEnd= 142 +LED 18 : xStart= 165 xEnd= 174 yStart= 137 yEnd= 142 +LED 19 : xStart= 174 xEnd= 183 yStart= 137 yEnd= 142 +LED 20 : xStart= 183 xEnd= 192 yStart= 137 yEnd= 142 +LED 21 : xStart= 192 xEnd= 201 yStart= 137 yEnd= 142 +LED 22 : xStart= 201 xEnd= 210 yStart= 137 yEnd= 142 +LED 23 : xStart= 210 xEnd= 220 yStart= 137 yEnd= 142 +LED 24 : xStart= 220 xEnd= 229 yStart= 137 yEnd= 142 +LED 25 : xStart= 229 xEnd= 238 yStart= 137 yEnd= 142 +LED 26 : xStart= 238 xEnd= 247 yStart= 137 yEnd= 142 +LED 27 : xStart= 247 xEnd= 256 yStart= 137 yEnd= 142 +LED 28 : xStart= 256 xEnd= 265 yStart= 137 yEnd= 142 +LED 29 : xStart= 265 xEnd= 274 yStart= 137 yEnd= 142 +LED 30 : xStart= 274 xEnd= 283 yStart= 137 yEnd= 142 +LED 31 : xStart= 283 xEnd= 292 yStart= 137 yEnd= 142 +LED 32 : xStart= 292 xEnd= 301 yStart= 137 yEnd= 142 +LED 33 : xStart= 301 xEnd= 310 yStart= 137 yEnd= 142 +LED 34 : xStart= 310 xEnd= 320 yStart= 137 yEnd= 142 +LED 35 : xStart= 320 xEnd= 329 yStart= 137 yEnd= 142 +LED 36 : xStart= 329 xEnd= 338 yStart= 137 yEnd= 142 +LED 37 : xStart= 338 xEnd= 347 yStart= 137 yEnd= 142 +LED 38 : xStart= 347 xEnd= 356 yStart= 137 yEnd= 142 +LED 39 : xStart= 356 xEnd= 365 yStart= 137 yEnd= 142 +LED 40 : xStart= 365 xEnd= 374 yStart= 137 yEnd= 142 +LED 41 : xStart= 374 xEnd= 383 yStart= 137 yEnd= 142 +LED 42 : xStart= 383 xEnd= 392 yStart= 137 yEnd= 142 +LED 43 : xStart= 392 xEnd= 401 yStart= 137 yEnd= 142 +LED 44 : xStart= 401 xEnd= 410 yStart= 137 yEnd= 142 +LED 45 : xStart= 410 xEnd= 419 yStart= 137 yEnd= 142 +LED 46 : xStart= 419 xEnd= 429 yStart= 137 yEnd= 142 +LED 47 : xStart= 429 xEnd= 438 yStart= 137 yEnd= 142 +LED 48 : xStart= 438 xEnd= 447 yStart= 137 yEnd= 142 +LED 49 : xStart= 447 xEnd= 456 yStart= 137 yEnd= 142 +LED 50 : xStart= 456 xEnd= 465 yStart= 137 yEnd= 142 +LED 51 : xStart= 465 xEnd= 474 yStart= 137 yEnd= 142 +LED 52 : xStart= 474 xEnd= 483 yStart= 137 yEnd= 142 +LED 53 : xStart= 483 xEnd= 492 yStart= 137 yEnd= 142 +LED 54 : xStart= 492 xEnd= 501 yStart= 137 yEnd= 142 +LED 55 : xStart= 501 xEnd= 510 yStart= 137 yEnd= 142 +LED 56 : xStart= 510 xEnd= 519 yStart= 137 yEnd= 142 +LED 57 : xStart= 519 xEnd= 528 yStart= 137 yEnd= 142 +LED 58 : xStart= 528 xEnd= 538 yStart= 137 yEnd= 142 +LED 59 : xStart= 538 xEnd= 547 yStart= 137 yEnd= 142 +LED 60 : xStart= 547 xEnd= 556 yStart= 137 yEnd= 142 +LED 61 : xStart= 556 xEnd= 565 yStart= 137 yEnd= 142 +LED 62 : xStart= 565 xEnd= 574 yStart= 137 yEnd= 142 +LED 63 : xStart= 574 xEnd= 583 yStart= 137 yEnd= 142 +LED 64 : xStart= 583 xEnd= 592 yStart= 137 yEnd= 142 +LED 65 : xStart= 592 xEnd= 601 yStart= 137 yEnd= 142 +LED 66 : xStart= 601 xEnd= 610 yStart= 137 yEnd= 142 +LED 67 : xStart= 610 xEnd= 619 yStart= 137 yEnd= 142 +LED 68 : xStart= 619 xEnd= 628 yStart= 137 yEnd= 142 +LED 69 : xStart= 628 xEnd= 638 yStart= 137 yEnd= 142 +LED 70 : xStart= 607 xEnd= 638 yStart= 136 yEnd= 142 +LED 71 : xStart= 607 xEnd= 638 yStart= 131 yEnd= 136 +LED 72 : xStart= 607 xEnd= 638 yStart= 126 yEnd= 131 +LED 73 : xStart= 607 xEnd= 638 yStart= 121 yEnd= 126 +LED 74 : xStart= 607 xEnd= 638 yStart= 116 yEnd= 121 +LED 75 : xStart= 607 xEnd= 638 yStart= 110 yEnd= 116 +LED 76 : xStart= 607 xEnd= 638 yStart= 105 yEnd= 110 +LED 77 : xStart= 607 xEnd= 638 yStart= 100 yEnd= 105 +LED 78 : xStart= 607 xEnd= 638 yStart= 95 yEnd= 100 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 95 +LED 80 : xStart= 607 xEnd= 638 yStart= 84 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 79 yEnd= 84 +LED 82 : xStart= 607 xEnd= 638 yStart= 74 yEnd= 79 +LED 83 : xStart= 607 xEnd= 638 yStart= 69 yEnd= 74 +LED 84 : xStart= 607 xEnd= 638 yStart= 64 yEnd= 69 +LED 85 : xStart= 607 xEnd= 638 yStart= 58 yEnd= 64 +LED 86 : xStart= 607 xEnd= 638 yStart= 53 yEnd= 58 +LED 87 : xStart= 607 xEnd= 638 yStart= 48 yEnd= 53 +LED 88 : xStart= 607 xEnd= 638 yStart= 43 yEnd= 48 +LED 89 : xStart= 607 xEnd= 638 yStart= 38 yEnd= 43 +LED 90 : xStart= 628 xEnd= 638 yStart= 38 yEnd= 43 +LED 91 : xStart= 619 xEnd= 628 yStart= 38 yEnd= 43 +LED 92 : xStart= 610 xEnd= 619 yStart= 38 yEnd= 43 +LED 93 : xStart= 601 xEnd= 610 yStart= 38 yEnd= 43 +LED 94 : xStart= 592 xEnd= 601 yStart= 38 yEnd= 43 +LED 95 : xStart= 583 xEnd= 592 yStart= 38 yEnd= 43 +LED 96 : xStart= 574 xEnd= 583 yStart= 38 yEnd= 43 +LED 97 : xStart= 565 xEnd= 574 yStart= 38 yEnd= 43 +LED 98 : xStart= 556 xEnd= 565 yStart= 38 yEnd= 43 +LED 99 : xStart= 547 xEnd= 556 yStart= 38 yEnd= 43 +LED 100 : xStart= 538 xEnd= 547 yStart= 38 yEnd= 43 +LED 101 : xStart= 528 xEnd= 538 yStart= 38 yEnd= 43 +LED 102 : xStart= 519 xEnd= 528 yStart= 38 yEnd= 43 +LED 103 : xStart= 510 xEnd= 519 yStart= 38 yEnd= 43 +LED 104 : xStart= 501 xEnd= 510 yStart= 38 yEnd= 43 +LED 105 : xStart= 492 xEnd= 501 yStart= 38 yEnd= 43 +LED 106 : xStart= 483 xEnd= 492 yStart= 38 yEnd= 43 +LED 107 : xStart= 474 xEnd= 483 yStart= 38 yEnd= 43 +LED 108 : xStart= 465 xEnd= 474 yStart= 38 yEnd= 43 +LED 109 : xStart= 456 xEnd= 465 yStart= 38 yEnd= 43 +LED 110 : xStart= 447 xEnd= 456 yStart= 38 yEnd= 43 +LED 111 : xStart= 438 xEnd= 447 yStart= 38 yEnd= 43 +LED 112 : xStart= 429 xEnd= 438 yStart= 38 yEnd= 43 +LED 113 : xStart= 419 xEnd= 429 yStart= 38 yEnd= 43 +LED 114 : xStart= 410 xEnd= 419 yStart= 38 yEnd= 43 +LED 115 : xStart= 401 xEnd= 410 yStart= 38 yEnd= 43 +LED 116 : xStart= 392 xEnd= 401 yStart= 38 yEnd= 43 +LED 117 : xStart= 383 xEnd= 392 yStart= 38 yEnd= 43 +LED 118 : xStart= 374 xEnd= 383 yStart= 38 yEnd= 43 +LED 119 : xStart= 365 xEnd= 374 yStart= 38 yEnd= 43 +LED 120 : xStart= 356 xEnd= 365 yStart= 38 yEnd= 43 +LED 121 : xStart= 347 xEnd= 356 yStart= 38 yEnd= 43 +LED 122 : xStart= 338 xEnd= 347 yStart= 38 yEnd= 43 +LED 123 : xStart= 329 xEnd= 338 yStart= 38 yEnd= 43 +LED 124 : xStart= 320 xEnd= 329 yStart= 38 yEnd= 43 +LED 125 : xStart= 310 xEnd= 320 yStart= 38 yEnd= 43 +LED 126 : xStart= 301 xEnd= 310 yStart= 38 yEnd= 43 +LED 127 : xStart= 292 xEnd= 301 yStart= 38 yEnd= 43 +LED 128 : xStart= 283 xEnd= 292 yStart= 38 yEnd= 43 +LED 129 : xStart= 274 xEnd= 283 yStart= 38 yEnd= 43 +LED 130 : xStart= 265 xEnd= 274 yStart= 38 yEnd= 43 +LED 131 : xStart= 256 xEnd= 265 yStart= 38 yEnd= 43 +LED 132 : xStart= 247 xEnd= 256 yStart= 38 yEnd= 43 +LED 133 : xStart= 238 xEnd= 247 yStart= 38 yEnd= 43 +LED 134 : xStart= 229 xEnd= 238 yStart= 38 yEnd= 43 +LED 135 : xStart= 220 xEnd= 229 yStart= 38 yEnd= 43 +LED 136 : xStart= 210 xEnd= 220 yStart= 38 yEnd= 43 +LED 137 : xStart= 201 xEnd= 210 yStart= 38 yEnd= 43 +LED 138 : xStart= 192 xEnd= 201 yStart= 38 yEnd= 43 +LED 139 : xStart= 183 xEnd= 192 yStart= 38 yEnd= 43 +LED 140 : xStart= 174 xEnd= 183 yStart= 38 yEnd= 43 +LED 141 : xStart= 165 xEnd= 174 yStart= 38 yEnd= 43 +LED 142 : xStart= 156 xEnd= 165 yStart= 38 yEnd= 43 +LED 143 : xStart= 147 xEnd= 156 yStart= 38 yEnd= 43 +LED 144 : xStart= 138 xEnd= 147 yStart= 38 yEnd= 43 +LED 145 : xStart= 129 xEnd= 138 yStart= 38 yEnd= 43 +LED 146 : xStart= 120 xEnd= 129 yStart= 38 yEnd= 43 +LED 147 : xStart= 111 xEnd= 120 yStart= 38 yEnd= 43 +LED 148 : xStart= 101 xEnd= 111 yStart= 38 yEnd= 43 +LED 149 : xStart= 92 xEnd= 101 yStart= 38 yEnd= 43 +LED 150 : xStart= 83 xEnd= 92 yStart= 38 yEnd= 43 +LED 151 : xStart= 74 xEnd= 83 yStart= 38 yEnd= 43 +LED 152 : xStart= 65 xEnd= 74 yStart= 38 yEnd= 43 +LED 153 : xStart= 56 xEnd= 65 yStart= 38 yEnd= 43 +LED 154 : xStart= 47 xEnd= 56 yStart= 38 yEnd= 43 +LED 155 : xStart= 38 xEnd= 47 yStart= 38 yEnd= 43 +LED 156 : xStart= 29 xEnd= 38 yStart= 38 yEnd= 43 +LED 157 : xStart= 20 xEnd= 29 yStart= 38 yEnd= 43 +LED 158 : xStart= 11 xEnd= 20 yStart= 38 yEnd= 43 +LED 159 : xStart= 2 xEnd= 11 yStart= 38 yEnd= 43 +LED 160 : xStart= 2 xEnd= 33 yStart= 38 yEnd= 43 +LED 161 : xStart= 2 xEnd= 33 yStart= 43 yEnd= 48 +LED 162 : xStart= 2 xEnd= 33 yStart= 48 yEnd= 53 +LED 163 : xStart= 2 xEnd= 33 yStart= 53 yEnd= 58 +LED 164 : xStart= 2 xEnd= 33 yStart= 58 yEnd= 64 +LED 165 : xStart= 2 xEnd= 33 yStart= 64 yEnd= 69 +LED 166 : xStart= 2 xEnd= 33 yStart= 69 yEnd= 74 +LED 167 : xStart= 2 xEnd= 33 yStart= 74 yEnd= 79 +LED 168 : xStart= 2 xEnd= 33 yStart= 79 yEnd= 84 +LED 169 : xStart= 2 xEnd= 33 yStart= 84 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 95 +LED 171 : xStart= 2 xEnd= 33 yStart= 95 yEnd= 100 +LED 172 : xStart= 2 xEnd= 33 yStart= 100 yEnd= 105 +LED 173 : xStart= 2 xEnd= 33 yStart= 105 yEnd= 110 +LED 174 : xStart= 2 xEnd= 33 yStart= 110 yEnd= 116 +LED 175 : xStart= 2 xEnd= 33 yStart= 116 yEnd= 121 +LED 176 : xStart= 2 xEnd= 33 yStart= 121 yEnd= 126 +LED 177 : xStart= 2 xEnd= 33 yStart= 126 yEnd= 131 +LED 178 : xStart= 2 xEnd= 33 yStart= 131 yEnd= 136 +LED 179 : xStart= 2 xEnd= 33 yStart= 136 yEnd= 142 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#323f4e" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#323f4e" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 31 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 31 +buildLedMap: contentWidth= 636 contentHeight= 118 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 144 yEnd= 149 +LED 1 : xStart= 11 xEnd= 20 yStart= 144 yEnd= 149 +LED 2 : xStart= 20 xEnd= 29 yStart= 144 yEnd= 149 +LED 3 : xStart= 29 xEnd= 38 yStart= 144 yEnd= 149 +LED 4 : xStart= 38 xEnd= 47 yStart= 144 yEnd= 149 +LED 5 : xStart= 47 xEnd= 56 yStart= 144 yEnd= 149 +LED 6 : xStart= 56 xEnd= 65 yStart= 144 yEnd= 149 +LED 7 : xStart= 65 xEnd= 74 yStart= 144 yEnd= 149 +LED 8 : xStart= 74 xEnd= 83 yStart= 144 yEnd= 149 +LED 9 : xStart= 83 xEnd= 92 yStart= 144 yEnd= 149 +LED 10 : xStart= 92 xEnd= 101 yStart= 144 yEnd= 149 +LED 11 : xStart= 101 xEnd= 111 yStart= 144 yEnd= 149 +LED 12 : xStart= 111 xEnd= 120 yStart= 144 yEnd= 149 +LED 13 : xStart= 120 xEnd= 129 yStart= 144 yEnd= 149 +LED 14 : xStart= 129 xEnd= 138 yStart= 144 yEnd= 149 +LED 15 : xStart= 138 xEnd= 147 yStart= 144 yEnd= 149 +LED 16 : xStart= 147 xEnd= 156 yStart= 144 yEnd= 149 +LED 17 : xStart= 156 xEnd= 165 yStart= 144 yEnd= 149 +LED 18 : xStart= 165 xEnd= 174 yStart= 144 yEnd= 149 +LED 19 : xStart= 174 xEnd= 183 yStart= 144 yEnd= 149 +LED 20 : xStart= 183 xEnd= 192 yStart= 144 yEnd= 149 +LED 21 : xStart= 192 xEnd= 201 yStart= 144 yEnd= 149 +LED 22 : xStart= 201 xEnd= 210 yStart= 144 yEnd= 149 +LED 23 : xStart= 210 xEnd= 220 yStart= 144 yEnd= 149 +LED 24 : xStart= 220 xEnd= 229 yStart= 144 yEnd= 149 +LED 25 : xStart= 229 xEnd= 238 yStart= 144 yEnd= 149 +LED 26 : xStart= 238 xEnd= 247 yStart= 144 yEnd= 149 +LED 27 : xStart= 247 xEnd= 256 yStart= 144 yEnd= 149 +LED 28 : xStart= 256 xEnd= 265 yStart= 144 yEnd= 149 +LED 29 : xStart= 265 xEnd= 274 yStart= 144 yEnd= 149 +LED 30 : xStart= 274 xEnd= 283 yStart= 144 yEnd= 149 +LED 31 : xStart= 283 xEnd= 292 yStart= 144 yEnd= 149 +LED 32 : xStart= 292 xEnd= 301 yStart= 144 yEnd= 149 +LED 33 : xStart= 301 xEnd= 310 yStart= 144 yEnd= 149 +LED 34 : xStart= 310 xEnd= 320 yStart= 144 yEnd= 149 +LED 35 : xStart= 320 xEnd= 329 yStart= 144 yEnd= 149 +LED 36 : xStart= 329 xEnd= 338 yStart= 144 yEnd= 149 +LED 37 : xStart= 338 xEnd= 347 yStart= 144 yEnd= 149 +LED 38 : xStart= 347 xEnd= 356 yStart= 144 yEnd= 149 +LED 39 : xStart= 356 xEnd= 365 yStart= 144 yEnd= 149 +LED 40 : xStart= 365 xEnd= 374 yStart= 144 yEnd= 149 +LED 41 : xStart= 374 xEnd= 383 yStart= 144 yEnd= 149 +LED 42 : xStart= 383 xEnd= 392 yStart= 144 yEnd= 149 +LED 43 : xStart= 392 xEnd= 401 yStart= 144 yEnd= 149 +LED 44 : xStart= 401 xEnd= 410 yStart= 144 yEnd= 149 +LED 45 : xStart= 410 xEnd= 419 yStart= 144 yEnd= 149 +LED 46 : xStart= 419 xEnd= 429 yStart= 144 yEnd= 149 +LED 47 : xStart= 429 xEnd= 438 yStart= 144 yEnd= 149 +LED 48 : xStart= 438 xEnd= 447 yStart= 144 yEnd= 149 +LED 49 : xStart= 447 xEnd= 456 yStart= 144 yEnd= 149 +LED 50 : xStart= 456 xEnd= 465 yStart= 144 yEnd= 149 +LED 51 : xStart= 465 xEnd= 474 yStart= 144 yEnd= 149 +LED 52 : xStart= 474 xEnd= 483 yStart= 144 yEnd= 149 +LED 53 : xStart= 483 xEnd= 492 yStart= 144 yEnd= 149 +LED 54 : xStart= 492 xEnd= 501 yStart= 144 yEnd= 149 +LED 55 : xStart= 501 xEnd= 510 yStart= 144 yEnd= 149 +LED 56 : xStart= 510 xEnd= 519 yStart= 144 yEnd= 149 +LED 57 : xStart= 519 xEnd= 528 yStart= 144 yEnd= 149 +LED 58 : xStart= 528 xEnd= 538 yStart= 144 yEnd= 149 +LED 59 : xStart= 538 xEnd= 547 yStart= 144 yEnd= 149 +LED 60 : xStart= 547 xEnd= 556 yStart= 144 yEnd= 149 +LED 61 : xStart= 556 xEnd= 565 yStart= 144 yEnd= 149 +LED 62 : xStart= 565 xEnd= 574 yStart= 144 yEnd= 149 +LED 63 : xStart= 574 xEnd= 583 yStart= 144 yEnd= 149 +LED 64 : xStart= 583 xEnd= 592 yStart= 144 yEnd= 149 +LED 65 : xStart= 592 xEnd= 601 yStart= 144 yEnd= 149 +LED 66 : xStart= 601 xEnd= 610 yStart= 144 yEnd= 149 +LED 67 : xStart= 610 xEnd= 619 yStart= 144 yEnd= 149 +LED 68 : xStart= 619 xEnd= 628 yStart= 144 yEnd= 149 +LED 69 : xStart= 628 xEnd= 638 yStart= 144 yEnd= 149 +LED 70 : xStart= 607 xEnd= 638 yStart= 143 yEnd= 149 +LED 71 : xStart= 607 xEnd= 638 yStart= 137 yEnd= 143 +LED 72 : xStart= 607 xEnd= 638 yStart= 131 yEnd= 137 +LED 73 : xStart= 607 xEnd= 638 yStart= 125 yEnd= 131 +LED 74 : xStart= 607 xEnd= 638 yStart= 119 yEnd= 125 +LED 75 : xStart= 607 xEnd= 638 yStart= 113 yEnd= 119 +LED 76 : xStart= 607 xEnd= 638 yStart= 107 yEnd= 113 +LED 77 : xStart= 607 xEnd= 638 yStart= 101 yEnd= 107 +LED 78 : xStart= 607 xEnd= 638 yStart= 95 yEnd= 101 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 95 +LED 80 : xStart= 607 xEnd= 638 yStart= 84 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 78 yEnd= 84 +LED 82 : xStart= 607 xEnd= 638 yStart= 72 yEnd= 78 +LED 83 : xStart= 607 xEnd= 638 yStart= 66 yEnd= 72 +LED 84 : xStart= 607 xEnd= 638 yStart= 60 yEnd= 66 +LED 85 : xStart= 607 xEnd= 638 yStart= 54 yEnd= 60 +LED 86 : xStart= 607 xEnd= 638 yStart= 48 yEnd= 54 +LED 87 : xStart= 607 xEnd= 638 yStart= 42 yEnd= 48 +LED 88 : xStart= 607 xEnd= 638 yStart= 36 yEnd= 42 +LED 89 : xStart= 607 xEnd= 638 yStart= 31 yEnd= 36 +LED 90 : xStart= 628 xEnd= 638 yStart= 31 yEnd= 36 +LED 91 : xStart= 619 xEnd= 628 yStart= 31 yEnd= 36 +LED 92 : xStart= 610 xEnd= 619 yStart= 31 yEnd= 36 +LED 93 : xStart= 601 xEnd= 610 yStart= 31 yEnd= 36 +LED 94 : xStart= 592 xEnd= 601 yStart= 31 yEnd= 36 +LED 95 : xStart= 583 xEnd= 592 yStart= 31 yEnd= 36 +LED 96 : xStart= 574 xEnd= 583 yStart= 31 yEnd= 36 +LED 97 : xStart= 565 xEnd= 574 yStart= 31 yEnd= 36 +LED 98 : xStart= 556 xEnd= 565 yStart= 31 yEnd= 36 +LED 99 : xStart= 547 xEnd= 556 yStart= 31 yEnd= 36 +LED 100 : xStart= 538 xEnd= 547 yStart= 31 yEnd= 36 +LED 101 : xStart= 528 xEnd= 538 yStart= 31 yEnd= 36 +LED 102 : xStart= 519 xEnd= 528 yStart= 31 yEnd= 36 +LED 103 : xStart= 510 xEnd= 519 yStart= 31 yEnd= 36 +LED 104 : xStart= 501 xEnd= 510 yStart= 31 yEnd= 36 +LED 105 : xStart= 492 xEnd= 501 yStart= 31 yEnd= 36 +LED 106 : xStart= 483 xEnd= 492 yStart= 31 yEnd= 36 +LED 107 : xStart= 474 xEnd= 483 yStart= 31 yEnd= 36 +LED 108 : xStart= 465 xEnd= 474 yStart= 31 yEnd= 36 +LED 109 : xStart= 456 xEnd= 465 yStart= 31 yEnd= 36 +LED 110 : xStart= 447 xEnd= 456 yStart= 31 yEnd= 36 +LED 111 : xStart= 438 xEnd= 447 yStart= 31 yEnd= 36 +LED 112 : xStart= 429 xEnd= 438 yStart= 31 yEnd= 36 +LED 113 : xStart= 419 xEnd= 429 yStart= 31 yEnd= 36 +LED 114 : xStart= 410 xEnd= 419 yStart= 31 yEnd= 36 +LED 115 : xStart= 401 xEnd= 410 yStart= 31 yEnd= 36 +LED 116 : xStart= 392 xEnd= 401 yStart= 31 yEnd= 36 +LED 117 : xStart= 383 xEnd= 392 yStart= 31 yEnd= 36 +LED 118 : xStart= 374 xEnd= 383 yStart= 31 yEnd= 36 +LED 119 : xStart= 365 xEnd= 374 yStart= 31 yEnd= 36 +LED 120 : xStart= 356 xEnd= 365 yStart= 31 yEnd= 36 +LED 121 : xStart= 347 xEnd= 356 yStart= 31 yEnd= 36 +LED 122 : xStart= 338 xEnd= 347 yStart= 31 yEnd= 36 +LED 123 : xStart= 329 xEnd= 338 yStart= 31 yEnd= 36 +LED 124 : xStart= 320 xEnd= 329 yStart= 31 yEnd= 36 +LED 125 : xStart= 310 xEnd= 320 yStart= 31 yEnd= 36 +LED 126 : xStart= 301 xEnd= 310 yStart= 31 yEnd= 36 +LED 127 : xStart= 292 xEnd= 301 yStart= 31 yEnd= 36 +LED 128 : xStart= 283 xEnd= 292 yStart= 31 yEnd= 36 +LED 129 : xStart= 274 xEnd= 283 yStart= 31 yEnd= 36 +LED 130 : xStart= 265 xEnd= 274 yStart= 31 yEnd= 36 +LED 131 : xStart= 256 xEnd= 265 yStart= 31 yEnd= 36 +LED 132 : xStart= 247 xEnd= 256 yStart= 31 yEnd= 36 +LED 133 : xStart= 238 xEnd= 247 yStart= 31 yEnd= 36 +LED 134 : xStart= 229 xEnd= 238 yStart= 31 yEnd= 36 +LED 135 : xStart= 220 xEnd= 229 yStart= 31 yEnd= 36 +LED 136 : xStart= 210 xEnd= 220 yStart= 31 yEnd= 36 +LED 137 : xStart= 201 xEnd= 210 yStart= 31 yEnd= 36 +LED 138 : xStart= 192 xEnd= 201 yStart= 31 yEnd= 36 +LED 139 : xStart= 183 xEnd= 192 yStart= 31 yEnd= 36 +LED 140 : xStart= 174 xEnd= 183 yStart= 31 yEnd= 36 +LED 141 : xStart= 165 xEnd= 174 yStart= 31 yEnd= 36 +LED 142 : xStart= 156 xEnd= 165 yStart= 31 yEnd= 36 +LED 143 : xStart= 147 xEnd= 156 yStart= 31 yEnd= 36 +LED 144 : xStart= 138 xEnd= 147 yStart= 31 yEnd= 36 +LED 145 : xStart= 129 xEnd= 138 yStart= 31 yEnd= 36 +LED 146 : xStart= 120 xEnd= 129 yStart= 31 yEnd= 36 +LED 147 : xStart= 111 xEnd= 120 yStart= 31 yEnd= 36 +LED 148 : xStart= 101 xEnd= 111 yStart= 31 yEnd= 36 +LED 149 : xStart= 92 xEnd= 101 yStart= 31 yEnd= 36 +LED 150 : xStart= 83 xEnd= 92 yStart= 31 yEnd= 36 +LED 151 : xStart= 74 xEnd= 83 yStart= 31 yEnd= 36 +LED 152 : xStart= 65 xEnd= 74 yStart= 31 yEnd= 36 +LED 153 : xStart= 56 xEnd= 65 yStart= 31 yEnd= 36 +LED 154 : xStart= 47 xEnd= 56 yStart= 31 yEnd= 36 +LED 155 : xStart= 38 xEnd= 47 yStart= 31 yEnd= 36 +LED 156 : xStart= 29 xEnd= 38 yStart= 31 yEnd= 36 +LED 157 : xStart= 20 xEnd= 29 yStart= 31 yEnd= 36 +LED 158 : xStart= 11 xEnd= 20 yStart= 31 yEnd= 36 +LED 159 : xStart= 2 xEnd= 11 yStart= 31 yEnd= 36 +LED 160 : xStart= 2 xEnd= 33 yStart= 31 yEnd= 36 +LED 161 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 42 +LED 162 : xStart= 2 xEnd= 33 yStart= 42 yEnd= 48 +LED 163 : xStart= 2 xEnd= 33 yStart= 48 yEnd= 54 +LED 164 : xStart= 2 xEnd= 33 yStart= 54 yEnd= 60 +LED 165 : xStart= 2 xEnd= 33 yStart= 60 yEnd= 66 +LED 166 : xStart= 2 xEnd= 33 yStart= 66 yEnd= 72 +LED 167 : xStart= 2 xEnd= 33 yStart= 72 yEnd= 78 +LED 168 : xStart= 2 xEnd= 33 yStart= 78 yEnd= 84 +LED 169 : xStart= 2 xEnd= 33 yStart= 84 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 95 +LED 171 : xStart= 2 xEnd= 33 yStart= 95 yEnd= 101 +LED 172 : xStart= 2 xEnd= 33 yStart= 101 yEnd= 107 +LED 173 : xStart= 2 xEnd= 33 yStart= 107 yEnd= 113 +LED 174 : xStart= 2 xEnd= 33 yStart= 113 yEnd= 119 +LED 175 : xStart= 2 xEnd= 33 yStart= 119 yEnd= 125 +LED 176 : xStart= 2 xEnd= 33 yStart= 125 yEnd= 131 +LED 177 : xStart= 2 xEnd= 33 yStart= 131 yEnd= 137 +LED 178 : xStart= 2 xEnd= 33 yStart= 137 yEnd= 143 +LED 179 : xStart= 2 xEnd= 33 yStart= 143 yEnd= 149 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#3e4b5b" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#3e4b5b" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 23 V: 2 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 2 border.horizontalSize= 23 +buildLedMap: contentWidth= 636 contentHeight= 134 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 2 xEnd= 11 yStart= 151 yEnd= 157 +LED 1 : xStart= 11 xEnd= 20 yStart= 151 yEnd= 157 +LED 2 : xStart= 20 xEnd= 29 yStart= 151 yEnd= 157 +LED 3 : xStart= 29 xEnd= 38 yStart= 151 yEnd= 157 +LED 4 : xStart= 38 xEnd= 47 yStart= 151 yEnd= 157 +LED 5 : xStart= 47 xEnd= 56 yStart= 151 yEnd= 157 +LED 6 : xStart= 56 xEnd= 65 yStart= 151 yEnd= 157 +LED 7 : xStart= 65 xEnd= 74 yStart= 151 yEnd= 157 +LED 8 : xStart= 74 xEnd= 83 yStart= 151 yEnd= 157 +LED 9 : xStart= 83 xEnd= 92 yStart= 151 yEnd= 157 +LED 10 : xStart= 92 xEnd= 101 yStart= 151 yEnd= 157 +LED 11 : xStart= 101 xEnd= 111 yStart= 151 yEnd= 157 +LED 12 : xStart= 111 xEnd= 120 yStart= 151 yEnd= 157 +LED 13 : xStart= 120 xEnd= 129 yStart= 151 yEnd= 157 +LED 14 : xStart= 129 xEnd= 138 yStart= 151 yEnd= 157 +LED 15 : xStart= 138 xEnd= 147 yStart= 151 yEnd= 157 +LED 16 : xStart= 147 xEnd= 156 yStart= 151 yEnd= 157 +LED 17 : xStart= 156 xEnd= 165 yStart= 151 yEnd= 157 +LED 18 : xStart= 165 xEnd= 174 yStart= 151 yEnd= 157 +LED 19 : xStart= 174 xEnd= 183 yStart= 151 yEnd= 157 +LED 20 : xStart= 183 xEnd= 192 yStart= 151 yEnd= 157 +LED 21 : xStart= 192 xEnd= 201 yStart= 151 yEnd= 157 +LED 22 : xStart= 201 xEnd= 210 yStart= 151 yEnd= 157 +LED 23 : xStart= 210 xEnd= 220 yStart= 151 yEnd= 157 +LED 24 : xStart= 220 xEnd= 229 yStart= 151 yEnd= 157 +LED 25 : xStart= 229 xEnd= 238 yStart= 151 yEnd= 157 +LED 26 : xStart= 238 xEnd= 247 yStart= 151 yEnd= 157 +LED 27 : xStart= 247 xEnd= 256 yStart= 151 yEnd= 157 +LED 28 : xStart= 256 xEnd= 265 yStart= 151 yEnd= 157 +LED 29 : xStart= 265 xEnd= 274 yStart= 151 yEnd= 157 +LED 30 : xStart= 274 xEnd= 283 yStart= 151 yEnd= 157 +LED 31 : xStart= 283 xEnd= 292 yStart= 151 yEnd= 157 +LED 32 : xStart= 292 xEnd= 301 yStart= 151 yEnd= 157 +LED 33 : xStart= 301 xEnd= 310 yStart= 151 yEnd= 157 +LED 34 : xStart= 310 xEnd= 320 yStart= 151 yEnd= 157 +LED 35 : xStart= 320 xEnd= 329 yStart= 151 yEnd= 157 +LED 36 : xStart= 329 xEnd= 338 yStart= 151 yEnd= 157 +LED 37 : xStart= 338 xEnd= 347 yStart= 151 yEnd= 157 +LED 38 : xStart= 347 xEnd= 356 yStart= 151 yEnd= 157 +LED 39 : xStart= 356 xEnd= 365 yStart= 151 yEnd= 157 +LED 40 : xStart= 365 xEnd= 374 yStart= 151 yEnd= 157 +LED 41 : xStart= 374 xEnd= 383 yStart= 151 yEnd= 157 +LED 42 : xStart= 383 xEnd= 392 yStart= 151 yEnd= 157 +LED 43 : xStart= 392 xEnd= 401 yStart= 151 yEnd= 157 +LED 44 : xStart= 401 xEnd= 410 yStart= 151 yEnd= 157 +LED 45 : xStart= 410 xEnd= 419 yStart= 151 yEnd= 157 +LED 46 : xStart= 419 xEnd= 429 yStart= 151 yEnd= 157 +LED 47 : xStart= 429 xEnd= 438 yStart= 151 yEnd= 157 +LED 48 : xStart= 438 xEnd= 447 yStart= 151 yEnd= 157 +LED 49 : xStart= 447 xEnd= 456 yStart= 151 yEnd= 157 +LED 50 : xStart= 456 xEnd= 465 yStart= 151 yEnd= 157 +LED 51 : xStart= 465 xEnd= 474 yStart= 151 yEnd= 157 +LED 52 : xStart= 474 xEnd= 483 yStart= 151 yEnd= 157 +LED 53 : xStart= 483 xEnd= 492 yStart= 151 yEnd= 157 +LED 54 : xStart= 492 xEnd= 501 yStart= 151 yEnd= 157 +LED 55 : xStart= 501 xEnd= 510 yStart= 151 yEnd= 157 +LED 56 : xStart= 510 xEnd= 519 yStart= 151 yEnd= 157 +LED 57 : xStart= 519 xEnd= 528 yStart= 151 yEnd= 157 +LED 58 : xStart= 528 xEnd= 538 yStart= 151 yEnd= 157 +LED 59 : xStart= 538 xEnd= 547 yStart= 151 yEnd= 157 +LED 60 : xStart= 547 xEnd= 556 yStart= 151 yEnd= 157 +LED 61 : xStart= 556 xEnd= 565 yStart= 151 yEnd= 157 +LED 62 : xStart= 565 xEnd= 574 yStart= 151 yEnd= 157 +LED 63 : xStart= 574 xEnd= 583 yStart= 151 yEnd= 157 +LED 64 : xStart= 583 xEnd= 592 yStart= 151 yEnd= 157 +LED 65 : xStart= 592 xEnd= 601 yStart= 151 yEnd= 157 +LED 66 : xStart= 601 xEnd= 610 yStart= 151 yEnd= 157 +LED 67 : xStart= 610 xEnd= 619 yStart= 151 yEnd= 157 +LED 68 : xStart= 619 xEnd= 628 yStart= 151 yEnd= 157 +LED 69 : xStart= 628 xEnd= 638 yStart= 151 yEnd= 157 +LED 70 : xStart= 607 xEnd= 638 yStart= 150 yEnd= 157 +LED 71 : xStart= 607 xEnd= 638 yStart= 143 yEnd= 150 +LED 72 : xStart= 607 xEnd= 638 yStart= 136 yEnd= 143 +LED 73 : xStart= 607 xEnd= 638 yStart= 130 yEnd= 136 +LED 74 : xStart= 607 xEnd= 638 yStart= 123 yEnd= 130 +LED 75 : xStart= 607 xEnd= 638 yStart= 116 yEnd= 123 +LED 76 : xStart= 607 xEnd= 638 yStart= 110 yEnd= 116 +LED 77 : xStart= 607 xEnd= 638 yStart= 103 yEnd= 110 +LED 78 : xStart= 607 xEnd= 638 yStart= 96 yEnd= 103 +LED 79 : xStart= 607 xEnd= 638 yStart= 90 yEnd= 96 +LED 80 : xStart= 607 xEnd= 638 yStart= 83 yEnd= 90 +LED 81 : xStart= 607 xEnd= 638 yStart= 76 yEnd= 83 +LED 82 : xStart= 607 xEnd= 638 yStart= 69 yEnd= 76 +LED 83 : xStart= 607 xEnd= 638 yStart= 63 yEnd= 69 +LED 84 : xStart= 607 xEnd= 638 yStart= 56 yEnd= 63 +LED 85 : xStart= 607 xEnd= 638 yStart= 49 yEnd= 56 +LED 86 : xStart= 607 xEnd= 638 yStart= 43 yEnd= 49 +LED 87 : xStart= 607 xEnd= 638 yStart= 36 yEnd= 43 +LED 88 : xStart= 607 xEnd= 638 yStart= 29 yEnd= 36 +LED 89 : xStart= 607 xEnd= 638 yStart= 23 yEnd= 29 +LED 90 : xStart= 628 xEnd= 638 yStart= 23 yEnd= 29 +LED 91 : xStart= 619 xEnd= 628 yStart= 23 yEnd= 29 +LED 92 : xStart= 610 xEnd= 619 yStart= 23 yEnd= 29 +LED 93 : xStart= 601 xEnd= 610 yStart= 23 yEnd= 29 +LED 94 : xStart= 592 xEnd= 601 yStart= 23 yEnd= 29 +LED 95 : xStart= 583 xEnd= 592 yStart= 23 yEnd= 29 +LED 96 : xStart= 574 xEnd= 583 yStart= 23 yEnd= 29 +LED 97 : xStart= 565 xEnd= 574 yStart= 23 yEnd= 29 +LED 98 : xStart= 556 xEnd= 565 yStart= 23 yEnd= 29 +LED 99 : xStart= 547 xEnd= 556 yStart= 23 yEnd= 29 +LED 100 : xStart= 538 xEnd= 547 yStart= 23 yEnd= 29 +LED 101 : xStart= 528 xEnd= 538 yStart= 23 yEnd= 29 +LED 102 : xStart= 519 xEnd= 528 yStart= 23 yEnd= 29 +LED 103 : xStart= 510 xEnd= 519 yStart= 23 yEnd= 29 +LED 104 : xStart= 501 xEnd= 510 yStart= 23 yEnd= 29 +LED 105 : xStart= 492 xEnd= 501 yStart= 23 yEnd= 29 +LED 106 : xStart= 483 xEnd= 492 yStart= 23 yEnd= 29 +LED 107 : xStart= 474 xEnd= 483 yStart= 23 yEnd= 29 +LED 108 : xStart= 465 xEnd= 474 yStart= 23 yEnd= 29 +LED 109 : xStart= 456 xEnd= 465 yStart= 23 yEnd= 29 +LED 110 : xStart= 447 xEnd= 456 yStart= 23 yEnd= 29 +LED 111 : xStart= 438 xEnd= 447 yStart= 23 yEnd= 29 +LED 112 : xStart= 429 xEnd= 438 yStart= 23 yEnd= 29 +LED 113 : xStart= 419 xEnd= 429 yStart= 23 yEnd= 29 +LED 114 : xStart= 410 xEnd= 419 yStart= 23 yEnd= 29 +LED 115 : xStart= 401 xEnd= 410 yStart= 23 yEnd= 29 +LED 116 : xStart= 392 xEnd= 401 yStart= 23 yEnd= 29 +LED 117 : xStart= 383 xEnd= 392 yStart= 23 yEnd= 29 +LED 118 : xStart= 374 xEnd= 383 yStart= 23 yEnd= 29 +LED 119 : xStart= 365 xEnd= 374 yStart= 23 yEnd= 29 +LED 120 : xStart= 356 xEnd= 365 yStart= 23 yEnd= 29 +LED 121 : xStart= 347 xEnd= 356 yStart= 23 yEnd= 29 +LED 122 : xStart= 338 xEnd= 347 yStart= 23 yEnd= 29 +LED 123 : xStart= 329 xEnd= 338 yStart= 23 yEnd= 29 +LED 124 : xStart= 320 xEnd= 329 yStart= 23 yEnd= 29 +LED 125 : xStart= 310 xEnd= 320 yStart= 23 yEnd= 29 +LED 126 : xStart= 301 xEnd= 310 yStart= 23 yEnd= 29 +LED 127 : xStart= 292 xEnd= 301 yStart= 23 yEnd= 29 +LED 128 : xStart= 283 xEnd= 292 yStart= 23 yEnd= 29 +LED 129 : xStart= 274 xEnd= 283 yStart= 23 yEnd= 29 +LED 130 : xStart= 265 xEnd= 274 yStart= 23 yEnd= 29 +LED 131 : xStart= 256 xEnd= 265 yStart= 23 yEnd= 29 +LED 132 : xStart= 247 xEnd= 256 yStart= 23 yEnd= 29 +LED 133 : xStart= 238 xEnd= 247 yStart= 23 yEnd= 29 +LED 134 : xStart= 229 xEnd= 238 yStart= 23 yEnd= 29 +LED 135 : xStart= 220 xEnd= 229 yStart= 23 yEnd= 29 +LED 136 : xStart= 210 xEnd= 220 yStart= 23 yEnd= 29 +LED 137 : xStart= 201 xEnd= 210 yStart= 23 yEnd= 29 +LED 138 : xStart= 192 xEnd= 201 yStart= 23 yEnd= 29 +LED 139 : xStart= 183 xEnd= 192 yStart= 23 yEnd= 29 +LED 140 : xStart= 174 xEnd= 183 yStart= 23 yEnd= 29 +LED 141 : xStart= 165 xEnd= 174 yStart= 23 yEnd= 29 +LED 142 : xStart= 156 xEnd= 165 yStart= 23 yEnd= 29 +LED 143 : xStart= 147 xEnd= 156 yStart= 23 yEnd= 29 +LED 144 : xStart= 138 xEnd= 147 yStart= 23 yEnd= 29 +LED 145 : xStart= 129 xEnd= 138 yStart= 23 yEnd= 29 +LED 146 : xStart= 120 xEnd= 129 yStart= 23 yEnd= 29 +LED 147 : xStart= 111 xEnd= 120 yStart= 23 yEnd= 29 +LED 148 : xStart= 101 xEnd= 111 yStart= 23 yEnd= 29 +LED 149 : xStart= 92 xEnd= 101 yStart= 23 yEnd= 29 +LED 150 : xStart= 83 xEnd= 92 yStart= 23 yEnd= 29 +LED 151 : xStart= 74 xEnd= 83 yStart= 23 yEnd= 29 +LED 152 : xStart= 65 xEnd= 74 yStart= 23 yEnd= 29 +LED 153 : xStart= 56 xEnd= 65 yStart= 23 yEnd= 29 +LED 154 : xStart= 47 xEnd= 56 yStart= 23 yEnd= 29 +LED 155 : xStart= 38 xEnd= 47 yStart= 23 yEnd= 29 +LED 156 : xStart= 29 xEnd= 38 yStart= 23 yEnd= 29 +LED 157 : xStart= 20 xEnd= 29 yStart= 23 yEnd= 29 +LED 158 : xStart= 11 xEnd= 20 yStart= 23 yEnd= 29 +LED 159 : xStart= 2 xEnd= 11 yStart= 23 yEnd= 29 +LED 160 : xStart= 2 xEnd= 33 yStart= 23 yEnd= 29 +LED 161 : xStart= 2 xEnd= 33 yStart= 29 yEnd= 36 +LED 162 : xStart= 2 xEnd= 33 yStart= 36 yEnd= 43 +LED 163 : xStart= 2 xEnd= 33 yStart= 43 yEnd= 49 +LED 164 : xStart= 2 xEnd= 33 yStart= 49 yEnd= 56 +LED 165 : xStart= 2 xEnd= 33 yStart= 56 yEnd= 63 +LED 166 : xStart= 2 xEnd= 33 yStart= 63 yEnd= 69 +LED 167 : xStart= 2 xEnd= 33 yStart= 69 yEnd= 76 +LED 168 : xStart= 2 xEnd= 33 yStart= 76 yEnd= 83 +LED 169 : xStart= 2 xEnd= 33 yStart= 83 yEnd= 90 +LED 170 : xStart= 2 xEnd= 33 yStart= 90 yEnd= 96 +LED 171 : xStart= 2 xEnd= 33 yStart= 96 yEnd= 103 +LED 172 : xStart= 2 xEnd= 33 yStart= 103 yEnd= 110 +LED 173 : xStart= 2 xEnd= 33 yStart= 110 yEnd= 116 +LED 174 : xStart= 2 xEnd= 33 yStart= 116 yEnd= 123 +LED 175 : xStart= 2 xEnd= 33 yStart= 123 yEnd= 130 +LED 176 : xStart= 2 xEnd= 33 yStart= 130 yEnd= 136 +LED 177 : xStart= 2 xEnd= 33 yStart= 136 yEnd= 143 +LED 178 : xStart= 2 xEnd= 33 yStart= 143 yEnd= 150 +LED 179 : xStart= 2 xEnd= 33 yStart= 150 yEnd= 157 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#303b49" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#303b49" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#121315" + LED (bottom+right+1): "#354250" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 0 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 0 border.horizontalSize= 0 +buildLedMap: contentWidth= 640 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 0 xEnd= 9 yStart= 171 yEnd= 180 +LED 1 : xStart= 9 xEnd= 18 yStart= 171 yEnd= 180 +LED 2 : xStart= 18 xEnd= 27 yStart= 171 yEnd= 180 +LED 3 : xStart= 27 xEnd= 36 yStart= 171 yEnd= 180 +LED 4 : xStart= 36 xEnd= 45 yStart= 171 yEnd= 180 +LED 5 : xStart= 45 xEnd= 54 yStart= 171 yEnd= 180 +LED 6 : xStart= 54 xEnd= 64 yStart= 171 yEnd= 180 +LED 7 : xStart= 64 xEnd= 73 yStart= 171 yEnd= 180 +LED 8 : xStart= 73 xEnd= 82 yStart= 171 yEnd= 180 +LED 9 : xStart= 82 xEnd= 91 yStart= 171 yEnd= 180 +LED 10 : xStart= 91 xEnd= 100 yStart= 171 yEnd= 180 +LED 11 : xStart= 100 xEnd= 109 yStart= 171 yEnd= 180 +LED 12 : xStart= 109 xEnd= 118 yStart= 171 yEnd= 180 +LED 13 : xStart= 118 xEnd= 128 yStart= 171 yEnd= 180 +LED 14 : xStart= 128 xEnd= 137 yStart= 171 yEnd= 180 +LED 15 : xStart= 137 xEnd= 146 yStart= 171 yEnd= 180 +LED 16 : xStart= 146 xEnd= 155 yStart= 171 yEnd= 180 +LED 17 : xStart= 155 xEnd= 164 yStart= 171 yEnd= 180 +LED 18 : xStart= 164 xEnd= 173 yStart= 171 yEnd= 180 +LED 19 : xStart= 173 xEnd= 182 yStart= 171 yEnd= 180 +LED 20 : xStart= 182 xEnd= 192 yStart= 171 yEnd= 180 +LED 21 : xStart= 192 xEnd= 201 yStart= 171 yEnd= 180 +LED 22 : xStart= 201 xEnd= 210 yStart= 171 yEnd= 180 +LED 23 : xStart= 210 xEnd= 219 yStart= 171 yEnd= 180 +LED 24 : xStart= 219 xEnd= 228 yStart= 171 yEnd= 180 +LED 25 : xStart= 228 xEnd= 237 yStart= 171 yEnd= 180 +LED 26 : xStart= 237 xEnd= 246 yStart= 171 yEnd= 180 +LED 27 : xStart= 246 xEnd= 256 yStart= 171 yEnd= 180 +LED 28 : xStart= 256 xEnd= 265 yStart= 171 yEnd= 180 +LED 29 : xStart= 265 xEnd= 274 yStart= 171 yEnd= 180 +LED 30 : xStart= 274 xEnd= 283 yStart= 171 yEnd= 180 +LED 31 : xStart= 283 xEnd= 292 yStart= 171 yEnd= 180 +LED 32 : xStart= 292 xEnd= 301 yStart= 171 yEnd= 180 +LED 33 : xStart= 301 xEnd= 310 yStart= 171 yEnd= 180 +LED 34 : xStart= 310 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 329 yStart= 171 yEnd= 180 +LED 36 : xStart= 329 xEnd= 338 yStart= 171 yEnd= 180 +LED 37 : xStart= 338 xEnd= 347 yStart= 171 yEnd= 180 +LED 38 : xStart= 347 xEnd= 356 yStart= 171 yEnd= 180 +LED 39 : xStart= 356 xEnd= 365 yStart= 171 yEnd= 180 +LED 40 : xStart= 365 xEnd= 374 yStart= 171 yEnd= 180 +LED 41 : xStart= 374 xEnd= 384 yStart= 171 yEnd= 180 +LED 42 : xStart= 384 xEnd= 393 yStart= 171 yEnd= 180 +LED 43 : xStart= 393 xEnd= 402 yStart= 171 yEnd= 180 +LED 44 : xStart= 402 xEnd= 411 yStart= 171 yEnd= 180 +LED 45 : xStart= 411 xEnd= 420 yStart= 171 yEnd= 180 +LED 46 : xStart= 420 xEnd= 429 yStart= 171 yEnd= 180 +LED 47 : xStart= 429 xEnd= 438 yStart= 171 yEnd= 180 +LED 48 : xStart= 438 xEnd= 448 yStart= 171 yEnd= 180 +LED 49 : xStart= 448 xEnd= 457 yStart= 171 yEnd= 180 +LED 50 : xStart= 457 xEnd= 466 yStart= 171 yEnd= 180 +LED 51 : xStart= 466 xEnd= 475 yStart= 171 yEnd= 180 +LED 52 : xStart= 475 xEnd= 484 yStart= 171 yEnd= 180 +LED 53 : xStart= 484 xEnd= 493 yStart= 171 yEnd= 180 +LED 54 : xStart= 493 xEnd= 502 yStart= 171 yEnd= 180 +LED 55 : xStart= 502 xEnd= 512 yStart= 171 yEnd= 180 +LED 56 : xStart= 512 xEnd= 521 yStart= 171 yEnd= 180 +LED 57 : xStart= 521 xEnd= 530 yStart= 171 yEnd= 180 +LED 58 : xStart= 530 xEnd= 539 yStart= 171 yEnd= 180 +LED 59 : xStart= 539 xEnd= 548 yStart= 171 yEnd= 180 +LED 60 : xStart= 548 xEnd= 557 yStart= 171 yEnd= 180 +LED 61 : xStart= 557 xEnd= 566 yStart= 171 yEnd= 180 +LED 62 : xStart= 566 xEnd= 576 yStart= 171 yEnd= 180 +LED 63 : xStart= 576 xEnd= 585 yStart= 171 yEnd= 180 +LED 64 : xStart= 585 xEnd= 594 yStart= 171 yEnd= 180 +LED 65 : xStart= 594 xEnd= 603 yStart= 171 yEnd= 180 +LED 66 : xStart= 603 xEnd= 612 yStart= 171 yEnd= 180 +LED 67 : xStart= 612 xEnd= 621 yStart= 171 yEnd= 180 +LED 68 : xStart= 621 xEnd= 630 yStart= 171 yEnd= 180 +LED 69 : xStart= 630 xEnd= 640 yStart= 171 yEnd= 180 +LED 70 : xStart= 608 xEnd= 640 yStart= 171 yEnd= 180 +LED 71 : xStart= 608 xEnd= 640 yStart= 162 yEnd= 171 +LED 72 : xStart= 608 xEnd= 640 yStart= 153 yEnd= 162 +LED 73 : xStart= 608 xEnd= 640 yStart= 144 yEnd= 153 +LED 74 : xStart= 608 xEnd= 640 yStart= 135 yEnd= 144 +LED 75 : xStart= 608 xEnd= 640 yStart= 125 yEnd= 135 +LED 76 : xStart= 608 xEnd= 640 yStart= 117 yEnd= 125 +LED 77 : xStart= 608 xEnd= 640 yStart= 108 yEnd= 117 +LED 78 : xStart= 608 xEnd= 640 yStart= 99 yEnd= 108 +LED 79 : xStart= 608 xEnd= 640 yStart= 90 yEnd= 99 +LED 80 : xStart= 608 xEnd= 640 yStart= 80 yEnd= 90 +LED 81 : xStart= 608 xEnd= 640 yStart= 72 yEnd= 80 +LED 82 : xStart= 608 xEnd= 640 yStart= 62 yEnd= 72 +LED 83 : xStart= 608 xEnd= 640 yStart= 54 yEnd= 62 +LED 84 : xStart= 608 xEnd= 640 yStart= 45 yEnd= 54 +LED 85 : xStart= 608 xEnd= 640 yStart= 35 yEnd= 45 +LED 86 : xStart= 608 xEnd= 640 yStart= 27 yEnd= 35 +LED 87 : xStart= 608 xEnd= 640 yStart= 17 yEnd= 27 +LED 88 : xStart= 608 xEnd= 640 yStart= 9 yEnd= 17 +LED 89 : xStart= 608 xEnd= 640 yStart= 0 yEnd= 9 +LED 90 : xStart= 630 xEnd= 640 yStart= 0 yEnd= 9 +LED 91 : xStart= 621 xEnd= 630 yStart= 0 yEnd= 9 +LED 92 : xStart= 612 xEnd= 621 yStart= 0 yEnd= 9 +LED 93 : xStart= 603 xEnd= 612 yStart= 0 yEnd= 9 +LED 94 : xStart= 594 xEnd= 603 yStart= 0 yEnd= 9 +LED 95 : xStart= 585 xEnd= 594 yStart= 0 yEnd= 9 +LED 96 : xStart= 576 xEnd= 585 yStart= 0 yEnd= 9 +LED 97 : xStart= 566 xEnd= 576 yStart= 0 yEnd= 9 +LED 98 : xStart= 557 xEnd= 566 yStart= 0 yEnd= 9 +LED 99 : xStart= 548 xEnd= 557 yStart= 0 yEnd= 9 +LED 100 : xStart= 539 xEnd= 548 yStart= 0 yEnd= 9 +LED 101 : xStart= 530 xEnd= 539 yStart= 0 yEnd= 9 +LED 102 : xStart= 521 xEnd= 530 yStart= 0 yEnd= 9 +LED 103 : xStart= 512 xEnd= 521 yStart= 0 yEnd= 9 +LED 104 : xStart= 502 xEnd= 512 yStart= 0 yEnd= 9 +LED 105 : xStart= 493 xEnd= 502 yStart= 0 yEnd= 9 +LED 106 : xStart= 484 xEnd= 493 yStart= 0 yEnd= 9 +LED 107 : xStart= 475 xEnd= 484 yStart= 0 yEnd= 9 +LED 108 : xStart= 466 xEnd= 475 yStart= 0 yEnd= 9 +LED 109 : xStart= 457 xEnd= 466 yStart= 0 yEnd= 9 +LED 110 : xStart= 448 xEnd= 457 yStart= 0 yEnd= 9 +LED 111 : xStart= 438 xEnd= 448 yStart= 0 yEnd= 9 +LED 112 : xStart= 429 xEnd= 438 yStart= 0 yEnd= 9 +LED 113 : xStart= 420 xEnd= 429 yStart= 0 yEnd= 9 +LED 114 : xStart= 411 xEnd= 420 yStart= 0 yEnd= 9 +LED 115 : xStart= 402 xEnd= 411 yStart= 0 yEnd= 9 +LED 116 : xStart= 393 xEnd= 402 yStart= 0 yEnd= 9 +LED 117 : xStart= 384 xEnd= 393 yStart= 0 yEnd= 9 +LED 118 : xStart= 374 xEnd= 384 yStart= 0 yEnd= 9 +LED 119 : xStart= 365 xEnd= 374 yStart= 0 yEnd= 9 +LED 120 : xStart= 356 xEnd= 365 yStart= 0 yEnd= 9 +LED 121 : xStart= 347 xEnd= 356 yStart= 0 yEnd= 9 +LED 122 : xStart= 338 xEnd= 347 yStart= 0 yEnd= 9 +LED 123 : xStart= 329 xEnd= 338 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 329 yStart= 0 yEnd= 9 +LED 125 : xStart= 310 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 301 xEnd= 310 yStart= 0 yEnd= 9 +LED 127 : xStart= 292 xEnd= 301 yStart= 0 yEnd= 9 +LED 128 : xStart= 283 xEnd= 292 yStart= 0 yEnd= 9 +LED 129 : xStart= 274 xEnd= 283 yStart= 0 yEnd= 9 +LED 130 : xStart= 265 xEnd= 274 yStart= 0 yEnd= 9 +LED 131 : xStart= 256 xEnd= 265 yStart= 0 yEnd= 9 +LED 132 : xStart= 246 xEnd= 256 yStart= 0 yEnd= 9 +LED 133 : xStart= 237 xEnd= 246 yStart= 0 yEnd= 9 +LED 134 : xStart= 228 xEnd= 237 yStart= 0 yEnd= 9 +LED 135 : xStart= 219 xEnd= 228 yStart= 0 yEnd= 9 +LED 136 : xStart= 210 xEnd= 219 yStart= 0 yEnd= 9 +LED 137 : xStart= 201 xEnd= 210 yStart= 0 yEnd= 9 +LED 138 : xStart= 192 xEnd= 201 yStart= 0 yEnd= 9 +LED 139 : xStart= 182 xEnd= 192 yStart= 0 yEnd= 9 +LED 140 : xStart= 173 xEnd= 182 yStart= 0 yEnd= 9 +LED 141 : xStart= 164 xEnd= 173 yStart= 0 yEnd= 9 +LED 142 : xStart= 155 xEnd= 164 yStart= 0 yEnd= 9 +LED 143 : xStart= 146 xEnd= 155 yStart= 0 yEnd= 9 +LED 144 : xStart= 137 xEnd= 146 yStart= 0 yEnd= 9 +LED 145 : xStart= 127 xEnd= 137 yStart= 0 yEnd= 9 +LED 146 : xStart= 118 xEnd= 127 yStart= 0 yEnd= 9 +LED 147 : xStart= 109 xEnd= 118 yStart= 0 yEnd= 9 +LED 148 : xStart= 100 xEnd= 109 yStart= 0 yEnd= 9 +LED 149 : xStart= 91 xEnd= 100 yStart= 0 yEnd= 9 +LED 150 : xStart= 82 xEnd= 91 yStart= 0 yEnd= 9 +LED 151 : xStart= 73 xEnd= 82 yStart= 0 yEnd= 9 +LED 152 : xStart= 63 xEnd= 73 yStart= 0 yEnd= 9 +LED 153 : xStart= 54 xEnd= 63 yStart= 0 yEnd= 9 +LED 154 : xStart= 45 xEnd= 54 yStart= 0 yEnd= 9 +LED 155 : xStart= 36 xEnd= 45 yStart= 0 yEnd= 9 +LED 156 : xStart= 27 xEnd= 36 yStart= 0 yEnd= 9 +LED 157 : xStart= 18 xEnd= 27 yStart= 0 yEnd= 9 +LED 158 : xStart= 9 xEnd= 18 yStart= 0 yEnd= 9 +LED 159 : xStart= 0 xEnd= 9 yStart= 0 yEnd= 9 +LED 160 : xStart= 0 xEnd= 32 yStart= 0 yEnd= 9 +LED 161 : xStart= 0 xEnd= 32 yStart= 9 yEnd= 18 +LED 162 : xStart= 0 xEnd= 32 yStart= 18 yEnd= 27 +LED 163 : xStart= 0 xEnd= 32 yStart= 27 yEnd= 36 +LED 164 : xStart= 0 xEnd= 32 yStart= 36 yEnd= 45 +LED 165 : xStart= 0 xEnd= 32 yStart= 45 yEnd= 54 +LED 166 : xStart= 0 xEnd= 32 yStart= 54 yEnd= 62 +LED 167 : xStart= 0 xEnd= 32 yStart= 62 yEnd= 72 +LED 168 : xStart= 0 xEnd= 32 yStart= 72 yEnd= 81 +LED 169 : xStart= 0 xEnd= 32 yStart= 81 yEnd= 90 +LED 170 : xStart= 0 xEnd= 32 yStart= 90 yEnd= 99 +LED 171 : xStart= 0 xEnd= 32 yStart= 99 yEnd= 108 +LED 172 : xStart= 0 xEnd= 32 yStart= 108 yEnd= 117 +LED 173 : xStart= 0 xEnd= 32 yStart= 117 yEnd= 125 +LED 174 : xStart= 0 xEnd= 32 yStart= 125 yEnd= 135 +LED 175 : xStart= 0 xEnd= 32 yStart= 135 yEnd= 144 +LED 176 : xStart= 0 xEnd= 32 yStart= 144 yEnd= 153 +LED 177 : xStart= 0 xEnd= 32 yStart= 153 yEnd= 162 +LED 178 : xStart= 0 xEnd= 32 yStart= 162 yEnd= 171 +LED 179 : xStart= 0 xEnd= 32 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#333535" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#333535" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#383738" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#333535" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#383738" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#333434" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#383738" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121315" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#333535" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#121314" + LED 1: "#121315" + LED (bottom+1): "#1e1f21" + LED (bottom+right+1): "#333535" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#141313" + LED 1: "#121314" + LED (bottom+1): "#1f1f20" + LED (bottom+right+1): "#343635" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#171412" + LED 1: "#131313" + LED (bottom+1): "#212020" + LED (bottom+right+1): "#353635" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#1e160f" + LED 1: "#151312" + LED (bottom+1): "#27231f" + LED (bottom+right+1): "#373936" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#20160e" + LED 1: "#161312" + LED (bottom+1): "#29241e" + LED (bottom+right+1): "#383a36" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#27180b" + LED 1: "#191411" + LED (bottom+1): "#30281c" + LED (bottom+right+1): "#3b3d37" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +Change detected. Rebuilding LED map. +New image size: QSize(640, 180) +New border - H: 0 V: 9 +buildLedMap: imageWidth= 640 imageHeight= 180 +buildLedMap: border.verticalSize= 9 border.horizontalSize= 0 +buildLedMap: contentWidth= 622 contentHeight= 180 +buildLedMap: totalLeds= 180 +LED 0 : xStart= 9 xEnd= 17 yStart= 171 yEnd= 180 +LED 1 : xStart= 17 xEnd= 26 yStart= 171 yEnd= 180 +LED 2 : xStart= 26 xEnd= 35 yStart= 171 yEnd= 180 +LED 3 : xStart= 35 xEnd= 44 yStart= 171 yEnd= 180 +LED 4 : xStart= 44 xEnd= 53 yStart= 171 yEnd= 180 +LED 5 : xStart= 53 xEnd= 62 yStart= 171 yEnd= 180 +LED 6 : xStart= 62 xEnd= 71 yStart= 171 yEnd= 180 +LED 7 : xStart= 71 xEnd= 80 yStart= 171 yEnd= 180 +LED 8 : xStart= 80 xEnd= 88 yStart= 171 yEnd= 180 +LED 9 : xStart= 88 xEnd= 97 yStart= 171 yEnd= 180 +LED 10 : xStart= 97 xEnd= 106 yStart= 171 yEnd= 180 +LED 11 : xStart= 106 xEnd= 115 yStart= 171 yEnd= 180 +LED 12 : xStart= 115 xEnd= 124 yStart= 171 yEnd= 180 +LED 13 : xStart= 124 xEnd= 133 yStart= 171 yEnd= 180 +LED 14 : xStart= 133 xEnd= 142 yStart= 171 yEnd= 180 +LED 15 : xStart= 142 xEnd= 151 yStart= 171 yEnd= 180 +LED 16 : xStart= 151 xEnd= 160 yStart= 171 yEnd= 180 +LED 17 : xStart= 160 xEnd= 168 yStart= 171 yEnd= 180 +LED 18 : xStart= 168 xEnd= 177 yStart= 171 yEnd= 180 +LED 19 : xStart= 177 xEnd= 186 yStart= 171 yEnd= 180 +LED 20 : xStart= 186 xEnd= 195 yStart= 171 yEnd= 180 +LED 21 : xStart= 195 xEnd= 204 yStart= 171 yEnd= 180 +LED 22 : xStart= 204 xEnd= 213 yStart= 171 yEnd= 180 +LED 23 : xStart= 213 xEnd= 222 yStart= 171 yEnd= 180 +LED 24 : xStart= 222 xEnd= 231 yStart= 171 yEnd= 180 +LED 25 : xStart= 231 xEnd= 240 yStart= 171 yEnd= 180 +LED 26 : xStart= 240 xEnd= 248 yStart= 171 yEnd= 180 +LED 27 : xStart= 248 xEnd= 257 yStart= 171 yEnd= 180 +LED 28 : xStart= 257 xEnd= 266 yStart= 171 yEnd= 180 +LED 29 : xStart= 266 xEnd= 275 yStart= 171 yEnd= 180 +LED 30 : xStart= 275 xEnd= 284 yStart= 171 yEnd= 180 +LED 31 : xStart= 284 xEnd= 293 yStart= 171 yEnd= 180 +LED 32 : xStart= 293 xEnd= 302 yStart= 171 yEnd= 180 +LED 33 : xStart= 302 xEnd= 311 yStart= 171 yEnd= 180 +LED 34 : xStart= 311 xEnd= 320 yStart= 171 yEnd= 180 +LED 35 : xStart= 320 xEnd= 328 yStart= 171 yEnd= 180 +LED 36 : xStart= 328 xEnd= 337 yStart= 171 yEnd= 180 +LED 37 : xStart= 337 xEnd= 346 yStart= 171 yEnd= 180 +LED 38 : xStart= 346 xEnd= 355 yStart= 171 yEnd= 180 +LED 39 : xStart= 355 xEnd= 364 yStart= 171 yEnd= 180 +LED 40 : xStart= 364 xEnd= 373 yStart= 171 yEnd= 180 +LED 41 : xStart= 373 xEnd= 382 yStart= 171 yEnd= 180 +LED 42 : xStart= 382 xEnd= 391 yStart= 171 yEnd= 180 +LED 43 : xStart= 391 xEnd= 399 yStart= 171 yEnd= 180 +LED 44 : xStart= 399 xEnd= 408 yStart= 171 yEnd= 180 +LED 45 : xStart= 408 xEnd= 417 yStart= 171 yEnd= 180 +LED 46 : xStart= 417 xEnd= 426 yStart= 171 yEnd= 180 +LED 47 : xStart= 426 xEnd= 435 yStart= 171 yEnd= 180 +LED 48 : xStart= 435 xEnd= 444 yStart= 171 yEnd= 180 +LED 49 : xStart= 444 xEnd= 453 yStart= 171 yEnd= 180 +LED 50 : xStart= 453 xEnd= 462 yStart= 171 yEnd= 180 +LED 51 : xStart= 462 xEnd= 471 yStart= 171 yEnd= 180 +LED 52 : xStart= 471 xEnd= 479 yStart= 171 yEnd= 180 +LED 53 : xStart= 479 xEnd= 488 yStart= 171 yEnd= 180 +LED 54 : xStart= 488 xEnd= 497 yStart= 171 yEnd= 180 +LED 55 : xStart= 497 xEnd= 506 yStart= 171 yEnd= 180 +LED 56 : xStart= 506 xEnd= 515 yStart= 171 yEnd= 180 +LED 57 : xStart= 515 xEnd= 524 yStart= 171 yEnd= 180 +LED 58 : xStart= 524 xEnd= 533 yStart= 171 yEnd= 180 +LED 59 : xStart= 533 xEnd= 542 yStart= 171 yEnd= 180 +LED 60 : xStart= 542 xEnd= 551 yStart= 171 yEnd= 180 +LED 61 : xStart= 551 xEnd= 559 yStart= 171 yEnd= 180 +LED 62 : xStart= 559 xEnd= 568 yStart= 171 yEnd= 180 +LED 63 : xStart= 568 xEnd= 577 yStart= 171 yEnd= 180 +LED 64 : xStart= 577 xEnd= 586 yStart= 171 yEnd= 180 +LED 65 : xStart= 586 xEnd= 595 yStart= 171 yEnd= 180 +LED 66 : xStart= 595 xEnd= 604 yStart= 171 yEnd= 180 +LED 67 : xStart= 604 xEnd= 613 yStart= 171 yEnd= 180 +LED 68 : xStart= 613 xEnd= 622 yStart= 171 yEnd= 180 +LED 69 : xStart= 622 xEnd= 631 yStart= 171 yEnd= 180 +LED 70 : xStart= 600 xEnd= 631 yStart= 171 yEnd= 180 +LED 71 : xStart= 600 xEnd= 631 yStart= 162 yEnd= 171 +LED 72 : xStart= 600 xEnd= 631 yStart= 153 yEnd= 162 +LED 73 : xStart= 600 xEnd= 631 yStart= 144 yEnd= 153 +LED 74 : xStart= 600 xEnd= 631 yStart= 135 yEnd= 144 +LED 75 : xStart= 600 xEnd= 631 yStart= 125 yEnd= 135 +LED 76 : xStart= 600 xEnd= 631 yStart= 117 yEnd= 125 +LED 77 : xStart= 600 xEnd= 631 yStart= 108 yEnd= 117 +LED 78 : xStart= 600 xEnd= 631 yStart= 99 yEnd= 108 +LED 79 : xStart= 600 xEnd= 631 yStart= 90 yEnd= 99 +LED 80 : xStart= 600 xEnd= 631 yStart= 80 yEnd= 90 +LED 81 : xStart= 600 xEnd= 631 yStart= 72 yEnd= 80 +LED 82 : xStart= 600 xEnd= 631 yStart= 62 yEnd= 72 +LED 83 : xStart= 600 xEnd= 631 yStart= 54 yEnd= 62 +LED 84 : xStart= 600 xEnd= 631 yStart= 45 yEnd= 54 +LED 85 : xStart= 600 xEnd= 631 yStart= 35 yEnd= 45 +LED 86 : xStart= 600 xEnd= 631 yStart= 27 yEnd= 35 +LED 87 : xStart= 600 xEnd= 631 yStart= 17 yEnd= 27 +LED 88 : xStart= 600 xEnd= 631 yStart= 9 yEnd= 17 +LED 89 : xStart= 600 xEnd= 631 yStart= 0 yEnd= 9 +LED 90 : xStart= 622 xEnd= 631 yStart= 0 yEnd= 9 +LED 91 : xStart= 613 xEnd= 622 yStart= 0 yEnd= 9 +LED 92 : xStart= 604 xEnd= 613 yStart= 0 yEnd= 9 +LED 93 : xStart= 595 xEnd= 604 yStart= 0 yEnd= 9 +LED 94 : xStart= 586 xEnd= 595 yStart= 0 yEnd= 9 +LED 95 : xStart= 577 xEnd= 586 yStart= 0 yEnd= 9 +LED 96 : xStart= 568 xEnd= 577 yStart= 0 yEnd= 9 +LED 97 : xStart= 559 xEnd= 568 yStart= 0 yEnd= 9 +LED 98 : xStart= 551 xEnd= 559 yStart= 0 yEnd= 9 +LED 99 : xStart= 542 xEnd= 551 yStart= 0 yEnd= 9 +LED 100 : xStart= 533 xEnd= 542 yStart= 0 yEnd= 9 +LED 101 : xStart= 524 xEnd= 533 yStart= 0 yEnd= 9 +LED 102 : xStart= 515 xEnd= 524 yStart= 0 yEnd= 9 +LED 103 : xStart= 506 xEnd= 515 yStart= 0 yEnd= 9 +LED 104 : xStart= 497 xEnd= 506 yStart= 0 yEnd= 9 +LED 105 : xStart= 488 xEnd= 497 yStart= 0 yEnd= 9 +LED 106 : xStart= 479 xEnd= 488 yStart= 0 yEnd= 9 +LED 107 : xStart= 471 xEnd= 479 yStart= 0 yEnd= 9 +LED 108 : xStart= 462 xEnd= 471 yStart= 0 yEnd= 9 +LED 109 : xStart= 453 xEnd= 462 yStart= 0 yEnd= 9 +LED 110 : xStart= 444 xEnd= 453 yStart= 0 yEnd= 9 +LED 111 : xStart= 435 xEnd= 444 yStart= 0 yEnd= 9 +LED 112 : xStart= 426 xEnd= 435 yStart= 0 yEnd= 9 +LED 113 : xStart= 417 xEnd= 426 yStart= 0 yEnd= 9 +LED 114 : xStart= 408 xEnd= 417 yStart= 0 yEnd= 9 +LED 115 : xStart= 399 xEnd= 408 yStart= 0 yEnd= 9 +LED 116 : xStart= 391 xEnd= 399 yStart= 0 yEnd= 9 +LED 117 : xStart= 382 xEnd= 391 yStart= 0 yEnd= 9 +LED 118 : xStart= 373 xEnd= 382 yStart= 0 yEnd= 9 +LED 119 : xStart= 364 xEnd= 373 yStart= 0 yEnd= 9 +LED 120 : xStart= 355 xEnd= 364 yStart= 0 yEnd= 9 +LED 121 : xStart= 346 xEnd= 355 yStart= 0 yEnd= 9 +LED 122 : xStart= 337 xEnd= 346 yStart= 0 yEnd= 9 +LED 123 : xStart= 328 xEnd= 337 yStart= 0 yEnd= 9 +LED 124 : xStart= 320 xEnd= 328 yStart= 0 yEnd= 9 +LED 125 : xStart= 311 xEnd= 320 yStart= 0 yEnd= 9 +LED 126 : xStart= 302 xEnd= 311 yStart= 0 yEnd= 9 +LED 127 : xStart= 293 xEnd= 302 yStart= 0 yEnd= 9 +LED 128 : xStart= 284 xEnd= 293 yStart= 0 yEnd= 9 +LED 129 : xStart= 275 xEnd= 284 yStart= 0 yEnd= 9 +LED 130 : xStart= 266 xEnd= 275 yStart= 0 yEnd= 9 +LED 131 : xStart= 257 xEnd= 266 yStart= 0 yEnd= 9 +LED 132 : xStart= 248 xEnd= 257 yStart= 0 yEnd= 9 +LED 133 : xStart= 240 xEnd= 248 yStart= 0 yEnd= 9 +LED 134 : xStart= 231 xEnd= 240 yStart= 0 yEnd= 9 +LED 135 : xStart= 222 xEnd= 231 yStart= 0 yEnd= 9 +LED 136 : xStart= 213 xEnd= 222 yStart= 0 yEnd= 9 +LED 137 : xStart= 204 xEnd= 213 yStart= 0 yEnd= 9 +LED 138 : xStart= 195 xEnd= 204 yStart= 0 yEnd= 9 +LED 139 : xStart= 186 xEnd= 195 yStart= 0 yEnd= 9 +LED 140 : xStart= 177 xEnd= 186 yStart= 0 yEnd= 9 +LED 141 : xStart= 168 xEnd= 177 yStart= 0 yEnd= 9 +LED 142 : xStart= 160 xEnd= 168 yStart= 0 yEnd= 9 +LED 143 : xStart= 151 xEnd= 160 yStart= 0 yEnd= 9 +LED 144 : xStart= 142 xEnd= 151 yStart= 0 yEnd= 9 +LED 145 : xStart= 133 xEnd= 142 yStart= 0 yEnd= 9 +LED 146 : xStart= 124 xEnd= 133 yStart= 0 yEnd= 9 +LED 147 : xStart= 115 xEnd= 124 yStart= 0 yEnd= 9 +LED 148 : xStart= 106 xEnd= 115 yStart= 0 yEnd= 9 +LED 149 : xStart= 97 xEnd= 106 yStart= 0 yEnd= 9 +LED 150 : xStart= 88 xEnd= 97 yStart= 0 yEnd= 9 +LED 151 : xStart= 80 xEnd= 88 yStart= 0 yEnd= 9 +LED 152 : xStart= 71 xEnd= 80 yStart= 0 yEnd= 9 +LED 153 : xStart= 62 xEnd= 71 yStart= 0 yEnd= 9 +LED 154 : xStart= 53 xEnd= 62 yStart= 0 yEnd= 9 +LED 155 : xStart= 44 xEnd= 53 yStart= 0 yEnd= 9 +LED 156 : xStart= 35 xEnd= 44 yStart= 0 yEnd= 9 +LED 157 : xStart= 26 xEnd= 35 yStart= 0 yEnd= 9 +LED 158 : xStart= 17 xEnd= 26 yStart= 0 yEnd= 9 +LED 159 : xStart= 9 xEnd= 17 yStart= 0 yEnd= 9 +LED 160 : xStart= 9 xEnd= 40 yStart= 0 yEnd= 9 +LED 161 : xStart= 9 xEnd= 40 yStart= 9 yEnd= 18 +LED 162 : xStart= 9 xEnd= 40 yStart= 18 yEnd= 27 +LED 163 : xStart= 9 xEnd= 40 yStart= 27 yEnd= 36 +LED 164 : xStart= 9 xEnd= 40 yStart= 36 yEnd= 45 +LED 165 : xStart= 9 xEnd= 40 yStart= 45 yEnd= 54 +LED 166 : xStart= 9 xEnd= 40 yStart= 54 yEnd= 62 +LED 167 : xStart= 9 xEnd= 40 yStart= 62 yEnd= 72 +LED 168 : xStart= 9 xEnd= 40 yStart= 72 yEnd= 81 +LED 169 : xStart= 9 xEnd= 40 yStart= 81 yEnd= 90 +LED 170 : xStart= 9 xEnd= 40 yStart= 90 yEnd= 99 +LED 171 : xStart= 9 xEnd= 40 yStart= 99 yEnd= 108 +LED 172 : xStart= 9 xEnd= 40 yStart= 108 yEnd= 117 +LED 173 : xStart= 9 xEnd= 40 yStart= 117 yEnd= 125 +LED 174 : xStart= 9 xEnd= 40 yStart= 125 yEnd= 135 +LED 175 : xStart= 9 xEnd= 40 yStart= 135 yEnd= 144 +LED 176 : xStart= 9 xEnd= 40 yStart= 144 yEnd= 153 +LED 177 : xStart= 9 xEnd= 40 yStart= 153 yEnd= 162 +LED 178 : xStart= 9 xEnd= 40 yStart= 162 yEnd= 171 +LED 179 : xStart= 9 xEnd= 40 yStart= 171 yEnd= 180 +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#22170e" + LED (bottom+1): "#382b1a" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#412f17" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +                                                                        +GrabberConfigurator::processFrame called. +HyperionProcessor::process called. +HyperionProcessor::calculateLedColors called. +Sample LED Colors: + LED 0: "#26170a" + LED 1: "#2a1a0c" + LED (bottom+1): "#423017" + LED (bottom+right+1): "#373a34" +                                                                        +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +