Re: [darktable-user] Feature idea : DTtimelapse ? (similar to LRtimelapse in essence)

2024-04-17 Thread Martin Straeten
with recent darktable there can be a further approach: using exposure and color mapping.These functions might support setting of smooth transitions for exposure as well as color calibration based on keyframesAm 17.04.2024 um 19:08 schrieb William Ferguson :The issue here is that we are trying to solve a darktable problem with a lightroom solution.  If we approach it from a darktable perspective, then we are looking at (probably) less than 100 lines of lua code and 30 minutes worth of work.Using lua I can load an image into darkroom and read or modify the exposure setting.So, if I go through and pick my "key frames", adjust the exposure, then assign a keyframe tag I can run a script that:* selects the images that are keyframes, loads each one sequentially, and reads and stores the exposure information* loads each image in the collection and-- determines the limiting keyframes-- computes the exposure difference -- applies the exposure difference-- loads the next image after the pixelpipe completes.Advantages of this approach* No decoding, extrapolating, interpolating, guessing, etc of XMP files* Don't have to scan for updated XMP files when starting darktable* No worries about XMP file corruption* No worries about database corruption from loading a bad XMP* Don't have to worry about XMP format changes* If the collection gets messed up, you simply select all, discard the history stacks and you've recovered.* You're not limited to just modifying exposureDisadvantages:* It's slower.  It has to load each image into darktable and process it.    I tested loading images and changing the exposure and IIRC darktable  processed roughly 2 images/sec.  The images were on an SSD.BillOn Wed, Apr 17, 2024 at 11:04 AM Jochen Keil <jochen.k...@gmail.com> wrote:Hi Sébastien,I wrote dtlapse back then and I'm happy to see that there's still interest in it. Unfortunately, due to time constraints I cannot put much work into it. Therefore, in its current state it's pretty unusable, since darktable evolves faster than I can keep up.The basic functionality is very close to what you describe. Pick some keyframes, adjust them as desired and interpolate the values in between. This can be done by using the XMP files as interface, once you get around decoding the module parameters. That's all in dtlapse and worked pretty well for its rather hackish state.However, the biggest problem is that modules tend to change regularly, which means that you have to manually adapt the interface description for every new darktable release while keeping old versions for compatibility. I've made it somewhat easy to update XMP interface descriptions by moving them to JSON files separately from the code. Still, for every new release you have to reengineer the XMP file because they're not documented, at least last time I looked. Given the amount of modules (and even if you would limit yourself to the most interesting ones) it's tedious and by the time you're done a new release comes around the corner.I've had the idea to generate the interface description directly from the source code, but you'd need to use a C/C++ parser to get it. I've just checked the code and the XMP interface is STILL hardcoded in the modules.So, to sum it up, it can be done, but it's quite hard. It'd be much easier if the darktable developers would separate the XMP interface definition for each module from the code which would greatly increase interoperability and is good practice anyway (separate data from code). However, I think there's not much incentive for them to do it, it'd even be a rather elaborate redesign.Best,  JochenOn Wed, Apr 17, 2024 at 2:23 PM Sébastien Chaurin <sebastien.chau...@gmail.com> wrote:omg thanks for that ! I knew somehow that I couldn't be the only one thinking that it'd be great to have...I'll have a closer look at that repo.Thanks again.On Tue, 16 Apr 2024 at 13:48, Martin Straeten <martin.strae...@gmail.com> wrote:Have a look at https://discuss.pixls.us/t/annoucement-of-dtlapse/19522Am 16.04.2024 um 09:59 schrieb Sébastien Chaurin <sebastien.chau...@gmail.com>:Hello all,Have any one of you guys wondered about how hard it'd be to implement something similar to LRTimelapse ?For those of you not aware of what this is, it's an additional app that looks at xmp files from LR. It looks first within a folder with hundreds of pics for a timelapse (in real life), at those images with only 5 stars. In this exemple let's say we only have 5 images for our timelapse.Let's imagine that we only have 2 of those, the first and the last, rated 5 stars. and let's also assume there is only one module with one parameter that has changed : exposure.This app would look at the first 5 stars rated image and see the exposure value of +0.5, and the second with a value of +0.9 hypothetically. It would then look at how many images there are in between in the folder (those not rated 5 stars) and divide the difference of the current setting by the 

Re: [darktable-user] Feature idea : DTtimelapse ? (similar to LRtimelapse in essence)

2024-04-16 Thread Martin Straeten
Have a look at https://discuss.pixls.us/t/annoucement-of-dtlapse/19522

> Am 16.04.2024 um 09:59 schrieb Sébastien Chaurin 
> :
> 
> 
> Hello all,
> 
> Have any one of you guys wondered about how hard it'd be to implement 
> something similar to LRTimelapse ?
> For those of you not aware of what this is, it's an additional app that looks 
> at xmp files from LR. It looks first within a folder with hundreds of pics 
> for a timelapse (in real life), at those images with only 5 stars. In this 
> exemple let's say we only have 5 images for our timelapse.
> Let's imagine that we only have 2 of those, the first and the last, rated 5 
> stars. and let's also assume there is only one module with one parameter that 
> has changed : exposure.
> This app would look at the first 5 stars rated image and see the exposure 
> value of +0.5, and the second with a value of +0.9 hypothetically. 
> It would then look at how many images there are in between in the folder 
> (those not rated 5 stars) and divide the difference of the current setting by 
> the number of pics that sit in between these. 5 pics total minus the 2 rated 
> 5 stars leaves us with 3.
> So in this toy example we only have 3 photos in between the key images (5 
> stars), then we have
> - difference in exposure : 0.9 - 0.5 = 0.4
> - 4 pics to arrive at that 0.9 value if we start from the first one : 0.4 / 4 
> = 0.1 incremental step of exposure to be applied.
> it would build xmp files for the 3 non 5 star rated pic with exposure values 
> respectively of 0.6, 0.7 and 0.8. The first one being 0.5, and the last 0.9.
> This is assuming we have a linear progression, but I'm sure you can imagine 
> other types than linear.
> 
> The idea is to adjust every parameter for the pics in between key images (5 
> stars pics) so that in the end for the timelapse, there are smooth 
> transitions for every setting, exposure is usually one.
> 
> Hopefully this little example makes sense ? The concept is I think easy to 
> understand : avoid editing possibly thousands of pictures with varying needs 
> in editing. You would only edit key images, and then it would ensure smooth 
> transitioning for all the in-between images, working out the incremental 
> steps it needs to put for every single setting to ensure that.
> 
> I've used that a lot during my time with LR, and I've been thinking about 
> bringing this capability into DT.
> 
> Food for thoughts at this stage, and of course happy to discuss this further. 
> I'm sure there will be many obstacles in making that a feature, but isn't it 
> also the challenge ? :)
> 
> PS: LRtimelapse goes a little bit beyond this, but let's start "simple". 
> 
> Cheers,
> Sébastien
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Need help compiling

2023-12-20 Thread Martin Straeten
if you change something in the build relevant source then the -dirty appears. eg so for my macOS10.14 and 11.3 builds since I need to ditch a check for minimum required macOS deployment target in the cmake files ;)git checkout mastergit reset --recurse-submodules --hard origin/masterhelps to get the clean stuff - but if you need to adapt something to solve build issues, it’ll back …Am 20.12.2023 um 22:09 schrieb Bruce Williams :Milos,Thanks for the suggestions.What exactly does the -dirty flag mean?And what is the process to correct it?-- Forwarded message -From: miloskomarce...@aim.com Date: Thu, Dec 21, 2023 at 12:12 AMSubject: Re: Fwd: Fwd: [darktable-user] Need help compilingTo: stu...@audio2u.com Note that you also have a "-dirty" flag which could also mean your source tree is not in a good state. You should probably start w/ a clean one.On Wed, 20 Dec 2023 at 14:08, miloskomarce...@aim.com wrote:   Hi Bruce,This second error came actually much earlier in the log, and indeed has nothing to do w/ raw_r (was just waiting for that to finish):make[2]: ***[lib/darktable/rawspeed/data/CMakeFiles/validate-cameras.xml.dir/build.make:76:lib/darktable/rawspeed/data/cameras.xml.touch] Error 5make[1]: *** [CMakeFiles/Makefile2:2401:lib/darktable/rawspeed/data/CMakeFiles/validate-cameras.xml.dir/all] Error2make[1]: *** Waiting for unfinished jobsNow why that failed and is beyond me at the moment, sorry...Best regards,MilosP.S. I think you'll find more people active over at https://discuss.pixls.us/c/software/darktable/19  


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

=

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] darktable 4.4.2 released

2023-07-23 Thread Martin Straeten
Suspended means, you need do something with the output of these cameras or 
change stuff in the darktable camera support files yourself to enable the 
processing for these images. That might work, but no maintainer cares…
Supporting a camera isn’t just being able to read the files but also to 
interpret them correctly 
darktable just supports cameras, where samples were uploaded so validated 
settings are taken into account. If no user provides those samples, then 
there’s obviously no demand for supporting them…

> Am 23.07.2023 um 08:04 schrieb Michael Staats :
> 
> Ok, this finally leads to my question: What exactly does it mean if
> support for any camera is "suspended"? Leaving the raw format aside
> (which should not hopefully be an issue for DNG), what else is camera
> specific?

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] darktable 4.4.0 - issue with the macOS package for Apple Silicon (ARM) systems

2023-06-27 Thread Martin Straeten
the official darktable macOS packages aren’t codesigned, so that’s the expected behaviour due to macOS security conceptAm 27.06.2023 um 16:22 schrieb Hevii Guy :
  

  
  
Installation on Mac OS 11.7.6...
Not so sure about the new ARM systems but, for those running
  older Mac OS versions, there is no need to jump through arcane,
  flaming and razor-studded command line hoops. Simply install the
  program by double-clicking the dmg. Acknowledge that you can't
  open it when the troubling dialogue box appears. Immediately
  afterwards, go to System Preferences and select Security
& Privacy. You should then see another dialogue stating
  "darktable.app was blocked yada, yada..". Select "Open
Anyway". Although there might be one more field which you
  might have to authorise, from then on everything will have "stuck"
  and you can start the program as you've been accustomed to.
I would be interested to know whether the above continues to
  apply to Apple's newest OS or if they've created yet another
  "improvement" which makes users' experiences with their product
  miserable.








On 23.06.23 14:06, Achim Dittrich
  wrote:


  
  
Hi Martin,
 
no, that's not the problem.
For the macOS ARM64 installation package, you must follow
  the installation notes on https://www.darktable.org/install/
where it says
 
... or you can prevent this from happening by running xattr
  -d com.apple.quarantine ~/Downloads/darktable*.dmg
command before mounting the image (or xattr -dr
  com.apple.quarantine /Applications/darktable.app
after installing).
 
When you do this, the installation as well as the
starting of the application just works fine without any
message popping up.
The issue is that when you take the package from https://github.com/darktable-org/darktable/releases
  as per Pascal's original mail, there is no such installation
  note associated with the file. That was the trap I had ran
  into.
 
I hope that clarifies the issue also for other macOS Apple
  Silicon users.
 
 
Best wishes,
 
Achim
 
 
Homepage:
achimdittrich.de / achimdittrich.com
Instagram: achimdittrich_photography
 
   

  Gesendet: Donnerstag,
22. Juni 2023 um 17:11 Uhr
Von: "Martin Straeten"

An: "Achim Dittrich"

Cc: "darktable-user"

Betreff: Re: [darktable-user] darktable 4.4.0 -
issue with the macOS package for Apple Silicon (ARM)
systems
  

   
  the macOS packages aren’t codesigned since no
packager has a paid Apple developer ID.
  For a solution see https://www.darktable.org/install/#macos
   
Am 22.06.2023 um 16:39 schrieb Achim
  Dittrich :
   
  
  

  
Hi everyone,
 
it seems there is an issue with the package
  darktable-4.4.0-arm64.dmg for Apple
  Silicon macOS systems such that when you try
  to start the updated application a message
  pops up that says that the application is
  damaged and darktable will therefore not
  start.
 
Issues have been opened on GitHub so that I
  hope that a fixed version will be provided
  soon.
 
I was able to re - install version 4.2.1.
  Just in case that happened to some of you in
  the meantime ...
 
 
Regards,
 
Achim
 
Homepage: achimdittrich.de
/ achimdittrich.com
Instagram: achimdittrich_photography
  
  

  darktable user mailing list to unsubscribe send a
  ma

Re: [darktable-user] darktable 4.4.0 - issue with the macOS package for Apple Silicon (ARM) systems

2023-06-22 Thread Martin Straeten
the macOS packages aren’t codesigned since no packager has a paid Apple developer ID.For a solution see https://www.darktable.org/install/#macosAm 22.06.2023 um 16:39 schrieb Achim Dittrich :Hi everyone,

 

it seems there is an issue with the package darktable-4.4.0-arm64.dmg for Apple Silicon macOS systems such that when you try to start the updated application a message pops up that says that the application is damaged and darktable will therefore not start.

 

Issues have been opened on GitHub so that I hope that a fixed version will be provided soon.

 

I was able to re - install version 4.2.1. Just in case that happened to some of you in the meantime ...

 

 

Regards,

 

Achim

 

Homepage: achimdittrich.de / achimdittrich.com
Instagram: achimdittrich_photography


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] darktable 4.2.1 released

2023-02-25 Thread Martin Straeten
packaging needs time and someone must spend his spare time to do it.
So be patient…

> Am 25.02.2023 um 11:06 schrieb tony Hamilton :
> 
> Forgive my impatient and selfish perspective, but for those of us blessed 
> with the inability to compile anything in Linux, even after 15  years of 
> trying, where can we look for an Ubuntu binary for dt version 4.2.1? The OBS 
> is still showing 4.2.0.
> 
>> 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Disaster with history stack

2023-02-03 Thread Martin Straeten
if you have regulary backups of  your ~/.config/darktable directory you can
replace library.db with a recently backup. Then you lose all edits done
after the backup.

if you have regulary backups of  the image directories (& didnt disable
writing xmp files) you can restore the xmp files and let dt check for
changed xmps at startup via preferences setting.
Then you can select to apply the xmp over the database

see:
https://docs.darktable.org/usermanual/4.0/en/preferences-settings/storage/#xmp

Am Fr., 3. Feb. 2023 um 07:12 Uhr schrieb Andrew Greig <
and...@algphoto.com.au>:

> Hi All,
>
> I found that the information I received from Patrick Shannahan really
> useful so I loaded a couple of processes in Darktable and acted as a taxi
> for my mother in law, did some shopping had coffee and the results were
> waiting for me when I arrived home. This will be useful for the times when
> I am working late, I can set the tasks running and head to bed. Everything
> will be in place in the morning.
>
> The disaster above was caused by using the history stack to apply certain
> modules in the Light-table, I inadvertently blitzed the whole history stack
> for the complete set of images. Is there any way to reverse that, or do I
> need to wipe all of the sidecar files and re-import the RAW files?
>
> Many thanks
> --
>
> 
> darktable user mailing list to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] Filmic Presets

2022-12-18 Thread Martin Straeten
The filmicrgb.c sourcecode doesn’t init presetscan you provide an example?Am 18.12.2022 um 23:44 schrieb David Vincent-Jones :
  

  
  
This is the latest filmic-rgb . I am running
today's git version

On 12/18/22 12:53, Martin Straeten
  wrote:


  
  did you check old filmic or the newer filmicrgb?
  
Am 18.12.2022 um 20:36 schrieb David
  Vincent-Jones :
  

  
  

  
  Looking at the presets for filmic in the
  dt-preferences>presets I see that the developers have
  already provided quite a range of options but for some
  reason none of these show-up while working with this
  module. Is there a reason?
  I have also tried setting sigmoid as the
  initial module rather than filmic but I am unable to stop
  filmic from being set as the default ... am I missing
  something.
  Current git version/Manjaro-Arch/XFCE
  
  

  darktable user mailing list
  to unsubscribe send a mail to
  darktable-user+unsubscr...@lists.darktable.org
  

  

  



darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Filmic Presets

2022-12-18 Thread Martin Straeten
did you check old filmic or the newer filmicrgb?

> Am 18.12.2022 um 20:36 schrieb David Vincent-Jones :
> 
> 
> Looking at the presets for filmic in the dt-preferences>presets I see that 
> the developers have already provided quite a range of options but for some 
> reason none of these show-up while working with this module. Is there a 
> reason?
> 
> I have also tried setting sigmoid as the initial module rather than filmic 
> but I am unable to stop filmic from being set as the default ... am I missing 
> something.
> 
> Current git version/Manjaro-Arch/XFCE
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Canon R5 R6 RP not available dt 4 or 4.0.1

2022-09-12 Thread Martin Straeten
have a look at
https://kameratrollet.se/create-your-own-lens-correction-data-for-lensfun/
for some further RF lens corrections not yet available via lensfun


Am Mo., 12. Sept. 2022 um 12:36 Uhr schrieb Alex Delaforce <
123.adelafo...@gmail.com>:

> Hi,
>
> The Canon R series cameras are not listed in my darktable for lens
> correction etc. though I can  import the files and process them (apart from
> lens correction).
>
> R5 R6 etc not listed on the page
> https://www.darktable.org/resources/camera-support/
>
> R5 R6 is listed in the Base Support section of the github repository
>
> *dt version*
>
> I have darktable installed on Pop OS using the version installed from the
> OBS (opensuse.org) using the 'Add repository and install manually'
> method.
>
> My dt version was 4.0.0 and now is 4.0.1 (upgraded today through apt
> update etc.). The omission of R series cameras in the lens correction list
> has been the same in both these versions.
>
> I have had a look in the email archive but haven't found the solutions.
> Can anyone point me in the right  direction?
>
> Thanks
>
> Alex
>
>
>
>
> 
> darktable user mailing list to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] Recommended processing order

2022-08-08 Thread Martin Straeten
There’s no one size fits it all - if you need information of cropped areas 
you’d better crop late in your workflow, otherwise crop early.
For a beginner it’s ok to recommend late cropping so nothing is out of view too 
early. Hopping back and forward to adjust an improper cropping eats more 
performance than you’ll win with an early cropping. 
An experienced user usually doesn’t need to follow a beginners workflow ;)
Don’t expect a manual to describe workflows for each level of experience…

> Am 08.08.2022 um 21:26 schrieb Len Philpot :
> 
>  For what it's worth I find that cropping early on enhances my workflow. I 
> don't have a fire breathing computer, so rendering (if not analyzing?) less 
> of the image possibly (?) bumps performance just a little. But mainly, 
> getting rid of content that I know I don't want and getting the image 
> fundamentally more as I do it want it helps me perform the remaining edits 
> with a bit more clarity.
> 
> YMMV.
> 
> Len Philpot
>> On 2022-08-08 13:43, Remco Viëtor wrote:
>>> On lundi 8 août 2022 20:35:52 CEST Terry Pinfold wrote:
>>> Just looking at the DT pipeline and I see cropping is placed before filmic.
>>> For most images I doubt that cropping would have a significant effect on
>>> tone mapping, but if it is obvious that it would then do it early in the
>>> processing steps.
>> No, cropping has no effect on the tone mapping (other than that you may want 
>> to adjust the black and white reference; depending on what you cropped out).
>> 
>> So if you want, you can start your editing with cropping. Just be aware that 
>> certain other operations may require you to disable the module temporarily 
>> or 
>> force you to review your crop.
>> 
>> Remco
>> 
>> 
>> 
>> darktable user mailing list
>> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
>> 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Darktable Macbook Pro 13 Monterey

2022-08-01 Thread Martin Straeten
einfach das OS X Package von darktable.org downloaden und dann läufts.
Den Zustand des Hombrew Packages kenne ich nicht. Eine Schritt für Schritt 
Anleitung zum selbercompilieren auf Basis homebrew gibt‘s nicht. Ist für einen 
Intel mac aber auch nicht nötig, weil das durch das offizielle Package 
abgedeckt wird.

> Am 01.08.2022 um 22:42 schrieb Siegfried Keil :
> 
> Hallo Herr Martin Straeten,
> das hört sich erstmal gut an! Leider habe ich DT nicht zum Laufen gebracht!
> Vielleicht können Sie mir helfen?
> Dazu Folgendes:
> 1. Installiert mit Homebrew:
> 'brew install --cask darktable'
> 
> 2. Anschliessend:
> 'xattr -dr com.apple.quarantine /Applications/darktable.app'
> 
> 3. Doppelklick auf 'darktaple.app' tut sich erstmal nichts!
> Im '~/config' Ordner wird zwar der Ordner /darktaple angelegt aber
> nichts reingeschrieben!
> Prozess hängt sich auf!
> Vielleicht hilft die unten angehängten Informationen!?
> 
> Falls Sie mir das Selbercompilieren empfehlen, brauch ich eine Schritt
> für Schritt Anleitung, bin ich kein IT-Fachmann!
> Vielen Dank schon mal im Vorraus für die Bemühungen!
> MfG
> Siegfried Keil
> -
> Modellname:MacBook Pro
>  Modell-Identifizierung:MacBookPro12,1
>  Prozessortyp:Dual-Core Intel Core i5
>  Prozessorgeschwindigkeit:2,7 GHz
>  Anzahl der Prozessoren:1
>  Gesamtanzahl der Kerne:2
>  L2-Cache (pro Kern):256 KB
>  L3-Cache:3 MB
>  Hyper-Threading Technologie:Aktiviert
>  Speicher:8 GB
>  Systemfirmwareversion:430.140.3.0.0
>  OS-Ladeprogrammversion:540.120.3~19
>  SMC-Version (System):2.28f7
>  
> 
> Bedeutsam erscheint mir:
> Invalidating assertion 157-118-485
> (target:[app:720])
> from originator [daemon:118]
> --
> Der Rest aus der Konsole:
> standard18:48:26.808039+0200runningboarddLaunch request for
> app is using uid
> 501 (divined from auid 501 euid 501)
> standard18:48:26.808197+0200runningboarddAcquiring assertion
> targeting app
> from originator [daemon:425] with description
>  target:app
> attributes:[
> name:"LaunchRoleUserInteractive" sourceEnvironment:"(null)">
>]>
> standard18:48:26.808357+0200runningboarddAssertion 157-425-482
> (target:app)
> will be created as active
> standard18:48:26.808743+0200runningboarddExecuting launch request 
> for
> app (LS launch
> org.darktable)
> standard18:48:26.809166+0200runningboarddCreating and launching 
> job
> for: app
> standard18:48:26.809464+0200runningboardd_mutateContextIfNeeded
> called for org.darktable
> standard18:48:26.882456+0200runningboardd
> [app:720] This
> process will not be managed.
> standard18:48:26.882627+0200runningboardd
> [app:720] HOME
> is 
> standard18:48:26.882976+0200runningboardd
> [app:720] TMPDIR
> is 
> standard18:48:26.883512+0200runningboarddNow tracking process:
> [app:720]
> standard18:48:26.883840+0200runningboarddCalculated state for
> app:
> running-active (role: UserInteractive)
> standard18:48:26.883836+0200runningboarddUsing default underlying
> assertion for app:
> [app:720]
> standard18:48:26.884387+0200runningboarddAcquiring assertion
> targeting
> [app:720] from
> originator
> [app:720] with
> description  ID:157-157-483 target:720 attributes:[
> name:"defaultUnderlyingAppAssertion" sourceEnvironment:"(null)">,
>
>]>
> standard18:48:26.884926+0200runningboarddAssertion 157-157-483
> (target:[app:720])
> will be created as active
> standard18:48:26.886213+0200runningboardd
> [app:720]
> Ignoring jetsam update because this process is not memory-managed
> standard18:48:26.886260+0200runningboardd
> [app:720]
> Ignoring suspend because this process is not lifecycle managed
> standard18:48:26.886508+0200runningboardd
> [app:720] Set
> darwin role to: UserInteractive
> standard18:48:26.886884+0200runningboardd
> [app:720]
> Ignoring GPU update because this process is not GPU managed
> standard18:48:26.887480+0200runningboarddCalculated state for
> app:
> running-active (role: UserInteractive)
> standard18:48:26.892478+0200runningboarddAcquiring assertion
> targeting
> [app:720] from
> originator [daemon:118] with
> description  target:720 attributes:[
> name:"RoleUserInteractiveNonFocal" sourceEnvironment:"(null)">
>]>
> standard18:48:26.894174+0200runningboardd   

Re: [darktable-user] Darktable Macbook Pro 13 Monterey

2022-08-01 Thread Martin Straeten
darktable läuft auf Monterey - bei M1 Prozessor allerdings über Rosetta.
Für selbercompilierer ist auch eine native M1 Version möglich.

> Am 01.08.2022 um 19:54 schrieb Siegfried Keil :
> 
> Hallo darktable-user-List,
> möchte mich mit Fragen vorstellen:
> Spricht hier jemand Deutsch? Und haben Mac-User Darktable auf einem
> Macbook Pro 13 Monterey am Laufen? Für Tipps und Hinweise bin ich sehr
> Dankbar!
> MfG
> Siegfried Keil
> --
> Deepl-Übersetzer:
> Hello darktable-user-list,
> would like to introduce myself with questions:
> Does anyone here speak German? And do any Mac users have Darktable
> running on a Macbook Pro 13 Monterey? I am very grateful for tips and hints!
> With best regards
> Siegfried Keil
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Fwd: Just installed 4.0

2022-07-13 Thread Martin Straeten
That depends on the time needed to fix the build stuff upstream and then the 
time needed to test the result before and after it’s merged.
Don’t forget, the build stuff must be fine for a whole bunch of Linux derivates 
+ win + OS X ;)

> Am 13.07.2022 um 04:31 schrieb Terry Pinfold :
> 
> 
> Hi Martin,
>  when would you expect the libraw update to be applied? I am hoping it 
> will appear in one of the weekly builds soon as this would be a major problem 
> for owners of CR3 file images. 
> 
> thanks
> 
>> On Tue, 12 Jul 2022 at 16:20, Martin Straeten  
>> wrote:
>> R3 support requires a libraw update which isn’t merged yet: 
>> https://github.com/darktable-org/darktable/pull/12124
>> 
>>>> Am 11.07.2022 um 05:42 schrieb Michael :
>>>> 
>>> 
>>> Is=Linux 
>>> 
>>>> On Sun, Jul 10, 2022 at 8:17 PM Terry Pinfold  wrote:
>>>> Hi Mike,
>>>>   my experience updating was seamless. Check that the collections 
>>>> filters option is not hiding the images. You may also need to let people 
>>>> know your OS to be able to help more. 
>>>> 
>>>>> On Mon, 11 Jul 2022 at 07:13, Michael  wrote:
>>>> 
>>>>> 
>>>>> 
>>>>> I selected to update the dAtabase but none of my pictures from 3.8 are 
>>>>> visible in the lighttable view. What's going on?
>>>>> 
>>>>> 
>>>>> -- 
>>>>> :-)~MIKE~(-:
>>>>> 
>>>> 
>>>>> 
>>>>>  darktable user mailing list to unsubscribe send a mail to 
>>>>> darktable-user+unsubscr...@lists.darktable.org 
>>>> 
>>>> 
>>>> -- 
>>>> Terry Pinfold
>>>> Photography & Imaging Tutor
>>>> Hobart, Tasmania, Australia
>>>> Ph 0408 699053
>>>> 
>>>> 
>>> -- 
>>> :-)~MIKE~(-:
>>> 
>>> 
>>>  darktable user mailing list to unsubscribe send a mail to 
>>> darktable-user+unsubscr...@lists.darktable.org 
>>> =
>> 
>>  
>> darktable user mailing list to unsubscribe send a mail to 
>> darktable-user+unsubscr...@lists.darktable.org 
> 
> 
> --
> 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Fwd: Just installed 4.0

2022-07-12 Thread Martin Straeten
R3 support requires a libraw update which isn’t merged yet: 
https://github.com/darktable-org/darktable/pull/12124

> Am 11.07.2022 um 05:42 schrieb Michael :
> 
> 
> Is=Linux 
> 
>> On Sun, Jul 10, 2022 at 8:17 PM Terry Pinfold  wrote:
>> Hi Mike,
>>   my experience updating was seamless. Check that the collections 
>> filters option is not hiding the images. You may also need to let people 
>> know your OS to be able to help more. 
>> 
>>> On Mon, 11 Jul 2022 at 07:13, Michael  wrote:
>> 
>>> 
>>> 
>>> I selected to update the dAtabase but none of my pictures from 3.8 are 
>>> visible in the lighttable view. What's going on?
>>> 
>>> 
>>> -- 
>>> :-)~MIKE~(-:
>>> 
>> 
>>> 
>>>  darktable user mailing list to unsubscribe send a mail to 
>>> darktable-user+unsubscr...@lists.darktable.org 
>> 
>> 
>> -- 
>> Terry Pinfold
>> Photography & Imaging Tutor
>> Hobart, Tasmania, Australia
>> Ph 0408 699053
>> 
>> 
> -- 
> :-)~MIKE~(-:
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Marketable 4.0 OpenCL on M1 MacBook air

2022-07-02 Thread Martin Straeten
in 4.0 opencl is enabled if the gpu significantly faster the the cpu. The 
calculation might not be valid for M1. So you need to enable OpenCl yourself in 
preferences dialog.
Since no developer is using a OS X based system they need as much infos as 
possible. Maybe you can file an issue at 
https://github.com/darktable-org/darktable/issues/new?assignees===bug_report.md=
and provide output of darktable-cltest (run from terminal) or darktable -d 
opencl to help them understand what’s exactly happening.

> Am 03.07.2022 um 00:46 schrieb Jimmy Gowrisanker :
> 
> Hello Darktable Team: 
> Thank you for releasing yet another awesome version!
> In darktable 3.8, on M1 MacBook Air, OpenCL used to work great on MacBook Air 
> M1
> With 4.0, OpenCl in not longer activated. How do I activate it? Thanks.
> Jimmy
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] homogeneous exposure of different photos

2022-05-14 Thread Martin Straeten
you‘ll need to wait for upcoming dt4.0 summer release.
There’s an option to set exposure to match a target exposure taken from another 
image

> Am 14.05.2022 um 02:00 schrieb Germano Massullo :
> 
> I have shoot various photos that concerns the same "theme", but on different 
> light conditions and I would like to ask if you have some suggestions or 
> guides I can use to retouch them and have an homogeneous exposure. Manually 
> adjusting the exposure of all them would result in a poor outcome, instead a 
> more "scientific" approach could ensure much better results.
> Thank you
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Permanently moving a preset diffuse or sharpen module before input color profile in the pixelpipe

2022-04-30 Thread Martin Straeten
You can save the changed module order as a custom preset and define this to be 
used as default.


> Am 30.04.2022 um 14:40 schrieb Victor :
> 
> 
> Under ubuntu 20.04 I happily use darktable 3.8.1 - scene referred to develop 
> the  raw files of my sony a6600.
> 
> I created a preset diffuse or sharpen module for sharpening sensor 
> demosaicing to be applied by default to any raw image.
> 
> My problem is that according to the manual:
> 
> '
> recover the original image from sensors with an anti-aliasing filter or 
> mitigate the blur created by most demosaicing
> algorithms (use the sharpen sensor demosaicing preset and move the module 
> before the input color profile module in
> the pipeline),.'
> 
> I do this operation manually moving the diffuse or sharpen module before the 
> input color profile module in the pixelpipe on each image. Very time 
> consuming indeed!!!
> 
> Is there any way to move the diffuse or sharpen module automagically in the 
> pixelpipe before the input color profile?
> 
> Ciao
> 
> Vittorio
> 
> 
> 
> 
> 
> 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Reinstall of module presets

