David Tschumperlé

Results 175 comments of David Tschumperlé

Thanks. It would be nice to have the line numbers as well. Could you add the `-g` flags as well ? (and check the generated binary is not stripped!). Thanks!

You can already use the `$_persistent` variable to manage that. For instance, if you don't want to recompute a preview image for a given set of parameters, then once it's...

Hello, Indeed. Color management should be actually implemented specifically in the file `host_krita.cpp`. There is a dedicated function `void gmic_qt_apply_color_profile(cimg_library::CImg & )` in this source file that is intended to...

No, we don't actually don't do anything related to color-management right now. In `host_krita.cpp`, there is a specific function `gmic_qt_apply_color_profile()` for that that gets an image as a parameter (and...

`CImg` uses the external tool `medcon` to import dicom images, so if you have `medcon` installed on your system, CImg should be able to read dicom files. That's not a...

I think PhotoGimp is just a customized version of GIMP, so there shouldn't be any problem in making the G'MIC plug-in run on it.

Fixed (from the `stdlib` side), with https://github.com/GreycLab/gmic/commit/e897652a74cf2e6072dc541fdca8f5bc36ff6761 Anyway, I'd recommend changing (at least) these two lines in `Widgets/PreviewWidget.cpp`: ~~~ fullCommandLine += QString(" _preview_width=%1").arg(width()); fullCommandLine += QString(" _preview_height=%1").arg(height()); ~~~ by ~~~...

No, but the [Xiaolin Wu's anti-aliased line algorithm](https://en.wikipedia.org/wiki/Xiaolin_Wu%27s_line_algorithm) is trivial to implement with CImg, and it is giving quite good results. I've not done it in CImg, but for my...

Agree with most points, except "panning the preview image" that requires the preview to be recalculated. The preview image is calculated only from the thumbnail it displays, not from the...