Recent comments

Reply to: How to create syntethic mosaic images   4 years 10 months ago

Without coding, just using a simple script with calls to: dcraw.exe, exitfool and dng_validate from Adobe, I have managed to create some synthetic valid DNG files:
- Linear light decomposition to balance different colour temperatures in RAW
- Mean stacking to mimic ultra low ISO/ND filter
- Median stacking to remove moving subjects
- HDR RAW

https://www.overfitting.net/2021/04/generando-un-raw-en-formato-dng-part...

Regards

Reply to: Alexa LF Plus W support?   4 years 10 months ago

Thank you. Now I use command line tool to decode. Alexa LF plus W is the camera of the ARI file that I exported with other software.

Reply to: How to create syntethic mosaic images   4 years 10 months ago

We use Adobe DNG SDK to create DNG.

Reply to: Alexa LF Plus W support?   4 years 10 months ago

Last LibRaw public snapshot supports some Arri models if compiled with LIBRAW_OLD_VIDEO_SUPPORT defined. Not sure that LibRaw support this specific camera (Alexa LF listed as supported, do not know what is pus W)

We plan to continue Arri support up to release 0.21, than drop this support: LibRaw is not about video.

Please consider use of other API (e.g. Arri SDK)

Reply to: Alexa LF Plus W support?   4 years 10 months ago

I need help

Reply to: CRAW Canon EOS R5   4 years 10 months ago

Thanks a lot for the work. 🙏🙏

Reply to: CRAW Canon EOS R5   4 years 11 months ago

Hello! any news on this? thanks!

Reply to: LibRaw 0.20 supported cameras   4 years 11 months ago

Dear Sir:

Please advise the author of the program in question to check https://www.libraw.org/blog and to use the current LibRaw version.

Reply to: LibRaw 0.20 supported cameras   4 years 11 months ago

I Have a question about .cr3 format by canon.

When I add .cr3 files and start stacking the program is not creating stacked file.

Could you help me with this issue?

Thanks!

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

right you are, now that is shameful.
Yeah, I barely ever develop/compile any code on windows. I wouldn't try and use 'rm' in the Win CMD but I thought the Makefile.MinGW will be fully Win-compatible.... I guess not, didn't think straight, this lack of movement due to COVID is eating away on my braincells.

Good find and lazy me, great community here!

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

You are running mingw32-make from cmd.exe shell, and rm command does not exist in DOS. Even if you have the MSYS bin directory in your PATH where MSYS rm.exe lives, its behavior is probably strange/undefined under cmd.exe...

I prefer to use the MINGW (bash) shell from the start menu and traditional make (installed under MSYS) instead of ming32-make, the behavior is much more consistent with all other *nix platforms and build scripts.

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

right... so I removed line 134: rm -f lib/libraw.a
from the Makefile.mingw and it finished as expected. Not sure why the rm throws an error. Running it again throws no error even with the rm sinc the 'lib/libraw.a' then exists. Windows... :-/

thanks for the help. Now I'm working on windows defender accepting the compiled *.exe and NOT starting thread alerts everytime they run. Only happens to compiled ones. I'll get it done.

thanks again. Any usage questions I'll post elsewhere.

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

'normal' rm should not raise return error code if rm -f [nonexistent-file] is used

Because your rm is not 'normal', you may try to remove rm -f lib/libraw.a statement from makefile

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

this is the error message:
rm -f lib/libraw.a
process_begin: CreateProcess(NULL, rm -f lib/libraw.a, ...) failed.
make (e=2): The system cannot find the file specified.
mingw32-make: *** [Makefile.mingw:134: lib/libraw.a] Error 2

here's the entire console output:
Screenshot

never stumbled upon this error, but I suppose it must be my setups then. Tried on two machines one with msys, one with mingw freshly installed.
I don't compile a lot for windows, but I need it running on there since I'd implement it for automation. I wish github would just offer some virtual machines for compiling binaries for whatever platform one needs, still seems a hassle on Win-machines.
Thanks for your comments and help.

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

We do not create binaries for snapshot/intermediate releases.

What is make's error message?

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

Ah, thanks guys, i was looking at the latest available(Windows) binaries.
Tried to build the latest snapshot using Makefile.mingw just now, getting an error at line 78: library: lib/libraw.a on two machines. 😐
Are the Windows binaries available for download somewhere, sorry, didn’t see them anywhere.

Thanks!

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

Yes, EOS R5 is supported in the latest public snapshot: https://www.libraw.org/news/libraw-202101-snapshot

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

Please have a look at https://www.libraw.org/blog and at update policy on https://www.libraw.org

Reply to: Canon R5 CR3 Support?   4 years 11 months ago

Hi, it has been 9 months since the last release, is there any update on 0.21?
I'm also asking because of Canon R5 support.

kind regards
randfee

Reply to: Sigma X3F support   4 years 11 months ago

Thank you for your help and you so much! Now it is working as expected and the images are loading.

Build environment was OSX 10.15 with XCode and gcc,g++ installed via homebrew. But I will now compile it for Linux under Ubuntu 20.04 and Windows 10 as well.

My library librawfx (https://github.com/lanthale/librawfx) is an extension for the JavaFX library to add RAW image support.

Reply to: Sigma X3F support   4 years 11 months ago

something like
./configure CFLAGS="-O3 -DUSE_X3FTOOLS" CXXFLAGS="-O3 -DUSE_X3FTOOLS"

(still know nothing about your environment, so just a proposal, adjust it according to your specific environment/toolset/etc)

Reply to: Sigma X3F support   4 years 11 months ago

I am using the proposed one from the documenation with ./configure and make. I have modified the makefile but it have not helped. Can I specify it as an option for the ./configure or how can I use ./configure and enable X3F support ?

Reply to: Sigma X3F support   4 years 11 months ago

I do not know what build method you use (providede makefiles, or configure, or qmake pro files, there are many)

Add -DUSE_X3FTOOLS to C and C++ compiler flags

Reply to: Sigma X3F support   4 years 11 months ago

Thank you for the hint and I have seen this but cannot find the place in the makefile where to place USE_X3FTOOLS.

Can you help me out ?
Thank you in advance.

Pages