2022-04-30 Thread Martin Straeten
You can export all presets from preferences dialog if you want to have a clean 
install, or simply reuse your data.db - it’s not system specific.

> Am 30.04.2022 um 20:01 schrieb David Vincent-Jones :
> 
> 
> In a fresh build I have copied over the /.config/dartable backup files over 
> to the new system but I am not seeing any of my module presets. Is there 
> something that I am missing?
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Looking for easier way

2022-04-21 Thread Martin Straeten
You need to switch from and to date ;)
see https://github.com/darktable-org/darktable/issues/8047

> Am 22.04.2022 um 06:11 schrieb Niranjan Rao :
> 
>> On 4/20/22 20:56, Bruce Williams wrote:
>> n the Collections module, select Date Taken, and then use this format:
>> [:MM:DD;:MM:DD]
> Unfortunately it did not work, I tried a simple pattern like following with 
> and without rectangular brackets. I have photos on both dates. If I remove 
> ";" onwords or entry before it, corresponding dates do show up.
> 
> 2022:03:07;22-03-08
> 
> What am I doing wrong?


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Looking for easier way

2022-04-20 Thread Martin Straeten
filtering will be easier with upcoming 4.0. the changes are already merged in 
current master. 


> Am 21.04.2022 um 04:45 schrieb Niranjan Rao :
> 
> On darktable 3.8.1 Ubuntu 20.04
> 
> 
> I am looking for easier or faster way to select images based on date range. 
> Collections does allow me to add or remove the images for dates but selecting 
> images for say couple of weeks when you have photos taken almost every day in 
> month means selecting 14 different dates manually and every time choosing 
> date filter, year, month and then desired date.
> 
> I vaguely remember using date range somewhere in darktable. Am I mistaken and 
> getting confused about some other tool? If so, is there any other way to 
> filter images taken in a certain date range? It can potentially span across 
> month and/or year.
> 
> 
> Basic goal is to tag the images taken in certain weeks.
> 
> 
> Regards,
> 
> 
> Niranjan
> 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Life cycle of darktable tag data (in Windows)

2022-04-06 Thread Martin Straeten
since darktable doesn't change the original file tags and metadata are just
in the database or - if enabled - in the sidecar xmp files written in the
same folder as the original files.

Am Mi., 6. Apr. 2022 um 10:04 Uhr schrieb tony Hamilton <
shaky.st...@ntlworld.com>:

> If an image is removed from the dt catalog in the windows version, is
> the tag and metadata, which had been applied to the image, automatically
> lost? Or is it still available in some way such that if the image is
> added back into the catalog, that tag and metadata will be re-associated
> with the image?
>
> As a secondary question, where is this data held, in the Windows version?
>
> 
> darktable user mailing list
> to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] Recovering xmp data from Exported jpg files

2022-03-20 Thread Martin Straeten
Have a look at 
https://docs.darktable.org/usermanual/3.8/en/module-reference/utility-modules/lighttable/history-stack/
 section load sidecar file
If you embedded the history stack into your exported jpg (you need to check the 
option explicitly) then you can use the the exported jpg like an xmp file to 
apply the embedded history stack and shapes to a raw file.

If you’re doing frequent backups you can go back to an older state of 
library.db and export then sidecar files of the affected setback images and 
then after switching back to the recent library.db you can let darktable check 
for updated Xmas (preferences-storage-look for updated xmp files on startup

Good luck

> Am 20.03.2022 um 00:22 schrieb Andrew Greig :
> 
> 
> Hi All,
> 
> I have read the manual on xmp files, and scrolled through the emails around 
> my issues of over-written xmp files. But I have not found a clear process to 
> follow. Last night after exporting a set of 259 images at full -size jpg I 
> added a watermark using the selective copy and paste but when I looked at the 
> results of copying a single image with a watermark added, the resulting 258 
> images went dark (back to an out of camera condition). I had this happen 
> before and I checked the "Overwrite" and "Append" switches and found that 
> somehow it had changed from Append to Overwrite.  Prior to my former 
> disaster, through several versions of Darktable I had never altered the 
> Append to Overwrite, never given it a thought. But now, twice in a couple of 
> months something, maybe a power failure overnight , has seen DT choose 
> "Overwrite". So when selecting just the watermark to copy to the 258 files, 
> with the setting at "overwrite" everything els has been zeroed and the 
> watermark remains. I hate that overwrite button, can't imagine who would use 
> it, maybe we could lose it . But I digress.
> 
> I have been told that I can recover the xmp files from my exported (and 
> correct) jpgs. So I need to discover the process. I  imagine that I would 
> need to load my jpg files into Darktable instead of my RAW files with their 
> ovewritten xmp files. But what is next, please?
> 
> -- 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



[darktable-user] Re: [darktable-dev] The perspective correction module is not working correctly

2022-02-16 Thread Martin Straeten
there’s a parameter ‚aspect adjust‘ you can use to control the behaviour 

> Am 16.02.2022 um 21:41 schrieb Lorenzo Fontanella 
> :
> 
> 
> Good morning, 
> I would like to point out that the perspective correction module, in the 
> automatic version, does not seem to work correctly.
> 
> In previous versions of DT >3.8, the module worked, but now it corrects the 
> perspective but stretches it.
> 
> Lorenzo Fontanella
> 
> ___ 
> darktable developer mailing list to unsubscribe send a mail to 
> darktable-dev+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Strange behaviour on Import and Add to Library

2022-02-09 Thread Martin Straeten
That’s a side effect of the thumbnail cache. You can update the cache by 
running darktable-generate-cache from terminal


> Am 10.02.2022 um 07:13 schrieb Andrew Greig :
> 
> 
> Hi All, 
> 
> Ever since 3.8, when Importing from my working directory, as the light-table 
> loads the thumbnails, I find previous images, some going years back, 
> populating some of the thumbnail slots.When I try to select one of these 
> images the light-table goes crazy. I wish I had video recording skills to 
> capture this unusual occurrence. Any ideas, please, oh and it is about fiteen 
> minutes before I can get a coherent set of images (around 200 usually) 
> 
> 
> Andrew Greig 
> 
> Melbourne Australia 
> 
> -- 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Tokina lens not detected

2022-02-07 Thread Martin Straeten
Try exiv2 -pa --grep lens/i with your image file
Then you should see the custom defined LensType value

> Am 07.02.2022 um 19:06 schrieb Ludger Bolmerg :
> 
> 
>> 
>> 
>>> On 2/7/22 18:37, Remco Viëtor wrote:
>>> As you are using a third-party lens, the information available to lensfun
>>> might cover several lenses. As your lens is in the database, you can use the
>>> drop-down menu in the lens correction module to manually select the lens, or
>>> create a .exiv2 file in your home directory linking the lens ID to the lens
>>> (look on the web for details on how to do that)
>>> 
>> For some strange reason I don't see the lens in the drop-down menu.
>> So will have to figure out how .exiv2 file option works
> 
> I am still struggling.
> This is my .exiv2 file:
> 
> [tokina]
> 139=Tokina AF 11-20mm f/2.8 AT-X Pro DX
> 
> and here is what I get from exiv2 and exiftool
> 
> % exiv2 -pt DSC_4593.NEF | grep Lens
> Exif.Nikon3.LensType Byte1  D G
> Exif.Nikon3.Lens Rational4 11-20mm F2.8
> Exif.Nikon3.LensFStops   Undefined   4  6
> Exif.NikonLd3.LensIDNumber   Byte1  139
> Exif.NikonLd3.LensFStops Byte1  F6.0
> 
> % exiftool DSC_4593.NEF | grep Lens
> Lens Type   : G
> Lens: 11-20mm f/2.8
> Lens Data Version   : 0204
> Lens ID Number  : 139
> Lens F Stops: 6.00
> Lens ID : Unknown (8B 48 1C 30 24 24 85 06)
> Lens Spec   : 11-20mm f/2.8 G
> 
> Can somebody confirm if the entry in .exiv2 is correct?
> 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Rating on import not working dt 3.8.0

2022-01-22 Thread Martin Straeten
Have a look at your import settings. You need to check ‚Ignore exif rating‘ 
since no explicit rating is coded as 0 in canon exif files.

see 
https://docs.darktable.org/usermanual/3.8/en/module-reference/utility-modules/lighttable/import/#module-parameters


> Am 23.01.2022 um 04:14 schrieb Alex Delaforce <123.adelafo...@gmail.com>:
> 
> 
> Hello All,
> I'm on
> dt 3.8.0 
> Linux - EndeavourOS (Arch)
> 
> Trying to import .CR3 files from a Canon R5 by using the 'add to library' 
> function and 'initial rating' set to either 1 or 2
> Images are imported and XMP is created - initial rating does not work.
> 
> Rating remains at '0' as seen through the dt lighttable interface and my 
> reading the XMP file. Other metadata is being written to the XMP file such as 
> creator, publisher etc
> 
> I checked the lists and found a similar issue which was reported in version 
> 3.4 on Debian ...
> https://www.mail-archive.com/darktable-user@lists.darktable.org/msg10520.html
> This mail list entry only had one comment which referred to this bug ...
> https://github.com/darktable-org/darktable/issues/6904
> 
> This was closed citing the new import panel rework.
> 
> Initially I thought the import wasn't working as my lighttable view was 
> selected as 'view >= 1' but the problem is that the ratings were all 0.
> 
> Problem isn't stopping me from using dt but it obviously isn't correct - at 
> least on my machine.
> 
> Thanks
> Alex
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Broken images after upgrade to 3.8.0

2021-12-31 Thread Martin Straeten
darktable will be able to edit these files if they ever were supported ;)

> Am 31.12.2021 um 20:06 schrieb Chris Albertson :
> 
> 
> This is a general note, something for developers and photographers to 
> consider...
> 
> What will be the fate of digital images stored in any non-destructive RAW 
> image database like Darktable or even the old Apple Aperture or Adobe 
> Lightroom?  When my grandmother passed away we found 100+ year old photos in 
> her house.There is no way on earth any software will support the RAW file 
> format of 100-year-old cameras.  When my yet-to-be-born grandkids sort 
> through my house, my old Nikon NEF files will be useless and unreadable 
> because no then-current software will know how to decode files from my 
> late-20th century Nikon dSLR.Someplace I still have documents archived in 
> MS-DOS Wordstar format, kind of the same issue,
> 
> basically, the plan of keeping images in a camera-specific raw format is 
> doomed. It is not if the plan will fail but only a matter of time.
> 
> The solution is easy, convert to DMG format or even TIFF.   Today it is in 
> theory possible to support most obsolete cameras but this will get harder in 
> years to come and impossible to 20 or 50 years.   This post below about the 
> old camera photos is the tip of a big iceberg that is coming.
> 
> Testing and a large library of obsolete files is a way to slow the process 
> but is unsustainable over a decades-long timescale.
> 
> 
> 
> 
> 
>> On Thu, Dec 30, 2021 at 6:25 PM Niranjan Rao  wrote:
>> On ubuntu 20.04.3, darktable 3.8.0
>> 
>> 
>> I upgraded day before yesterday and discovered that support for 
>> Panasonic Lumix seems to be broken. These are old images and have been 
>> sitting in database through various version upgrades. Now when I try to 
>> open a file with extension RW2 (Model as reported by lighttable image 
>> information is DMC-G2, darkroom is not able to open it. Lightroom shows 
>> me the error message about please check if camera model that produced 
>> image is supported
>> 
>> 
>> Images were already supported as they are tagged in my database and 
>> showed up in the search based on tags. I've not seen this problem for 
>> any other images I have.
>> 
>> 
>> What broke and more importantly how should I fix it? I don't mind 
>> getting my hands dirty on terminal or writing shellscripts or fooling 
>> around command line parameters if that's going to help to debug the issue.
>> 
>> 
>> Happy to provide the sample if needed at sharable location.
>> 
>> 
>> Regards,
>> 
>> 
>> Niranjan
>> 
>> 
>> darktable user mailing list
>> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
>> 
> 
> 
> -- 
> 
> Chris Albertson
> Redondo Beach, California
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] New crop module

2021-12-28 Thread Martin Straeten
that magic key is patience - click-breath-drag
might be similar to https://github.com/darktable-org/darktable/issues/7713


> Am 28.12.2021 um 02:31 schrieb Bruce Williams :
> 
> 
> Hi all,
> Just sitting down to record some "New features" video content, and am 
> struggling with the new crop module.
> Sometimes, I open the module, mouse over the borders of the cropped area, and 
> I can click/drag to resize the crop. And it works as it should.
> But other times, I'll do the exact same thing, and the cropped area refuses 
> to resize, it simply gets dragged around.
> Is there some mystical keystroke I'm unaware of, or is this a bug?
> Cheers,
> Bruce Williams
> --
> Shutters Inc podcast, the world's best-loved photography podcast
> 
> Understanding darktable on youtube
> 
> e-mail | Twitter | LinkedIn | Facebook | Soundcloud | Quora
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



[darktable-user] Re: darktable: physisch vs. physikalisch

2021-12-12 Thread Martin Straeten
Hallo Bernhard,
Danke für das Feedback.
Beim nachdenken über eine angemessene Übersetzung von „blurs“ tendiere ich dazu 
das physische komplett wegzulassen und das Modul lediglich als „Unschärfe“ zu 
benennen - das erscheint mir passender als Weichzeichnen.
Die Parameter werden dann auch zu Unschärferadius, und „blur type“ wird zur 
"Art der Unschärfe"

Konsequenterweise dann auch Diffusion/Schärfen in Diffusion / Schärfe

Ok so?

Viele Grüße,
Martin


> Am 12.12.2021 um 14:51 schrieb Bernhard :
> 
> Hallo Martin,
> 
> ich arbeite gerade an der Übersetzung des Artikels für das 
> Weihnachts-Release. Da schaue ich mir immer alle Bezeichnungen in 
> darktable/im jeweiligen Modul an, um konsistent zu sein.
> Bei dem neuen Blurs-Modul ist mir eine Unstimmigkeit aufgefallen:
> 
> Der Modul-Titel heißt "Physisches Weichzeichnen" (damit bin ich nicht 
> wirklich einverstanden), im Tooltip steht dann "simuliert *physikalisch* 
> korrekte ..."
> 
> Nach meinem Verständnis wäre im Titel ebenfalls das Wort *Physikalisch* 
> korrekt, denn es geht ja in der Tat um Physik - im Gegensatz zu "physisch" = 
> "körperlich", wenn es an anderer Stelle z. B. um verschieben oder löschen von 
> Dateien etc. geht.
> 
> Was meinst Du?
> 
> -- 
> 
> regards
> Bernhard
> 
> https://www.bilddateien.de
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Retouch opacity

2021-12-08 Thread Martin Straeten
instead of deleting darktablerc you can edit it and change the opacity setting 
for retouch there

> Am 08.12.2021 um 19:15 schrieb I. Ivanov :
> 
> 
>> On 12/7/21 21:59, Andrew Greig wrote:
>>> On 8/12/21 10:32 am, I. Ivanov wrote:
>>> 
>>> On 12/7/21 13:44, Andrew Greig wrote:
 How do I set the retouch opacity to default to 100% please?
>>> Does it not remember what is last? If I am to change the opacity *before 
>>> starting the retouching* - it keeps for me what I have selected.
>>> 
>>>  
>>> darktable user mailing list
>>> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
>>> 
>> Hi,
>> 
>> It does remember what was last used except that when I had dropped the 
>> opacity for a single use it seems to set that as a new starting point. So 
>> when I have restored my need for 100% opacity and finished on 100%, my next 
>> use will stat at 30% and then I have to scroll up to 100%.
>> 
> Hi Andrew,
> 
> For me it appears to stick to whatever I set it.
> 
> - If I start retouching (at any opacity - say 90) and after that I change the 
> opacity of the existing shape to 100 - the next retouch will use the 90 as a 
> starting point (because this is what I started with) but
> 
> - If I first set the opacity (say 100) then each shape I make will be at the 
> chosen opacity. This also appears to persist between images, between restart 
> of DT and also between different tools - the opacity set in retouch will 
> persist in other modules (for example haze removal). Vice versa is also true 
> - opacity set in another module will carry forward to retouch.
> 
> I am not sure if there is some specifics to os / version etc. but just FYI - 
> I am on pop OS 20.04, DT 3.6.1
> 
> It is good that the suggestion from Patrick helps you. But unless there is 
> something apparent like version, OS etc - I don't know why would it behave 
> different.
> 
> Sometimes I try backing up (renaming) ~/.config/darktable in order to start 
> afresh (for a test) but what it would tell me is if there is something that 
> exists in the config files that triggers the behavior or not. But this would 
> be mainly to satisfy the curiosity.
> 
> Regards,
> 
> B
> 
>> 
>> Andrew
>> 
>>  
>> darktable user mailing list
>> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
>> 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Filmic .. Auto-Tune

