Giter Site home page Giter Site logo

annotation's People

Contributors

julien-mille avatar pi-lemaire avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

pandinosaurus

annotation's Issues

Compatilibity with older versions of Qt 5

Qt versions anterior to 5.6 do not have QImage::pixelColor() nor QImage::setPixelColor() functions. Here is the fix for making AnnotationArea work:

AnnotationArea.cpp:line 827
#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
if (this->ObjectImage.pixelColor(j+this->ObjectROI.left(), i+this->ObjectROI.top()).black() > 127)
currentAnnotationMat.at(i,j) = 255;
#else
QRgb rgb = this->ObjectImage.pixel(j+this->ObjectROI.left(), i+this->ObjectROI.top());
QColor col(rgb);
if (col.black()>127)
currentAnnotationMat.at(i,j) = 255;
#endif

AnnotationArea.cpp:line 1298
#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
this->PaintingImage.setPixelColor(j,i, classesColorList[this->annotations->getCurrentAnnotationsClasses().at<int16_t>(i,j)]);
#else
QColor col = classesColorList[this->annotations->getCurrentAnnotationsClasses().at<int16_t>(i,j)];
this->PaintingImage.setPixel(j,i,col.rgba());
#endif

I can push if you like ;)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.