Recent comments

Reply to: Using libraw_dcraw_make_mem_image   3 years 4 months ago

Data is not empty,

your pixels are in data[0].....data[data_size-1]

Reply to: Using libraw on Mac with c#   3 years 4 months ago

glad to hear that my assistance helped.

Reply to: Using libraw on Mac with c#   3 years 4 months ago

Thanks Alex, with your detailed description I was able to compile the libraw.dylib and its working now with Xamarin.Mac,
Tom

Reply to: Using libraw on Mac with c#   3 years 4 months ago

The easiest way to create libraw.dylib is to run

./configure
make

Note: on fresh enough macOS this command sequence may end with ...blabla...aclocal-1.15 missing
In that case you need to recreate ./configure script by using

autoreconf --install

To run that you'll need these software packages: autoconf, automake, libtool, pkg-config. You may install it using macports or homebrew, or just download source code and install (please note: autoconf 2.70 is not working for unknown reason, use version 2.69)

Reply to: Canon R5 .CR3 files open with incorrect colors   3 years 4 months ago

Yes!

Reply to: Canon R5 .CR3 files open with incorrect colors   3 years 4 months ago

Will this be supported in the near future?

Thorsten

Reply to: Canon R5 .CR3 files open with incorrect colors   3 years 4 months ago

R5 uses new metadata format which is not supported by LibRaw 0.20.

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

We plan to support it in next public snapshot.

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

Do you have any plan to support brand new Sony A7C?
Thanks in advance.

/Yangsoo

Reply to: std::map with LibRaw   3 years 4 months ago

It seems like a lot of time has passed, but is there any solution?

Reply to: Extension RAW CR3 only works on system disk   3 years 4 months ago

If you're talking about 'Microsoft RAW image extension', please contact vendor (Microsoft).

We're not involved in this product development in any way and not responsible for it.

Reply to: Trying to use libRAW 0.20.2 in FreeImage 3.18.x   3 years 4 months ago

Hello Alex,

thanks for your answer!
So I will have to wait for a new FreeImage version or try to fix the FreeImage environment myself - good to know that :-)

Thanks again and merry Christmas,
Michael

Reply to: Trying to use libRAW 0.20.2 in FreeImage 3.18.x   3 years 4 months ago

Sorry, know nothing about FreeImage.

LibRaw I/O layer (LibRaw*datastream) has changed (simplified) in LibRaw 0.20, so if FreeImage uses own LibRaw I/O implementation (subclass of LibRaw_abstract_datastream) it should be changed too.

Reply to: LibRaw 0.20 supported cameras   3 years 5 months ago

We're completely unaware of MS schedule

Reply to: LibRaw 0.20 supported cameras   3 years 5 months ago

Thanks. Hopefully that will support the compression option of these cameras also? How long does it then typically take MS to incorporate them into the add-ons for Windows Explorer?

Reply to: LibRaw 0.20 supported cameras   3 years 5 months ago

Thanks.

Reply to: LibRaw 0.20 supported cameras   3 years 5 months ago

EOS R5/R6 support is expected in next 'public snapshot'

Reply to: LibRaw 0.20 supported cameras   3 years 5 months ago

Hi, when will it be compatible with the canon eos R5 camera?

Reply to: std::map with LibRaw   3 years 5 months ago

std::map test; -> std::map<std::string, LibRaw> test;

Reply to: problem of decoding apple proRAW dng file   3 years 5 months ago

Leica M8 is bayer camera, so data is expected in imgdata.rawdata.raw_image

I suggest you to read the docs: https://www.libraw.org/docs/API-datastruct.html#libraw_rawdata_t

Reply to: problem of decoding apple proRAW dng file   3 years 5 months ago

Hi Alex, I decode a leica M8 DNG file with unprocessed_raw compiled with adobe DNG SDK 1.5.1, after RawProcessor.unpack() with LIBRAW_SUCCESS return, I found both RawProcessor.imgdata.rawdata.color3_image and RawProcessor.imgdata.rawdata.color4_image is NULL. I can not get that unprocessed raw data. But use dcraw_emu without adobe DNG SDK, I can get a tiff file. and I can get an unprocessed data tiff file (called stage 1 data) with dng_validate, which is a sample of adobe dng sdk.
the sample file is here: https://www.dropbox.com/s/yheqp9lkvuut2ee/LEICA_M8.DNG?dl=0
another sample of Leica DMR DNG: https://www.dropbox.com/s/n9iee4b5rse4ukv/Leica_DMR_R8_L1185423.DNG?dl=0
the same problem as M8. :-(
thank you for your response

Reply to: problem of decoding apple proRAW dng file   3 years 5 months ago

Thanks a lot.
It looks like BaselineExposure +2... is common for these files. Also, these samples displays correctly if BaselineExposure is applied.

BTW, in 1st file (11_2.5x) data maximum is 503 in green channel, so only 9 bits out of 12 are used.

Reply to: problem of decoding apple proRAW dng file   3 years 5 months ago

BTW, if you have more samples from this camera, could you please share it, if possible?

In this specific sample, BaselineExposure tag is set way to high (+2.32), that results in too light rendering in Adobe tools.

it would be interesting to know is that tag setting is systematic, or resulted from some camera settings (e.g. highlight priority, resulting in underexposure)

Reply to: problem of decoding apple proRAW dng file   3 years 5 months ago

Thanks Alex,I will try later.

Pages