2021-12-04 Thread Martin Straeten
no need to use styles; a custom pipeline order can also be defined as a preset.
See manual 
https://docs.darktable.org/usermanual/3.6/darkroom/pixelpipe/the-pixelpipe-and-module-order/#changing-module-order:

The module order can be manually changed back to either the v3.0 or legacy 
versions using the module ordermodule, which can also be used to define your 
own custom module order presets.


> Am 04.12.2021 um 03:56 schrieb Terry Pinfold :
> 
> 
> Hi David,
>   while I feel great caution and understanding should be used before 
> reordering modules, I agree that it would be nice to have the option to 
> customise this to suit one's workflow and lock in the change. But one option 
> I just discovered is to reorder the modules in the order I want and save it 
> as a custom preset. This would be an easy solution when you open each new 
> image. However, this gives a couple more extra clicks that you may prefer to 
> avoid. But look on the bright side. In Darktable we can reorder and set the 
> order of the modules. Few programs give that flexibility. Maybe a kind 
> developer could put in the DT preferences section an option to order the 
> modules with a default recommended pre-set or custom values. 
> 
>  
> From: David Vincent-Jones 
> Sent: Friday, 3 December 2021 1:47 PM
> To: darktable-user@lists.darktable.org 
> Subject: Re: [darktable-user] Filmic .. Auto-Tune
>  
> Hi Jack
> 
> Once I move CE to follow filmic then filmic acts normally 
> 
> Unfortunately it is a pain to have to move it every time that it is used, 
> almost easier to simply not use it. It would be nice if moving in the first 
> tab had a way of permanently changing its position going forward.
> 
> David
> 
>> On 2021-12-02 15:11, Jack Bowling wrote:
>> Have you tried to move CE before/after Filmic to see if it makes a 
>> difference? Ctrl-Shift-drag lets you move modules in the first tab. Some key 
>> modules such as WB cannot be moved, however. 
>> 
>> Jack 
>> 
>> On 2021-12-02 12:16, Terry Pinfold wrote: 
>> 
>>> Hi David, 
>>>thanks for pointing this issue out. I have only run into your 
>>> described issue because of noise, but after reading your reply about the 
>>> placement of contrast equalizer in the pipeline I see what you mean. I hope 
>>> Aurelian or another developer picks up on this issue and consider the best 
>>> placement in the pipeline. I guess in the meantime deactivating the CE 
>>> module while adjusting filmic may help you. 
>>> 
>>> cheers 
>>> 
>>> On Wed, 1 Dec 2021 at 10:03, David Vincent-Jones  
>>> wrote: 
>>> 
>>> dt .. 3.7.0+1592~g30e678a45e Arch/Manjaro/XFCE 
>>> 
>>> I am finding that when I initially use the Filmic-RGB auto -tune 
>>> function that my black slider is almost always pushed to the 
>>> extreme left hand side while the white slider is positioned fairly 
>>> correctly. 
>>> 
>>> This does not appear to be due to poor exposure. Even if I adjust 
>>> the exposure  even more accurately the slider still goes hard to 
>>> the left. 
>>> 
>>> Any ideas? 
>>> 
>>> 
>>> 
>>> 
>>> darktable user mailing list to unsubscribe send a mail to 
>>> darktable-user+unsubscr...@lists.darktable.org 
>>>  
>>> 
>>> 
>>> 
>>> -- 
>>> 
>>> 
>>> 
>>> 
>>>  darktable user mailing list to unsubscribe send a mail to 
>>> darktable-user+unsubscr...@lists.darktable.org 
>>  
>> darktable user mailing list 
>> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> 
> 
> This email is confidential, and is for the intended recipient only. Access, 
> disclosure, copying, distribution, or reliance on any of it by anyone outside 
> the intended recipient organisation is prohibited and may be a criminal 
> offence. Please delete if obtained in error and email confirmation to the 
> sender. The views expressed in this email are not necessarily the views of 
> the University of Tasmania, unless clearly intended otherwise.
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] The new import process

2021-12-03 Thread Martin Straeten
if you’re on linux or osx then there’s a tool to get rid of orphan imported 
images in the database:
darktable/tools/purge_non_existing_images.sh


> Am 04.12.2021 um 03:44 schrieb Andrew Greig :
> 
> 
> Thanks for your response Terry,
> Because of my particular handling of my data, I have to wade through a long 
> list of strikeouts to find a collection.  Maybe a resync button would be 
> effective, at least the list would always be clean. Then again, I expect that 
> most people do not move their data around.
> Andrew
> 
> 
> 
> 
> On 4/12/21 1:34 pm, Terry Pinfold wrote:
>> Hi Andrew,
>>   I understand your concern. The way to delete these collections you no 
>> longer want is to go to the collection and select all the images which will 
>> possibly appear as a skull. Then use the option to remove all the photos, 
>> which will not delete the images from your computer. The trash function is 
>> capable of deleting the images from your hard drive but not the remove 
>> function which only removes them from the collection. When the collection is 
>> empty it will then disappear. Very simple once you get use to the way it 
>> works. 
>> 
>> 
>> From: Andrew Greig 
>> Sent: Saturday, 4 December 2021 9:47 AM
>> To: darktable-user 
>> Subject: [darktable-user] The new import process
>>  
>> Hi all,
>> 
>> I really preferred the import process in DT 3.4, maybe it is just my 
>> workflow that needs a change.
>> 
>> After any use of my camera I upload the images to my computer as soon as 
>> possible, to my Working folder on a solid state drive for speed. After I 
>> have finished processing all of my images I Export images to my Google Drive 
>> and, having done that I move the RAW files to storage on my RAID drive.  And 
>> then, the next time I want to access a folder of RAW images I have to 
>> navigate to my RAID drive and import them again, which I expect to do.
>> 
>> What I have found out today is that I have a lot of collections with lines 
>> like an editing "strike out" so I thought that I would see if I could remove 
>> one, and then I received a warning dialogue, asking me if I wanted to remove 
>> the collection from DT and fully delete them from the computer, or not. The 
>> whole thing felt fraught with danger. Obviously I elected not to delete from 
>> the computer, but because my  RAW files were now in a different place I 
>> guess that DT would have no idea where they were to delete in any case.
>> 
>> Also I miss the file manager search field in DT, it was so easy to find all 
>> the shoots with a model very quickly. My subjective view is that DT file 
>> management is not as friendly as it was.
>> -- 
>> 
>> 
>>  
>> darktable user mailing list to unsubscribe send a mail to 
>> darktable-user+unsubscr...@lists.darktable.org 
>> 
>> 
>> This email is confidential, and is for the intended recipient only. Access, 
>> disclosure, copying, distribution, or reliance on any of it by anyone 
>> outside the intended recipient organisation is prohibited and may be a 
>> criminal offence. Please delete if obtained in error and email confirmation 
>> to the sender. The views expressed in this email are not necessarily the 
>> views of the University of Tasmania, unless clearly intended otherwise.
>> 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] DT 3.6.1 Lens correction module does not recognize my sony a6600 camera any longer

2021-11-25 Thread Martin Straeten
you need to update your lensfun database: lensfun-update-data

Am Do., 25. Nov. 2021 um 11:41 Uhr schrieb Victor :

> On my very old macbook I had installed ubuntu 21.04 and darktable 3.6.1
> built from sources. It always worked like a charm!
>
> Now I have a new msi notebook with a 4GB memory nvidia on which - to be
> on the safe side -  I installed ubuntu 20.04 LTS and as usual rebuilt
> from sources DT 3.6.1 (after having installed all the dependencies
> according to the standard procedure and after having copied the DT 3.6.1
> tarball from the old notebook to the new one).  Fantastic!!! BUT..
>
> The module lens correction in the new notebook does not pick my sony alpha
> 6600 but  the lens only, and above all my camera is no longer listed in the
> module among sony cameras which go from sony a3000 to sony a6000 only
> whilst in the old notebook the newer a6100, a6300, a6500, and finally a6600
> are included in the same list.
>
> I'm really puzzled! How is that possible?
>
> Could you please help me?
>
> Ciao from Rome
>
> Vittorio
>
>
>
>
>
> 
> darktable user mailing list to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

[darktable-user] Re: [darktable-dev] CR3 support integrated

2021-11-15 Thread Martin Straeten
additionally: you need an exiv2 > 0.27.4 built with BMFF support (at least for 
0.27.4 it’s by default without BMFF support)
mingw64 package has BMFF support built in
macports doesn‘t, but the portfile can be patched.


> Am 15.11.2021 um 23:22 schrieb Pascal Obry :
> 
> 
> Hi Bernhard,
> 
>> Thanks, I tried this with an image from raw.pixls.us but the file is
>> not 
>> shown in the import dialog (it is shown when I rename it to .CR2
>> though)
> 
> You also need a recent exiv2 version, minimum is 0.27.4. I have tested
> with 0.27.5.
> 
> Cheers,
> 
> -- 
>   Pascal Obry /  Magny Les Hameaux (78)
> 
>   The best way to travel is by means of imagination
> 
>   http://www.obry.net
> 
>   gpg --keyserver keys.gnupg.net --recv-key F949BD3B
> ___
> darktable developer mailing list
> to unsubscribe send a mail to darktable-dev+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] sharpening with "deep sky" methods?

2021-11-12 Thread Martin Straeten
If you have a description what exactly the procedure does (no marketing stuff, 
technical details, algorithms) someone might try to do so. 
But in meantime you can have a look at 
https://darktable-org.github.io/dtdocs/en/module-reference/processing-modules/diffuse/
 a new sharpening module in the next release


> Am 12.11.2021 um 09:26 schrieb Dr. A. Krebs :
> 
> Dear all:
> 
> I just came across a potentially new sharpening procedure on "Profifoto"
> magazine: 
> 
>  .
> 
> (in German language)
> 
> According, it is transferred into a PS plugin.
> 
> Maybe it is possible to adapt it for darktable?
> 
> 
> Axel
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Module Menu Layout

2021-11-12 Thread Martin Straeten
you can export the layout as a preset via preferences dialog and import
this on the second computer - so no need to dig into sqlite

Am Fr., 12. Nov. 2021 um 00:28 Uhr schrieb David Vincent-Jones <
david...@gmail.com>:

> I am trying to ensure that 2 computers have the same customized module
> menu layouts .. I do not see this layout reflected in the darktablerc
> listing  am I missing something?
>
> David
>
> 
> darktable user mailing list to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] Lighttable View black thumbnails

2021-09-16 Thread Martin Straeten
Seems it runs our of video memory


> Am 16.09.2021 um 15:01 schrieb Peter Schlaufer :
> 
> ear All 
> 
> I recently get all or partly black Thumbnail Pictures in the light-table view:
> 
> 
> 
> I am on an MacOs with certainly enough resources. It is annoying as soon as I 
> open the pictures in the darkroom  or when I wait for hours,  I can see them 
> without restrictions. I am not that skilled, that I can find the reason for 
> it. Any help will be much appreciated.
> 
> Kind regards
> Peter Schlaufer
> Landenbergstrasse 19
> CH-6005 Luzern
> pe...@schlaufer.ch
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] No way to select only unmodified images in 3.7.0?

2021-08-06 Thread Martin Straeten
you can select these by adding a further filter rule in collections based
on tagging: except tag darktable|changed

Am Do., 5. Aug. 2021 um 18:27 Uhr schrieb Joerg Lippmann :

> Hi!
>
> I have a collection with only a handful of modified images (tagged with
> the +/- Yin-Yang-icon in the top right.
>
> Yet there seems to be no button to select only these images for exporting
> them. "Select untouched" and then "invert selection" selects way more
> images than those without the modified-icon. What am I missing?
>
> --
> Jörg
>
> 
> darktable user mailing list to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] 3.6 not showing images after import

2021-07-20 Thread Martin Straeten
you may check the import preferences. By default the rating is taken from
camera exif - and some cameras codes no rating as 0. Since the initial
rating filter is set to >=1 the imported images arent displayed.
to exclude an general import error you might change the rating filter to
all to chech if something was imported.

Am Di., 20. Juli 2021 um 09:37 Uhr schrieb Marc Cabuy :

> Hello Terry,
> I am not yet on 3.6 bit would suggest you retry uninstalling using an
> uninstaller tool for windows. I am using the free version of 'Any
> Uninstaller' since years. It cleans deeper than a standard uninstall.
> Marc.
>
> Op di 20 jul. 2021 09:23 schreef Terry Pinfold :
>
>> Hi All,
>>  I am currently teaching some students how to use DT. One student has
>> a windows computer and has installed DT3.6 and when she adds images to the
>> library the process seems to work except at the end there are no images to
>> see. Previously she had 3.4 loaded and working fine. This problem is only
>> with 3.6 and only on her computer. I have a Windows computer and it works
>> fine for me. I am reasonably experienced using DT on the Windows platform
>> and can see no obvious reason it is not working on her computer. I can see
>> no filters applied in the collections module and it is set to view all in
>> the Lighttable view. We uninstalled DT, deleted the database through the
>> file explorer and reinstalled DT. Same problem occurred. I am at a total
>> loss. DT 3.6 is working fine on everyone's computer except hers. She had DT
>> 3.4 until the recent release and it worked fine , but since the new release
>> DT 3.6 was installed and will not work. Any help or suggestions would be
>> appreciated.
>>
>>
>> --
>>
>>
>> 
>> darktable user mailing list to unsubscribe send a mail to
>> darktable-user+unsubscr...@lists.darktable.org
>>
>
> 
> darktable user mailing list to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] Importing / Exporting photos in darktable 3.6

2021-07-05 Thread Martin Straeten
The import is described in the manual: 
https://www.darktable.org/usermanual/3.6/en/module-reference/utility-modules/lighttable/import/
which part do you need to be explained more detailed?

> Am 06.07.2021 um 03:53 schrieb NEIL K <01myphoto...@gmail.com>:
> 
> 
> Hi All, 
> Sorry, may sound basic but I am at a loss to import images and move to 
> darktable  for editing in 3.6 version. Please advise. Thanks
> 
> Neil
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Will the next release of darktable support CR3 files?

2021-04-29 Thread Martin Straeten
Why would that be a shame? There’s nothing in darktable coded by itself.  It 
will be available if it’s coded by someone in his spare time. Why blaming 
someone to spend his lifetime not for fulfilling your demands?
grass doesn’t grow faster if you pull on it …


> Am 30.04.2021 um 02:25 schrieb Terry Pinfold :
> 
> 
> I am just wondering if there is any confirmation on CR3 file support in 
> DT3.0. It would be such a shame if this support is not available. I have read 
> the online discussions about the issue and hope a resolution has been found. 
> 
> -- 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] What's happening here?!

2021-04-22 Thread Martin Straeten
That’s works as designed. The triangle indicates the overlaid snapshot.
Simply click a second time on the snapshot so it’s not highlighted to 
deactivate.
And have a look in the manual to get, how to use snapshots …
https://darktable-org.github.io/dtdocs/module-reference/utility-modules/darkroom/snapshots/


