Re: [darktable-dev] Image queries in Lua API.

2017-02-17 Thread August Schwerdfeger
In terms of the interface, this would not require full access to the SQL database -- only a way to take the existing set of collection rules from 'darktable.gui.libs.collect' and use them independently of the GUI, applying them instead to the table of images from 'darktable.database'. Is this

Re: [darktable-dev] darktable 2.2.3 crashes on selection of add path

2017-02-17 Thread Ulrich Pegelow
Am 17.02.2017 um 16:07 schrieb Michael Figiel: Hi, now I've got two binaries: one crashes and one doesn't. Both are without the fix, build with pristine 2.2.3 sources: the not-crashing is build as RelWithDebInfo, the crashing as Release I would have expected it the other way round, but OK.

Re: [darktable-dev] Re: DT 2.2.3 much faster than 2.2.1 !!

2017-02-17 Thread Ammon Riley
On Fri, Feb 17, 2017 at 9:21 AM, Ammon Riley wrote: > On Thu, Feb 16, 2017 at 10:47 PM, Matthias Bodenbinder > wrote: >> >> Am 17.02.2017 um 06:57 schrieb Matthias Bodenbinder: >> > Am 16.02.2017 um 23:27 schrieb Tobias Ellinghaus: >> > >> >>

Re: [darktable-dev] darktable 2.2.3 crashes on selection of add path

2017-02-17 Thread Michael Figiel
Hi, now I've got two binaries: one crashes and one doesn't. Both are without the fix, build with pristine 2.2.3 sources: the not-crashing is build as RelWithDebInfo, the crashing as Release Btw. the compiler is llvm: # clang -v FreeBSD clang version 3.9.1 (tags/RELEASE_391/final 289601) (based

Re: [darktable-dev] determining global image features in the pixelpipe

2017-02-17 Thread Ulrich Pegelow
I also suggest to use the globaltonemap module as a guiding example. Please beware that the current implementation has an issue if the preview pixelpipe runs slower than the full (center) one - a case that frequently happens when darktable runs with OpenCL support. To address this issue there

Re: [darktable-dev] Image queries in Lua API.

2017-02-17 Thread Tobias Ellinghaus
Am Freitag, 17. Februar 2017, 00:06:36 CET schrieb August Schwerdfeger: > I am trying to reimplement, using Darktable's Lua API, some parts of > my workflow that I had previously jury-rigged using external Python > scripts that modify the database directly. > > One of these tasks involves

Re: [darktable-dev] determining global image features in the pixelpipe

2017-02-17 Thread johannes hanika
hi, a few modules have similar requirements. you can have a look for instance in the ashift.c module, where it says: // only for preview pipe: collect input buffer data and do some other evaluations if(self->dev->gui_attached && g && piece->pipe->type == DT_DEV_PIXELPIPE_PREVIEW) { there is