> Am 22.04.2021 um 21:14 schrieb Hieke van Hoogdalem 
> :
> 
> Hi there,
> 
> I was playing around with snapshots (I don't get it yet) and suddenly this 
> kind of screen comes up. How do I get to normal mode again?
> 
> Tnx in advance!
> 
> Hartelijke groet,
> Hieke
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Darken or lighten unsharp areas?

2021-04-06 Thread Martin Straeten
There’s a contrast based mask refinement on the way
https://github.com/darktable-org/darktable/pull/8597
maybe this might be a way to do this ...


> Am 06.04.2021 um 06:25 schrieb Terry Pinfold :
> 
> 
> Hi Peter,
>   is there any program out there offering this feature and if so, what 
> would be the purpose of doing this? I am not a developer, I am just intrigued 
> why there would be a benefit in such a feature. Possibly a mask could be 
> drawn around the unsharp area and then the exposure module or something 
> similar could be used for changing the brightness of the selected area. What 
> I really love about darktable is the drawn and parametric masks. 
> 
> 
> From: Peter Szmulik 
> Sent: Tuesday, 6 April 2021 12:23 AM
> To: darktable-user@lists.darktable.org 
> Subject: [darktable-user] Darken or lighten unsharp areas?
>  
> Hi!
> 
> I really like the blending controlls in Darktable. One question: is there a 
> way of darken, or lighten unsharp areas? If not, any plans?
> 
> Best/Peter
> 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> 
> 
> This email is confidential, and is for the intended recipient only. Access, 
> disclosure, copying, distribution, or reliance on any of it by anyone outside 
> the intended recipient organisation is prohibited and may be a criminal 
> offence. Please delete if obtained in error and email confirmation to the 
> sender. The views expressed in this email are not necessarily the views of 
> the University of Tasmania, unless clearly intended otherwise.
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Help needed with Canon CR2 pictures

2021-04-01 Thread Martin Straeten
Unfortunatly exiftools doesn’t give helpful hints: there’s also 
Average Black Level : 2048 2048 2048 2048
But this results in massive clipping of the dark areas, losing a whole bunch of 
details.
I also checked the raw.pixls.us <http://raw.pixls.us/> image 
(https://raw.pixls.us/getfile.php/130/nice/Canon%20-%20EOS%207D%20-%20sRAW1%20(mRAW)%20(3:2).CR2)
 - unfortunately far away from being norm lit 
Setting black points 0-3 to about 118 -125 seems to give a most neutral result 
(based on the black keyboard )
And it’s also fine for the OPs image, so maybe its a good initial value for 
tweaking ...

> Am 01.04.2021 um 17:17 schrieb William Ferguson :
> 
> Just checked rawspeed and the values are 0 for black point.  You can use 
> exiftool and look at the
> Average Black Level to get a good point.  For the full size raw it's 2048.  
> 
> On Thu, Apr 1, 2021 at 10:10 AM Martin Straeten  <mailto:martin.strae...@gmail.com>> wrote:
> No, the OP sent me a cr2 file so i could inspect it.  It seems to be a 
> invalid preset for raw blackpoint. This doesn’t affect the full raw, just if 
> sraw or mraw is used. There’re no proper blackpoint values provided. 
> 
> > Am 01.04.2021 um 14:50 schrieb KOVÁCS István  > <mailto:k...@kovacs-telekes.org>>:
> > 
> > Since the OP said it mainly affects the shadows, are you sure it's
> > because of highlight clipping?
> > 
> > darktable user mailing list
> > to unsubscribe send a mail to 
> > darktable-user+unsubscr...@lists.darktable.org 
> > <mailto:darktable-user%2bunsubscr...@lists.darktable.org>
> > 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org 
> <mailto:darktable-user%2bunsubscr...@lists.darktable.org>
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 



darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-dev] Re: [darktable-user] News about darktable 3.6

2021-04-01 Thread Martin Straeten
And i’m pretty sure since of course really experienced windows users never read 
manuals, also the manual will be ditched

> Am 01.04.2021 um 17:34 schrieb Pascal Obry :
> 
> Le jeudi 01 avril 2021 à 15:24 +, Willi Fritz a écrit :
>> Looking forward to the 3.6 release with the proviso that darktable
>> will stay available on the Windows platform. Could you please be more
>> precise than just writing that you "decided to keep Windows for now"?
> 
> Sure, the plan is clear, if there is more Windows users we will keep
> Windows and drop Linux and the reverse otherwise. We don't have the man
> power for more than one port actually.
> 
> Regards,
> 
> -- 
>   Pascal Obry /  Magny Les Hameaux (78)
> 
>   The best way to travel is by means of imagination
> 
>   http://www.obry.net
> 
>   gpg --keyserver keys.gnupg.net --recv-key F949BD3B
> ___
> darktable developer mailing list
> to unsubscribe send a mail to darktable-dev+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Help needed with Canon CR2 pictures

2021-04-01 Thread Martin Straeten
No, the OP sent me a cr2 file so i could inspect it.  It seems to be a invalid 
preset for raw blackpoint. This doesn’t affect the full raw, just if sraw or 
mraw is used. There’re no proper blackpoint values provided. 

> Am 01.04.2021 um 14:50 schrieb KOVÁCS István :
> 
> Since the OP said it mainly affects the shadows, are you sure it's
> because of highlight clipping?
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Help needed with Canon CR2 pictures

2021-04-01 Thread Martin Straeten
That’s no bug, thats a feature. After importing lighttable shows the embedded 
jpg. in darkroom you can see the raw processed with darktable modules instead 
of the camera internal processing.
If it’s magenta there might be an issue with the default white balance 
settings. I don’t think thats a general issue with darktable since my old 7D 
pics doesn’t show a magenta tint in shadows if processed just with the 
mandatory modules. (scene referred workflow as well as display referred 
workflow)
But 7d is known for being sensitive to highlight clipping, so if you get 
magenta in highlights you might activate highlight reconstruction ,reconstruct 
in lch‘ mode. But better avoid clipping highlights.
Maybe you need to provide a xmp file of an affected image so it’s possible to 
check the settings. 

> Am 01.04.2021 um 10:20 schrieb Jutta Juutinen :
> 
> 
> Hi,
> 
> just started shooting with my canon 7D at raw format. When I import the 
> pictures (in CR2 format) to darktable they look just fine, but when I open 
> them to edit, they get this very magenta tint, especially shadows are turned 
> automatically purple/magenta. Apparently there are other people with Canon 
> also with this problem. Is this possibly some kind of bug or problem with the 
> white balance darktable automatically creates? 
> 
> BR Jutta Juutinen 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Missing Histogram

2021-03-11 Thread Martin Straeten
There was a similar issue on debian 
https://www.mail-archive.com/darktable-dev@lists.darktable.org/msg06154.html
So maybe deleting the user.css in your darktable config directory (in  
/AppData/local/darktable) and unset custom css in preferences might be a 
solution.


> Am 11.03.2021 um 17:08 schrieb Patrick A. Grewe :
> 
> 
> Hi Rafa,
>  
> I’m not sure, so changed the theme and restarted a couple times.  Still no 
> histogram.  Then, I just started playing with buttons.  As it happens, the 
> red, green, and blue color channels were turned off.  I discovered that if, 
> and only if, all three color channels are on, then I get the complete 
> histogram, including luminosity.  If any of the three color channels are 
> turned off, then I get only the remaining color channels, without luminosity. 
>  It is impossible to get luminosity only.
>  
> So, the histogram is back, with the limitations described.
>  
> Thanks for your input.
>  
> Patrick Grewe
>  
> Sent from Mail for Windows 10
>  
> From: Rafa García
> Sent: Thursday, March 11, 2021 6:21 AM
> To: Patrick A. Grewe
> Cc: m...@gmx.net; darktable-user@lists.darktable.org
> Subject: Re: [darktable-user] Missing Histogram
>  
> HI Patrick,
>  
>   Did you restarted when changed from theme to theme?
>  
> Regards,
> Rafa
>  
> El mié, 10 mar 2021 a las 20:55, Patrick A. Grewe 
> () escribió:
> Hi Manuel,
>  
> Thank you.  I do appreciate your help.   
>  
> I just now confirmed that I am using a standard theme.  In addition, I tried 
> all the other standard themes and nothing restored the histogram.  I opened 
> the test images directly from darktable, since another user stated that he 
> was experiencing this when he opened from GIMP.
>  
> darktable has been buggy for me since Version 3.4 was introduced.  I am not 
> an expert user and have neither the skill nor inclination to fuss with it 
> anymore.  I think I will be moving on to something else.
>  
> Thanks, again.
>  
> Best regards,
> Patrick Grewe
>  
>  
> Sent from Mail for Windows 10
>  
> From: Manuel Presnitz
> Sent: Tuesday, March 9, 2021 3:29 PM
> To: darktable-user@lists.darktable.org
> Subject: Re: [darktable-user] Missing Histogram
>  
> Hello Patrick,
>  
> > Here is a screenshot. As you can see, the histogram window is open, but
> > there is no histogram visible. If I click and scroll in the window,
> > exposure is effected. Can this be fixed
>  
> I also experienced this behavior some time ago. The reason was that I used a
> customized "theme" ("general" tab in the settings) and I assume some CSS 
> styles
> changed. However, the problem was fixed after switching to a standard theme,
> which was shipped with dt.
>  
> Hope this helps,
> Manuel.
>  
>  
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
>  
>  
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org
> 
>  
> --
> Enviado desde mi tabla de planchar
>  
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] DT 3.4.2 :: see exported formats in lighttable-view

2021-03-09 Thread Martin Straeten
in the lighttable view all imported files are shown. You can also import
png files - they will be displayed.
Keep in mind that lighttable isn't a real time view onto your diskdrive, so
unless you reimport your directory after exporting png files there these
won't appear in lighttable view.
You can use lua to generate a export, import, group with raw file
afterwards script to achieve this (there's reusable code in
https://github.com/darktable-org/lua-scripts/blob/master/contrib/gimp.lua)

Am Di., 9. März 2021 um 17:07 Uhr schrieb Dr. A. Krebs :

>
> Dear all:
>
> DT offers different formats for importing and exporting pics.
>
> IMPORT:
> https://www.darktable.org/usermanual/en/overview/supported-file-formats/
>
> EXPORT: https://darktable.gitlab.io/doc/en/exporting_images.html
>
>
> As much as I found, dt shows in lighttable "only" RAW-formats (if I
> activate to _import_ JPG, I see these files, in lighttable, too).
>
> However: In my workflow, I produce lossless(!!) PNG, whereas dt is
> supposed to export only lossy(??) JPG??
>
> See: 
>
>
> My aim would be:
> - working on RAW-images in lighttable,
> - export these as PNG and
> - see all pics at the time(!!) within a directory.
>
> Lighttable should be for overviews and comparison, I guess. This way, I
> could see original RAW _and_ resulting pics version simultaneously.
>
>
> - I can't find a button to see PNG-format in lighttable.
> - What do I miss?
> - Is my workflow wrong?
> - Are there better procedures or, maybe s.th. as Best Practice e.g.?
>
> Thank you for tips
>
>
>
> Axel
>
> 
> darktable user mailing list
> to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Still no GUI module order possible?

2021-02-17 Thread Martin Straeten
it's not just a couple of days - that's just the effort needed to mess up
the UI ;)
you can get an idea on the effort spent just to make module groups
customizable by counting commits (
https://github.com/darktable-org/darktable/commits/master/src/libs/modulegroups.c)
then you might imagine the effort needed to integrate a customizable order
independent of the pipe ...

Am Mi., 17. Feb. 2021 um 15:45 Uhr schrieb Michael Staats <
michael.sta...@gmx.de>:

> On 17/02/2021 13:14, Martin Straeten wrote:
> > "Really, I cannot understand why we cannot have a tab on which any USER
> > can list his/her preferred modules and can order them as per his/her
> > preferred workflow"
> >
> > thats quite easy - because none of those who want this feature become
> > active, fork the code and simply implement the stuff ...
>
>
> Hi
> This is certainly a valid remark, the developers have their priorities,
> and that's absolutely fine. It's open source, if you want something,
> implement it -- my words (sometimes ;-).
>
> On the other hand, creating a fork, in a proper manner, with the option
> to somehow merge later, and then implementing something rather small, is
> a lot of effort, for a small effect.
>
> For example, I'm pretty sure that, in theory, my programming skills are
> good enough to implement such a thing. But I would need to understand
> the "architecture" of the source code, know how to implement effectively
> and efficiently, following all the best practices the developers are
> following because of their experience, etc. etc.
>
> And for small changes, it's not worth the effort (for the change in
> question, I'm not even requesting it, although I understand the point).
>
> Or, as (allegedly) the great Gauss said, when asked why he's not working
> on Fermat's last theorem: "I'd need three years preparation for this
> matter, and I cannot spend so much time when the outcome is unclear"
> (citation from memory, and even if it's wrong, it's a nice anectode).
>
> So it's valid to kindly ask the developers if they might spend a day or
> three, when others might need weeks for the fork.
>
> But if they say "No", that's a valid answer and has to be accepted.
>
> Best regards,
>  Michael
> --
> Michael Staats
> michael.sta...@gmx.de
>
> 
> darktable user mailing list
> to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] Still no GUI module order possible?

2021-02-17 Thread Martin Straeten
"Really, I cannot understand why we cannot have a tab on which any USER can
list his/her preferred modules and can order them as per his/her preferred
workflow"

thats quite easy - because none of those who want this feature become
active, fork the code and simply implement the stuff ...

Am Mi., 17. Feb. 2021 um 12:36 Uhr schrieb Maurizio Paglia <
mpagl...@gmail.com>:

> Hi all,
> I desire to let you have my opinion about this matter.
> In the past I pushed a lot to have this feature. Together with me many
> other USERS did the same...
> Really, I cannot understand why we cannot have a tab on which any USER can
> list his/her preferred modules and can order them as per his/her preferred
> workflow.
>
> If I look to a car I probably can identify 70% of its visible components.
> If I look to a disassembled car, I could identify 20% of components.
> Despite this fact I drive a car every day and I know perfectly how to do a
> lot of things because I am COMFORTABLE with its "GUI".
>
> My concern is we are not asking to change dt GUI.
> We do not want to change the multi-sliders interface with a single-slide
> one (LR, RT).
> We simply ask to have a tab with a COMFORTABLE list of modules.
> The pipeline is another matter.
>
> Only a TECHNICIAN can know very well how the pipeline works and why.
> A normal user or also an advanced user (pro photographer) does not know
> and, probably, does not care.
> I have to develop an image trying to obtain a pleasant result.
> I am a photographer (a USER), not an engineer (a TECHNICIAN).
>
> I have great respect for all devs putting such efforts in this software.
> dt is really good and in the recent past months has growth a lot!
>
> Nevertheless I still cannot understand why users cannot be COMFORTABLE
> with it...
>
> Thanks,
> Maurizio
>
> Il giorno mer 17 feb 2021 alle ore 12:12 Archie Macintosh <
> archie...@gmx.co.uk> ha scritto:
>
>> @Martin > I didn't say the developers aren't photographers. I know
>> that some are colour scientists. And I didn't say anything about
>> Lightroom.
>>
>> If some of the developers are professional GUI designers, I'm sorry I
>> didn't know that.
>>
>>
>> On Wed, 17 Feb 2021 at 10:07, Martin Straeten 
>> wrote:
>> >
>> > Thats nonsense. The darktable developers are not just linux developers
>> but also photographers with much more experience in color science than most
>> usual Lightroom users. This experience is manifestated in darktable.
>> > If you're just looking for a free/linux Lightroom alternative then
>> you're on the wrong playground here ...
>> >
>> > Am Mi., 17. Feb. 2021 um 10:18 Uhr schrieb Archie Macintosh <
>> archie...@gmx.co.uk>:
>> >>
>> >> @Kneops > You are raising a genuine issue. Linux applications – dt
>> >> included – are built by some trully brilliant programmers; but they
>> >> aren't GUI designers. The GUIs in free software often grow by
>> >> accretion, user-feedback, design adjustments forced by software
>> >> developments, and agreements between developers. Design issues are
>> >> very much secondary to how the programming implements processes.
>> >>
>> >> So how users other than the developers themselves actually use (or
>> >> want to use) the software is rarely a major consideration. And this
>> >> isn't surprising: software development is demanding in time and skill;
>> >> we're lucky to get the astonishing quality of work that goes into
>> >> building dt, and to have developers who are passionate about finding
>> >> computing solutions to difficult image-processing problems. You just
>> >> don't find many designers who want to commit that amount of time and
>> >> effort outside working hours. So people who aren't primarily designers
>> >> do their best, but often bring their programming habits with them.
>> >> (You'll have seen Bruce Williams looking perplexed in his excellent
>> >> training videos when he has to explain why an ordered list starts at
>> >> the botttom and goes up, unlike any ordered list you're likely to come
>> >> across in daily life!)
>> >>
>> >> When users innocently raise issues about interface design, it can feel
>> >> like nit-picking ingratitude.So it's not really surprising that some
>> >> folk get irritated. Until a bounteous designer comes along, we must
>> >> just be thankful for what we've got!
>> >>
>> >>
>> >>
>> >>
>> &g

Re: [darktable-user] Still no GUI module order possible?

2021-02-17 Thread Martin Straeten
Thats nonsense. The darktable developers are not just linux developers but
also photographers with much more experience in color science than most
usual Lightroom users. This experience is manifestated in darktable.
If you're just looking for a free/linux Lightroom alternative then you're
on the wrong playground here ...

Am Mi., 17. Feb. 2021 um 10:18 Uhr schrieb Archie Macintosh <
archie...@gmx.co.uk>:

> @Kneops > You are raising a genuine issue. Linux applications – dt
> included – are built by some trully brilliant programmers; but they
> aren't GUI designers. The GUIs in free software often grow by
> accretion, user-feedback, design adjustments forced by software
> developments, and agreements between developers. Design issues are
> very much secondary to how the programming implements processes.
>
> So how users other than the developers themselves actually use (or
> want to use) the software is rarely a major consideration. And this
> isn't surprising: software development is demanding in time and skill;
> we're lucky to get the astonishing quality of work that goes into
> building dt, and to have developers who are passionate about finding
> computing solutions to difficult image-processing problems. You just
> don't find many designers who want to commit that amount of time and
> effort outside working hours. So people who aren't primarily designers
> do their best, but often bring their programming habits with them.
> (You'll have seen Bruce Williams looking perplexed in his excellent
> training videos when he has to explain why an ordered list starts at
> the botttom and goes up, unlike any ordered list you're likely to come
> across in daily life!)
>
> When users innocently raise issues about interface design, it can feel
> like nit-picking ingratitude.So it's not really surprising that some
> folk get irritated. Until a bounteous designer comes along, we must
> just be thankful for what we've got!
>
>
>
>
>
> On Wed, 17 Feb 2021 at 08:34, Kneops  wrote:
> >
> > I started this topic/conversation about the GUI, but at first it was
> > just a question, if the order could be changed to make it feel more
> > logical and pleasant to me to work with. I now understand the reasoning
> > behind this and that it should not be changed. But underneath there is
> > more I must admit.
> >
> > Many friends who are photographers, amateur and professional, I have
> > pointed towards Linux because I love it and never want to go back to
> > Windows and Apple. They have mastered Gimp and love that program too, so
> > they never use Photoshop anymore. But they never mastered any raw editor
> > on Linux. All admit DT is extremely powerfull and the best one available
> > for Linux, but all stick to one of the (payed) alternatives on Windows
> > or Apple because they find them more intuitive and quicker and very
> > visual. They (and I) don't think in numbers, ranges and curves, but in
> > light, shadow, sharpness, blur, color, contrast, texture. LR for example
> > works as an extension of that mind and it named all tools to resemble
> > what the user 'feels' that has to be done to create a good image. I
> > think that is why it is so popular.
> >
> > I don't want to say LR is better than DT, absolutely not (!), but I'm a
> > trained photographer and after working with DT on and off for about 3
> > years now, I still don't manage to get the results I want, and if I do
> > it takes much more work. 'Then pick another tool and stop complaining'
> > is a reply I sometimes get, and that is true too ;). The thing is I
> > regret that there is no real alternative to all the Windows/Apple
> > programs that could move more people over to Linux. So for now my
> > friends keep working on their Windows machines and I still have two
> > computers I have to switch between. One with LR and Capture One, and my
> > Linux pc for everything else. Meanwhile I hope for some other open
> > source raw editor emerging on the Linux platform and I bravely keep on
> > trying to master DT because I want to get rid of that Windows machine :).
> >
> >
> >
> >
> >
> >
> >
> > Op 16-02-2021 om 23:31 schreef Andrew Greig:
> > >
> > > In a similar fashion if you learn the order of progression of the tools
> > > in Darktable, your work will become more efficient and more pleasant. I
> > > have seen edits presented on YouTube which involve around 30 modules,
> > > apparently common in landscape photography, whereas I use around 6
> > > modules as a rule, I am a studio photographer and I work on getting as
> > > much right as I can  through metering and exposing correctly. Is there
> > > more I could do? Sure, and I do learn incrementally, but just what I
> need.
> >
> 
> > darktable user mailing list
> > to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
> >
>
> 
> darktable 

Re: [darktable-user] Still no GUI module order possible?

2021-02-15 Thread Martin Straeten
The bottom up order makes sense since in a larger list of modules the modules 
for the color and tonal correction are usually in the upper visible part of the 
screen; the mandatory modules usually not needing tweaks or to be modified just 
once at the beginning of editing are in the invisible lower part...

> Am 15.02.2021 um 22:26 schrieb KOVÁCS István :
> 
> On Mon, 15 Feb 2021 at 20:37, Urs Schütz  wrote:
>> @kneops
>> My two cents:
>> Darktable pipelines work from bottom to top. [...]
>> The developers choosed "from bottom to top"
> 
> I think it may be reasonable to add an option to flip the visual order
> (so not completely free reordering, just a boolean top-to-bottom
> ('page-order') or bottom-up ('stack-like') display choice). My
> reasoning is that in Western writing systems, we read and write from
> top to bottom. I understand that the pipeline is also called a
> 'stack', and the 'last' element on the stack means 'the most recently
> pushed one', and it's at the top. But, I guess, for many users, a
> presentation where the last element of the history is at the bottom;
> where one of the the first modules to apply (such as exposure) appears
> near the top of the page, not near the bottom; where the pipeline, in
> execution order, is displayed top-to-bottom, is a very logical
> expectation.
> 
> Kofa
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Still no GUI module order possible?

2021-02-15 Thread Martin Straeten
That’s simply not on the prioritization list of the developers: these are also 
users of darktable „eating their own dogfood“ so imaging functionality is more 
important for them then „wasting“ time for stuff that won’t improve their edits.
Keep in mind - it’s not just open source, it‘s also free to be forked if 
somebody will spent a lot of time to implement a different ui.


> Am 15.02.2021 um 19:31 schrieb Jean-Luc CECCOLI :
> 
> 
>> 
>> Message du 15/02/21 18:00
>> De : "DougC" 
>> A : "darktable-user" 
>> Copie à : 
>> Objet : Re: [darktable-user] Still no GUI module order possible?
>> 
>> That thread helps my understanding a lot! Thank you.
>> 
>> My conclusion is that allowing a manual sort order in a module tab in the 
>> GUI would make it difficult to implement other changes that are under 
>> consideration. To me, that is a good argument.
>> 
>> 
> Hello,
> 
> I do not know what extra work it would imply for the devs, nor if it would be 
> either useful or convenient, so please do not bash !
> Please, consider also that I am only a casual user, and I rely upon the devs' 
> decisions and choices, even if some do not match my tastes (or I do not 
> understand the reason why they chose to do so, nor the goal).
> But, why not allow the user to create a tab with aliases to the original 
> modules, which would never be altered whatever the alias tab displays ?
> When the user needs to see what is really happening, he goes back to the main 
> tab, and when he wants to work according to his taste, he uses his alias tab.
> 
> Rgrds,
> 
> J.-Luc
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Still no GUI module order possible?

2021-02-15 Thread Martin Straeten
The best argument against is the absence of a fork having this and being used 
by more users than plain old darktable ;)


> Am 15.02.2021 um 17:02 schrieb DougC :
> 
> 
> This is exactly my position, as well. Is there a good argument against it?
> 
> 
> 
>  On Mon, 15 Feb 2021 10:56:41 -0500 Michael Staats 
>  wrote 
> 
> My 2 cents: I think most people do not want to mess with the internal 
> pipeline, they just expect that the right thing happens when they switch 
> on a module or change a setting. 
> 
> But it can simply be a matter of taste if you first crop, or set 
> the white balance. And why not allow to re-order the modules in the 
> favorite list to taste (without changing the pipeline), so that in one's 
> standard workflow you would simply start at the top, and when you are at 
> the bottom, you are done? 
> 
> Don't get me wrong, I'm not asking for it, I personally do not have such 
> a standard workflow. I look at my picture, and if I want to change 
> something, I pick the module I need, and so on, until I'm happy. In the 
> next picture, it might be a complete different order. 
> 
> But I understand if others, especially if handling many pictures, want 
> to have their personal order. Or maybe that helps establishing a common 
> workflow for a group of users, like when teaching whoever (pupils, 
> employees), or whatever use case you may think of... 
> 
> Best regards, 
> Michael 
> 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Still no GUI module order possible?

2021-02-15 Thread Martin Straeten
Even for the favorite list (it’s just a user defined collection of modules) 
it’s useful to know what you’re doing: changing the parameters of a lower 
module affects the upper, especially when using parametric masks.
So there’s really no benefit in having a list of stuff where transparency of 
the process chain is lost... having to switch between module lists just to see 
the „real“ order is quite more annoying then learning it once.

> Am 15.02.2021 um 16:57 schrieb Michael Staats :
> 
> On 15/02/2021 15:54, Kneops wrote:
>> That is a very good example! :)
>> 
>> 1.
>> 
>> Pixelpipeline/module order/background operations in DT:
>> First the socks, then the shoes.
>> 
>> 2.
>> 
>> Me:
>> First I choose which shoes to wear today, than I go look for soms socks
>> that fit with the shoes, if I can find them.
>> 
>> So I do not want to mess up the very logical order of first socks, then
>> shoes. But choosing which socks and which shoes could have a different
>> order. ;)
> 
> Hi
> My 2 cents: I think most people do not want to mess with the internal
> pipeline, they just expect that the right thing happens when they switch
> on a module or change a setting.
> 
> But it can simply be a matter of taste if you first crop, or set
> the white balance. And why not allow to re-order the modules in the
> favorite list to taste (without changing the pipeline), so that in one's
> standard workflow you would simply start at the top, and when you are at
> the bottom, you are done?
> 
> Don't get me wrong, I'm not asking for it, I personally do not have such
> a standard workflow. I look at my picture, and if I want to change
> something, I pick the module I need, and so on, until I'm happy. In the
> next picture, it might be a complete different order.
> 
> But I understand if others, especially if handling many pictures, want
> to have their personal order. Or maybe that helps establishing a common
> workflow for a group of users, like when teaching whoever (pupils,
> employees), or whatever use case you may think of...
> 
> Best regards,
>Michael
> --
> Michael Staats
> michael.sta...@gmx.de
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Still no GUI module order possible?

2021-02-15 Thread Martin Straeten
the pipeline is the only existing logical order; all other possible orders
are just workflow stuff - without any generalizable logical context.
Your "intuitively" refers to a workflow you're used from other tools. If
you want to use darktable "intuitively" you need to learn about darktables
pipeline...

Am Mo., 15. Feb. 2021 um 11:44 Uhr schrieb Kneops :

> Trying DT again I notice that I cannot reorder the modules, except when
> they also have an effect on the order in the pipeline.
>
> Intuitevely I work from top to bottom, exposure, white balance,
> contrast, then cropping etc. and at the end things like sharpening and
> vignetting. Now the modules have no logical order at all (except the
> pipeline)
>
> 
> darktable user mailing list
> to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] Rawtherapee seems to be sharper than Darktable, doesn't it?

2021-02-02 Thread Martin Straeten
don't expect darktable to do the stuff automagicly for you - there're a
couple of modules to tweak sharpness - but it is up to you to make use of
them...


Am Di., 2. Feb. 2021 um 16:26 Uhr schrieb Victor :

> I developed a raw image (DSC00662.ARW) taken with my sony a6600 with both
> DT and RT using minimal intervention (see attached DT xmp file and RT pp3
> file). As you can see from the details I enclosed in this message the RT
> resulting image looks by far better in terms of sharpness with respect to
> the  DT one.
>
> Why is that and is there anything I can do to improve DT performance as
> far as sharpness is concerned?
>
> Here is the link to the dropbox directory containing all the relevant files
>
> https://www.dropbox.com/sh/2iojfjmnu9ronoa/AADu4kLIm_rD_L6AhXGvBUNMa?dl=0
>
> Ciao
>
> Vittorio
>
>
>
>
> 
> darktable user mailing list to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] unable to run application

2021-02-01 Thread Martin Straeten
Known issue, already fixed in current master.

> Am 01.02.2021 um 17:33 schrieb Conscious Course :
> 
> hello, 
> 
> I am a mac user running OS X Yosemite. 
> 
> Downloaded application, mounted the thing, added to applications and tried to 
> open and it quits unexpectedly. 
> 
> Application Specific Information:
> *** Terminating app due to uncaught exception 'NSInvalidArgumentException', 
> reason: '-[__NSCFLocale languageCode]: unrecognized selector sent to instance 
> 0x7fd46152f740'
> abort() called
> terminating with uncaught exception of type NSException
> 
> Can you help?
> 
> thanks
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] exiv2 and darktable

2021-01-29 Thread Martin Straeten
Why don’t you take over the responsibility for the project? And be fully 
accountable for a possible copyright or patent infringement?
It is presumptuous to demand something from others that you are not willing to 
contribute yourself.

> Am 29.01.2021 um 20:11 schrieb Top Rock Photography 
> :
> 
> 
> My only concern is that, although AVIF is not patent encumbered, he refused 
> to add the reading/writing of metadata data to AVIF, until he speaks to a 
> lawyer. That has been quite a long time ago and so, my AVIF files made by 
> darktable seem to have no metadata.
> 
> Currently, Exiftool is no better (in that regard). Worse yet, aside from the 
> most popular browsers, (Firefox, Chrome/Chromium), I cannot find a viewer for 
> AVIF files.
> 
> Does one really need a lawyer to work for over one year to decide that the 
> reading/writing of metadata in an AVIF does NOT violate any patents not 
> covered by the open license? Is his lawyer billing him at US$20,000 per day?
> 
> I am confident that the exiv2 project will be taken over. I just hope that 
> whoever takes it over has a lawyer who knows how to make phone calls and/or 
> write letters.
> 
> I have other issues on AVIF support, but this is not the thread for that.
> 
> Sincerely,
> 
> Karim Hosein
> Top Rock Photography
> 754.999.1652
> 
> 
> 
>> 
>> 
>> a: How will this affect DT?
>> b: Supplementary question: Would exiftool be an alternative for DT?
>> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Windows Nightly Builds

2021-01-22 Thread Martin Straeten
No need to file an issue ... known since first upcoming of cr3.
darktable doesn‘t support cr3 since the basic exiv2 library doesn’t support cr3 
yet due to legal implications (canon wasn’t able to give a clear statement in 
this). It seems a solution was found so cr3 might be supported with the next 
version.
You can use cr3 files after converting them to dng.
https://discuss.pixls.us/search?q=cr3

> Am 22.01.2021 um 19:59 schrieb Ankit Peer :
> 
> 
> Hi Bill/Martin,
> 
> thank you both for your responses. 
> 
> I have searched but didn't find any existing relevant discussion on the issue 
> I am getting. 
> 
> the installation on my Win10 went fine. I can do things on a tiff or jpg but 
> when it comes to importing a raw CR3 file, the system throws a message 
> stating "error loading file" I have tried with multiple different raw files 
> but I got the same result. 
> 
> So the question is, does darktable support CR3 format? If yes, then how can 
> we address this. 
> 
> Best,
> Ankit
> 
> 
> 
> 
>> On Tue, Jan 19, 2021 at 7:03 AM Bill Martz  
>> wrote:
>> Thanks, Martin. Big learning curve for me, but I will work on it.
>> 
>> 
>> 
>>> On Tue, Jan 19, 2021 at 1:14 AM Martin Straeten  
>>> wrote:
>>> No, you’re looking at the right place. There seems to be some issues in 
>>> setting up the ci environment for windows.
>>> Best way is to build it yourself - the description in 
>>> https://github.com/darktable-org/darktable/tree/master/packaging/windows is 
>>> quite good (but a setup in a ci environment is a different thing)
>>> 
>>>>> Am 19.01.2021 um 03:21 schrieb Bill Martz :
>>>>> 
>>>> 
>>>> I have the location of the nightly builds as
>>>> 
>>>> https://github.com/darktable-org/darktable/actions?query=workflow%3A"Nightly+PKG;
>>>> 
>>>> What I see is there have not been any successful builds in 21 days. Am I 
>>>> looking in the wrong place?
>>>> 
>>>> 
>>>>  darktable user mailing list to unsubscribe send a mail to 
>>>> darktable-user+unsubscr...@lists.darktable.org 
>>>> =
>> 
>>  
>> darktable user mailing list to unsubscribe send a mail to 
>> darktable-user+unsubscr...@lists.darktable.org 
> 
> 
> -- 
> Ankit


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Windows: how to safely upgrade from 3.2.1 to 3.4

2021-01-21 Thread Martin Straeten
Simply install the new software. Theres no need to wipe all stuff if you didnt 
used a development build that messed up things.
You might backup the config directory but darktable usually will create a 
backup of your data.db and library.db
You might also backup the xmp files of your old edits since darktable converts 
these to the current history stack version if you open the image in darkroom. 
But that doesnt change the modules used in the history stack.

> Am 21.01.2021 um 13:18 schrieb Marc Cabuy :
> 
> 
> Dear darktable under Windows user(s),  I will appreciate your advice.
>  
> This may be a stupid question: how to safely upgrade from 3.2.1 to 3.4 on 
> Windows while keeping the database, settings, etcetera.
>  
> When I upgraded from 3.0.2 to 3.2.1 I wiped everything, entered manually all 
> settings again (and loaded/imported my raw and xmp files).
>  
> Especially re-entering the settings in darktablerc helped me to avoid strange 
> interference for newly imported raw’s as both the base curve module and the 
> filmic module appeared for a (than new) scene-referred workflow.
>  
> I hope I can avoid this now.
>  
> Thanks,
> Marc
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Windows Nightly Builds

2021-01-18 Thread Martin Straeten
No, you’re looking at the right place. There seems to be some issues in setting 
up the ci environment for windows.
Best way is to build it yourself - the description in 
https://github.com/darktable-org/darktable/tree/master/packaging/windows is 
quite good (but a setup in a ci environment is a different thing)

> Am 19.01.2021 um 03:21 schrieb Bill Martz :
> 
> 
> I have the location of the nightly builds as
> 
> https://github.com/darktable-org/darktable/actions?query=workflow%3A"Nightly+PKG;
> 
> What I see is there have not been any successful builds in 21 days. Am I 
> looking in the wrong place?
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] darktable book

2021-01-16 Thread Martin Straeten
After having a look into the table of contents and some sample chapters it 
doesn’t seem the author is used to the darktable concepts of scene referred or 
display referred workflow. He focusses on the display referred workflow and 
just describes some modules in darktable 3.0. It seems to be a very generic 
concept. There were a lot of changes in 3.2.1 and 3.4
In my opinion https://darktable-org.github.io/dtdocs/ 
 is ways better if you really want to 
understand what’s happening in the modules and also the translated old style 
manual  https://darktable.gitlab.io/doc/de/ 
 or the pdf version.

One of the basic articles is translated into German 
https://www.bilddateien.de/blog/2020-01-26-darktable-3-workflow-lab-oder-rgb.html?q=darktable
 

 There’re also German translations of the release notes on this site …


> Am 16.01.2021 um 10:20 schrieb Tom Whale :
> 
> 
> Hello Users,
> would like to ask if anyone here is knowing the book 
> https://shop.heise.de/so-geht-das-in-darktable-3-1
> Can you recommend it? Or isn't it worth the money, or do you have other 
> recommendations? I prefer having a book instead of online tutorials, 
> especially because english is not my native language and so I'm looking for 
> information in german language.
> 
> 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 



darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Where are Collections stored?

2021-01-16 Thread Martin Straeten
file locations are stored in the library.db.
Id is an integer and the location a varchar(1024) 
From the reference: 
INTEGER. The value is a signed integer, stored in 1, 2, 3, 4, 6, or 8 bytes 
depending on the magnitude of the value.

So i doubt you reach this limit with your library.
You may run darktable -d sql to see if there are failing database activities ...

> Am 16.01.2021 um 07:03 schrieb Bruce Williams :
> 
> Hi all!
> I THOUGHT I'd found a limit to the number of Collections that could be saved.
> But it looks more and more like wherever my Collections are stored, darktable 
> can no longer write/execute on that location, as not only can I not store any 
> NEW Collection, I can't delete an existing one either.
> I'm on Linux MInt 20 and dt 3.4.0+88~g0e4ecc1fa-dirty.
> I have library, keyboardrc and .db files located in .cache in my user 
> filesystem area.
> Any assistance would be greatly appreciated!
> Cheers,
> Bruce Williams
> --
> brucewilliamsphotography.com
> shuttersincpodcast.com
> 
> e-mail | Twitter | LinkedIn | Facebook | Soundcloud | Quora
> --
> 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] color input profile

2021-01-10 Thread Martin Straeten
https://www.darktable.org/usermanual/en/module-reference/processing-modules/input-color-profile/

you need to save the icc file in your .config/darktable/color/in directory

> Am 10.01.2021 um 23:12 schrieb Lorenzo Fontanella 
> :
> 
> 
> Good morning
> how can i load my color profiles so that i can use them as an "input profile"?
> 
> Lorenzo Fontanella
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Does Darktable handle Canon's CR3 files

2021-01-09 Thread Martin Straeten
Not yet - until cr3 is supported in exiv2 library

> Am 09.01.2021 um 22:49 schrieb Terry Pinfold :
> 
> 
> Does Darktable handle Canon's CR3 files? I have just been given a CR3 file 
> from a CanonD90 and it will not open. 
> 
> -- 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] DT 3.4 no longer has zone system module (gone!)

2021-01-05 Thread Martin Straeten
You can use zone system even it’s deprecated. You just need to put in into the 
group you want to find it. or access it by searching for it.
Some further denoise modules weren’t removed but renamed - sometimes it’s worth 
to read release notes ..


> Am 05.01.2021 um 23:45 schrieb Terry Pinfold :
> 
> 
> "The developers should keep the zone system in my opinion."
> 
> I would tend to agree with Tanya about keeping the zone system. While I much 
> prefer the tone equalizer module over the zone system I feel having the 
> choice to use or not use the zone system is best. What I really like about DT 
> is the ability to have so many choices of modules to achieve your desired 
> outcome. I can understand that modules may have to be deprecated if they can 
> not be maintained or cause DT to not work correctly, but if this is not the 
> case then I would agree that the zone system should be reinstated. 
> 
> I was also surprised to see some noise reduction modules have disappeared in 
> the latest version of DT. I did like the options of multiple modules for 
> tackling different noise issues. But in saying that I am impressed with the 
> improvements to the denoise (profiled) module, especially the chrominance 
> only preset in the hamburger. I really appreciate the effort of all the 
> developers for producing my favourite editing program, but please only 
> deprecate modules if you really have to. 
>   
> Thanks Terry
> 
>> On Wed, 6 Jan 2021 at 09:28, Tanya Riseman  wrote:
>> Thank you all for the tips on using tone equalizer. I am still digesting 
>> them, but have made a lot of progress.
>> 
>> I am using DT 3.2 so that I can compare zone system and tone equalizer. I 
>> understand that tone equalizer in v. 3.4 is a lot better, but I am putting 
>> off upgrading to it due to the lack of zone system.
>> 
>> I took a sample picture to edit, with a good range of black to white. I want 
>> to make it look like the classic B street photography with "inky blacks". 
>> In zone system I pushed the dark shadows down toward the black to get this 
>> effect. I also pushed the highlights toward the whites, but not as much. 
>> There are 8 points on the zone strip that one can vary. I am going for the 
>> look of "inky blacks" over preserving all the detail.
>> 
>> In tone equalizer using the default mask type of guided filter and spreading 
>> the mask histogram as much as I could, I got about 3.5 points on the curve 
>> that could modify the picture. I could not get anything near to the result 
>> from zone system. Too grey.
>> 
>> I tried choosing 'no' in preserve details (in the masking tab), as Juan 
>> suggested. Now the mask spans all 8 EV and I was able to get very close to 
>> my picture from zone system.
>> 
>> So my conclusions are
>> 
>> 1. It is not certain that tone equalizer is mature since the last big update 
>> is only from late December.
>> 
>> 2. If tone equalizer is not yet mature, it is premature to deprecate the 
>> zone system module.
>> 
>> 3. The tone equalizer "preserve details" option of "no" that basically 
>> replicates the zone system/ tone curve is very buried. Maybe it should be on 
>> the simple tab. To be honest I find the tone curve hard to use and was 
>> initially smitten with the simple tab on the tone equalizer.
>> 
>> 4. Learning the tone equalizer is much harder than the zone system (thank 
>> you for the hand holding). This is a barrier for beginners; let them get 
>> their sea legs using the zone system as they learn techniques that go beyond 
>> basic sliders. 
>> 
>> 5. Obviously in using the tone equalizer, there are other images where the 
>> intention is more of preserving detail while not adjusting tone values more 
>> than the detail mask allows. I can think of documentary cases like bird 
>> photos and scientific images.
>> 
>> 6. The developers should keep the zone system in my opinion. 
>> 
>> Tanya Riseman
>> 
>> 
>>  
>> darktable user mailing list to unsubscribe send a mail to 
>> darktable-user+unsubscr...@lists.darktable.org 
> 
> 
> -- 
> 
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Strange import behaviour

2021-01-05 Thread Martin Straeten
Seems you had edited the other images earlier and removed them from darktable 
later, so there might be thumbnails remaining in the cache
Run darktable-generate-cache to update the thumbnail cache - if that doesn’t 
help you might delete the cache directory 

> Am 05.01.2021 um 09:57 schrieb Andrew Greig :
> 
> Hi All,
> 
> I have recently upgraded to DT3.4.0, when importing a folder of RAW files 
> from my RAW files directory I now find unwanted images from other folders 
> intruding on the Lighttable view, I may have selected a folder of images of a 
> model, but, as well, a set of images from a wedding (stored in another 
> folder) arein the lighttable view as well. If I select the thumbnail it 
> disappears. The only images I can work on are the ones which I intended to 
> edit, it is odd that I should have intruders from "left field". What should I 
> do to fix this?
> 
> Many thanks
> 
> Andrew Greig
> 
> Melbourne, Australia
> 
> 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Increase lighttable performance

2021-01-03 Thread Martin Straeten
If you don’t use the embedded presets then each image has to be processed with 
the default workflow. Once processed, they’re cached. 
So it’s worth to tweak your OpenCL settings 
https://www.darktable.org/usermanual/en/special-topics/opencl/


> Am 03.01.2021 um 02:32 schrieb Germano Massullo :
> 
> After I import some images in darktable 3.4.0, I wait to let all
> previews appear, then I zoom to maximum size in order to just see one
> image per time. The first time I scroll to move among images, I can
> observe darktable being in "working" status because it still needs to
> work on the preview. If I scroll back to the just scrolled images, they
> immediately appear. Can I force some special tweak in order to just tell
> darktable to take all the time it needs to elaborate all previews
> without having to require further work? I already increased 4x the
> minimum memory options in darktable, and I can increase these specs even
> further.
> darktable lighttable thumbnails options are:
> - color manage cached thumbnails: true
> - don't use embedded preview jpeg but half-size-raw: false
> - high quality thumb processing from size: 720p
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Importing from camera

2020-12-31 Thread Martin Straeten
Please read https://www.darktable.org/about/faq/#faq-tethering
You need to install a proper usb driver...

> Am 31.12.2020 um 12:18 schrieb Tom Whale :
> 
> Hello Users,
> I'm new to darktable (3.4.0), just doing my first steps with it.
> At the moment, I'm struggling with importing photos from my camera (Canon 
> EOS600D).
> After connecting the camera to my PC (Windows10) via USB, Windows finds the 
> camera and asks me what to do. But whatever I choose, the camera won't get 
> visible in darktable. So I cannot import from it. I googled and searched the 
> manuals but the only hint I found was
> 
>> If you don’t see your camera listed in the import module, press the “scan 
>> for devices” button.
> 
> But where is that button?
> Am I missing something?
> When disconnecting the camera, darktable shows for a short time the message 
> "Locked: Canon 600D on USB001:022" or similar.
> 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] dt 3.4 - a mighty tool!!

2020-12-31 Thread Martin Straeten
You may follow https://github.com/darktable-org/darktable/pull/3648

> Am 31.12.2020 um 00:25 schrieb Terry Pinfold :
> 
> 
> HI all,
> Darktable is a fantastic program thanks to the incredible effort of the 
> developers. Hats off to the dedicated developers for DT 3.4.0. It is a very 
> sophisticated program that requires time to learn. But it is really worth 
> learning. There are some great video resources for those who learn by 
> watching and there is the user manual which is a must read for each module 
> when you first start using a new module. I don't believe the developers 
> should or could make Darktable beginner friendly without compromising what 
> makes Darktable great. Possibly the basic adjustment module could have a few 
> more features added to it like denoise, sharpening, local contrast which 
> would just be duplicating commonly used features from other modules and 
> placing them in one place. That would make it easier for the beginner and the 
> person who only wants simple edits. 
> 
> 
> 
>> On Thu, 31 Dec 2020 at 07:17, Martin Straeten  
>> wrote:
>> The requested beginners workflow is already described: 
>> https://www.darktable.org/usermanual/en/overview/workflow/
>> But if a beginner even doesn’t spend time to read the first section of the 
>> manual, why deveolpers should spend time to provide a gui they never would 
>> use for their edits.
>> Darktable developers „eats their own dogfood“ so the ui is to satisfy their 
>> demands.
>> 
>> And of course: don’t mix up ‚beginners‘ with used-to-lightroom-guys
>> 
>>>> Am 29.12.2020 um 16:25 schrieb Dr. A. Krebs :
>>>> 
>>> Dear developers:
>>> 
>>> thank you very much for this great piece of software!
>>> 
>>> It offers chances, I'd never expected before to take advantage of raw 
>>> files. I'm using D500 & D850, Ubuntu 18.04, 64 bit, 32 GB RAM.
>>> 
>>> --
>>> 
>>> dt seems to require quite a bit studies to find out the appropriate steps 
>>> to image processing. As we can see, there are people searching for a 
>>> beginners-type GUI.
>>> 
>>> For me some type of such "beginners workflow" helped a lot; however, there 
>>> should be a physical / arithmetical backup for such workflows.
>>> 
>>> Overall, there might be some type of knowledge-system in the background to 
>>> analyse a selected pic. From there he system could offer a questionnaire to 
>>> concrete the targets and, at last, suggest some reasonable steps to improve 
>>> a pic.
>>> 
>>> --
>>> 
>>> I really would like support dt with some contributions; however, I can not 
>>> program software.
>>> 
>>> --
>>> 
>>> One small question I have: dt is completely non-destructive. If a work on a 
>>> pic, I only see the _changed_ version, not the original version.
>>> 
>>> How can I see both versions a the time to gain an overview?
>>> 
>>> --
>>> 
>>> Is there a way to organise dt styles (from <https://dtstyle.net/>)?
>>> 
>>> --
>>> 
>>> Can one modify the GUI?
>>> 
>>> -- 
>>> 
>>> Thank you again-
>>> 
>>> 
>>> Axel
>>> 
>>> darktable user mailing list
>>> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
>>> 
>> 
>>  
>> darktable user mailing list to unsubscribe send a mail to 
>> darktable-user+unsubscr...@lists.darktable.org 
> 
> 
> -- 
> 
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] How to delete a film roll ? + I can`t find "Cache/Darktable" on my Macs

2020-12-29 Thread Martin Straeten
The cache is in ~/.cache/darktable directory
But if it crashes after importing a filmroll, then it’s usually not the cache 
but the library containing stuff darktable can’t process.
You might rename ~/.config/darktable to ~/.config/darktable.old and start from 
scratch. 
If that doesn’t work, you can start it from terminal with
/Applications/darktable.app/Contents/MacOS/darktable -d all
to get an idea whats happening just before the crash
If dt crashes while importing a specific image with already existing xmp file, 
then it makes sense to open an issue at 
https://github.com/darktable-org/darktable/issues/new?assignees===bug_report.md=
 and provide the xmp.

> Am 28.12.2020 um 23:32 schrieb Ronald Fleischer :
> 
> 
> Another Problem: I’m using Darktable besides my 2011 Macbook Pro on an iMac 
> late 2015 (with MacOs Catalina), i imported a film roll but trying to open 
> the images lets crash the program evry time. now i would like to delete the 
> film roll but i don`t see how. 
> 
> Besides that i really can`t find were the cached darktable thumbnails are, 
> neither on may Macbook nor my iMac. 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] color lookup table

2020-12-28 Thread Martin Straeten
It works as designed: 
You can change L, a, and b independently since - saturation is no independent 
parameter in Lab
You can enter precise values with right mouseclick on the slider

BTW try a look into the manual: 
https://www.darktable.org/usermanual/en/module-reference/processing-modules/color-look-up-table/

> Am 28.12.2020 um 17:05 schrieb Lorenzo Fontanella 
> :
> 
> In my opinion, the "color lookup table" module doesn't work as well as it 
> should.
> That is, if I want to change a color at will and after selecting it, I act on 
> a slider, whether I am working in a relative or absolute way, the sliders 
> move at the same time and this does not allow you to perform or find a 
> precise variation.
> Furthermore, is there the possibility to select an initial color with the 
> eyedropper and always define another final color using the eyedropper? maybe 
> taken from another photo?
> Lorenzo Fontanella
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Darktable is slow

2020-12-28 Thread Martin Straeten
usually opencl isn’t activated on osx since there might be issues with intel 
graphics. But you can activate it in the preferences - if opencl is available 
on your machine.
Maybe you further need to tweak your opencl settings (see 
https://www.darktable.org/usermanual/en/special-topics/opencl/)

Sometimes it needs several darktable starts to build all opencl kernels ...

> Am 28.12.2020 um 19:09 schrieb Ronald Fleischer :
> 
> 
> Hi !
>  
> I am pretty fresh to Darktable, just installed 3.4, first it all went fine, 
> now nearly evrything i do in Processing leads to waiting, the CP runs hot 
> etc. 
>  
> I am using an old Macbook Pro 17 from 2011 with High Sierra on it with 16 GB 
> memory.
>  
> That could be it, but it was fine yesterday, so I am a bit confused.
>  
> I thought of starting totally fresh and install the Program new, but that did 
> not work (is there a way to reset the settings ?)
>  
> Still maybe its just the old Laptop but well, maybe someone has an idea ?
>  
>  
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] copy and paste setting

2020-12-26 Thread Martin Straeten
Select source, ctrl+c or ctrl+shift+c, select target, ctrl+v or ctrl+shift+v

> Am 26.12.2020 um 16:12 schrieb Lorenzo Fontanella 
> :
> 
> 
> Hello everyone, is there a way to copy and paste the settings from one image 
> to another without having to save a style every time?
> Thanks
> 
> Lorenzo Fontanell
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 
> =


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Changing the border of the selection in lighttable

2020-12-25 Thread Martin Straeten
Try this way @define-color graph_red rgb(237,30,20);


> Am 26.12.2020 um 07:35 schrieb Niranjan Rao :
> 
> On darktable 3.2.1
> 
> 
> In the lighttable mode, is it possible to change the border color of selected 
> items? Color difference in selected and unselected items is very subtle in 
> default darktable theme and depending upon my laptop's monitor angle, 
> sometimes there is no difference at all.
> 
> 
> I suspect it's the following value as defined in css file. However overriding 
> the value in Settings/CSS tweaks does not work. I have not tried restarting 
> the darktable to see if it works.
> 
> @define-color thumbnail_selected_bg_color @grey_60;
> 
> 
> Can someone provide me an example of what needs to be put in Settings/CSS 
> tweaks section to show my selections more prominently?
> 
> 
> I have tried following
> 
> @define-color thumbnail_selected_bg_color white
> 
> @define-color thumbnail_selected_bg_color #FF
> 
> 
> Regards,
> 
> 
> Niranjan
> 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Geeqie RAW preview as starting point for DT

2020-12-13 Thread Martin Straeten
Do have an idea, what geeqie is doing with the raw file? Simply displaying the 
embedded jpg?
In lighttable dt displays the embedded jpg by default - until you process it - 
then everything is based on the raw data.
To achieve exactly the same result as the embedded jpg darktable must include 
the whole im camera processing stuff the camera manufacturers keeps as their 
secret.
So don’t expect darktable being convinced ;)

> Am 13.12.2020 um 13:25 schrieb cimatosa :
> 
> Dear DT community,
> 
> 
> I have been using DT for quite a while now and I'm very happy with rich
> features and resulting images.
> 
> However, since my workflow includes preselecting my RAW files using
> Geeqie I'm always a bit frustrated when I load my images into DT after
> having seen the "rather well pleasing" preview of the RAW data in
> Geeqie. I takes quite some effort to get close to the Geeqie results
> using DT, so I have not managed yet to create a suitable style that
> would work a default / starting point for further processing.
> 
> So here is my question, does anyone know or has experiences on how to
> convince DT to give me the same results as Geeqie?
> 
> 
> Cheers, Richard
> 
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] No Opencl on macOS 11 (Big Sur)

2020-11-22 Thread Martin Straeten
For osx it’s very important to tweak opencl preferences in 
.config/darktable/darktablerc.
I found my macbookpro 16 gives best performance if used in opencl mode 
‚default‘ with forcing full pixelpipe being processed by amd gpu (1) and 
preview pixel pipe with cpu (-1) 
(opencl_device_priority=1,0,*/!1,!0,*/1,0,*/0,*/*) in combination with 
performance mode (new with upcoming 3.4) and reduced resolution of preview 
image. The other opencl modes prioritized the on chip gpu (0) at cost of speed 
...

You can evaluate the processing time and used gpu device runnig darktable from 
terminal:
darktable -d perf -d opencl | grep -e'processing took' -e'using device'
Happy tweaking ...

To enable opencl on osx 11 use the workaround described at 
https://github.com/darktable-org/darktable/issues/6918#issuecomment-727595566

Am 22.11.2020 um 19:05 schrieb Volker Lenhardt :

Hi Marc,

when I started dt two years ago for the first time on my new iMac-5k-screen, in 
full screen as I had been used to on my former HD screen, I was shocked by the 
slow performance. My first idea was to blame Apple. But when I did realize that 
full screen even extended the pixel size of my pictures I changed the mode of 
my operation. I reduced both the dt window and my distance from the screen, put 
my reading glasses on and eventually got a decent dt performance.

The point is that you shouldn't so much pay your attention to higher resolution 
but to more free screen space. What's the use of a 5k screen when you remove 
yourself from it so that it looks the same as a HD screen? We don't talk of UHD 
movies, do we.

All the best
Volker

> Am 22.11.20 um 16:04 schrieb Marc Cabuy:
> Hi Volker,
> Further to that opencl issue, that slow response time you had/have may be 
> related to the high resolution display.  That's my experience with dt 3.2.1 
> on Windows.  I now reduce my display resolution prior to editing (feels 
> stupid, I know). See also here: 
> https://www.mail-archive.com/darktable-user@lists.darktable.org/msg10305.html.
> I would be interested to hear whether that is an issue too on MAC.
> Marc.
> -Oorspronkelijk bericht-
> Van: Volker Lenhardt [mailto:volker.lenha...@uni-due.de]
> Verzonden: zondag 22 november 2020 12:26
> Aan: darktable-user@lists.darktable.org
> Onderwerp: [darktable-user] No Opencl on macOS 11 (Big Sur)
> After upgrading to macOS 11 (Big Sur) I experience very long response 
> behavior of DT on my 5K screen (iMac 2017), about at least double compared to 
> the already slow performance under macOS Catalina.
> Especially denoising is nerve-racking.
> I see that OpenCL isn't supported any more. There is Metal instead. Is there 
> a way out to sufferable working conditions?
> Stay healthy
> Volker
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Getting machine JPG colours in RAW editing

2020-11-04 Thread Martin Straeten
You might use this: 
https://pixls.us/articles/profiling-a-camera-with-darktable-chart/
But this approach isn’t useful when using filmic, since color lookup table and 
tonecurve are mandatory.
Best solution to get nikon colors is using the software provided by nikon ;)

> Am 04.11.2020 um 23:36 schrieb Germano Massullo :
> 
>  Good day, I have shoot the following photo in JPEG+RAW and I would need 
> your help in reproducing the colours of the camera JPEG in dartkable RAW 
> editing.
> This is a Nikon Z6 JPEG 
> https://germano.fedorapeople.org/canc/pantheon/original_z6_JPG.JPG
> here instead the result of my elaboration of the RAW file 
> https://germano.fedorapeople.org/canc/pantheon/darktable_edited_raw.jpg
> This is the XMP file 
> https://germano.fedorapeople.org/canc/pantheon/DSC_1075_05.NEF.xmp
> I cannot manage to achieve the same colours, playing with the colour balance 
> did not help because it turned too much "reddish" the whole picture. Any idea?
> Thank you for your time
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Applying lens-correction as part of a preset

2020-10-27 Thread Martin Straeten
just activate the module without manual selection of camera and lens -
these are detected by default.
But if you select them manual the manual selection is stored in the preset

Am Di., 27. Okt. 2020 um 16:29 Uhr schrieb Stille <
dimeforthepassingt...@gmail.com>:

> When I tried creating an initial corrections preset for my images and
> tried to add lens correction to it, it ended up applying the correction
> for one particular lens and one particular FL over any image I'd apply
> it to. Is there a way to have it automatically read the lens metadata,
> as it does if I activate the module independently?
>
> Thank you
>
>
> 
> darktable user mailing list
> to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] Deleting raw files after editing

2020-10-27 Thread Martin Straeten
the database just stores the history stack like it's contained in the xmp.
The raw file itself is not stored in the database so you'd better backup
raw+xmp to be safe

Am Di., 27. Okt. 2020 um 15:28 Uhr schrieb Sakke K :

> Can I delete RAW files after I edited the pictures? Images and xmp files
> are of course backed up to a USB drive. Hard disk space is low, but I
> want to find the images in the database.
>
> I wouldn't want to use some other image management program like DigiKam.
>
> 
> darktable user mailing list to unsubscribe send a mail to
> darktable-user+unsubscr...@lists.darktable.org
>


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org

Re: [darktable-user] Batching exports

2020-09-11 Thread Martin Straeten
read 
https://darktable.gitlab.io/doc/en/overview_chapter.html#darktable_cli_commandline_parameters
apply the edit to the first image to get the xmp sidecar and then process all 
images with this xmp

> Am 11.09.2020 um 18:07 schrieb darkta...@911networks.com:
> 
> DT 3.2.1
> 
> I have a whole bunch of bracketed RAF images (by 7 = 280 images), that
> I would like to export as tiff to further process in GIMP.
> 
> The only thing that I want to do to them is:
> 
> * demosaic: markestejin 3 pass with color smooting either 3 times or
>  5 times
> * apply lens corrections
> 
> That's it, it don't want anything else.
> 
> How can I do this?
> 
> Thanks
> 
> -- 
> sknahT
> 
> vyS
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Can DT be loaded onto MAC running Mojave OS

2020-09-10 Thread Martin Straeten
Its not necessary to upgrade the operating system. On first start darktable 
just updates its own databases in ~/.config/darktable. These database contains 
overall settings of styles, presets etc. and metadata of imported images and 
their history stacks.
If you’re afraid of losing data you can do an additional backup of the 
directory yourself.
Darktable 3.2.1 runs fine on Mojave ...

> Am 10.09.2020 um 23:54 schrieb Terry Pinfold :
> 
> 
> Thanks all,
>   she now has DT loaded. Turns out the DT screen that comes up wanting to 
> upgrade the database had her worried and confused. She has Photoshop and LR 
> loaded on her computer as well. If she upgrades her OS system to Catalina 
> then her perpetual licences will not work for these programs. 
> 
> Dr Terry Pinfold
> Cytometry & Histology Lab Manager
> Lecturer in Flow Cytometry
> University of Tasmania 
> 17 Liverpool St, Hobart, 7000
> Ph 6226 4846 or 0408 699053
> 
> From: J Albrecht
> Sent: Friday, September 11, 2020 12:02 AM
> To: darktable forum
> Cc: Rebecca Brogan
> Subject: Re: [darktable-user] Can DT be loaded onto MAC running Mojave OS
> 
> I run darktable 3.2.1 on Mac OS Mojave 10.14.6 without any problems. At least 
> none that I’ve found up to this point.
> 
> 
> ---
> 
>> On 10 Sep 2020, at 05:46, Terry Pinfold  wrote:
>> 
>> Hi all,
>>   Can DT be loaded onto MAC running  Mojave OS? I have a student who has 
>> a Mac with Mojave and is unsure about loading the latest release of DT. She 
>> currently has 3.0.0 loaded and it works. 
>> 
>> -- 
>> Dr Terry Pinfold
>> Cytometry & Histology Lab Manager
>> Lecturer in Flow Cytometry
>> University of Tasmania 
>> 17 Liverpool St, Hobart, 7000
>> Ph 6226 4846 or 0408 699053
>> 
>> 
>>  
>> darktable user mailing list to unsubscribe send a mail to 
>> darktable-user+unsubscr...@lists.darktable.org 
> 
> 
> 
> University of Tasmania Electronic Communications Policy (December, 2014). 
> This email is confidential, and is for the intended recipient only. Access, 
> disclosure, copying, distribution, or reliance on any of it by anyone outside 
> the intended recipient organisation is prohibited and may be a criminal 
> offence. Please delete if obtained in error and email confirmation to the 
> sender. The views expressed in this email are not necessarily the views of 
> the University of Tasmania, unless clearly intended otherwise.
> 
> 
>  
> darktable user mailing list to unsubscribe send a mail to 
> darktable-user+unsubscr...@lists.darktable.org 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org



Re: [darktable-user] Re: finding and putting a profile into lensfun

2020-09-06 Thread Martin Straeten
if it’s not available then you need to profile your lens yourself:  
https://pixls.us/articles/create-lens-calibration-data-for-lensfun/

> Am 06.09.2020 um 16:12 schrieb Michael :
> 
> I tried searching for the profile but could not find it.
> 
>> On Sun, Sep 6, 2020 at 10:08 AM Michael  wrote:
>> 
>> I got the Minolta Md 135Mm F2.8 Manual Focus Lens. How do I find a
>> profile for it and put that into lensfun?
>> 
>> --
>> :-)~MIKE~(-:
> 
> 
> 
> -- 
> :-)~MIKE~(-:
> 
> darktable user mailing list
> to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org
> 


darktable user mailing list
to unsubscribe send a mail to darktable-user+unsubscr...@lists.darktable.org