Recent comments

Reply to: New camera support   1 year 12 months ago

The approach via dcraw_emu works.

But is there any way to use:
libraw_processed_image_t *image = RawProcessor->dcraw_make_mem_image(&ret);
and to get the color profile which is embedded by dcraw_emu into the TIFF?

Thorsten

Reply to: New camera support   2 years 19 hours ago

Here is your file processed with dcraw_emu -w -T: https://www.dropbox.com/s/z14eycj4932v47s/original.orf.tiff?dl=0
I do not see anything that bad here.

dcraw_emu was just built from LibRaw github/master

Please try to repeat the problem with LibRaw's dcraw_emu (-w -T), if it is not reproduce: the problem is in your code.

Reply to: New camera support   2 years 20 hours ago

I tried the latest patch.
It imports the ORF file. But the colors are really terrible with the default settings. Do you suggest any special settings?
Original file: https://www.lemkesoft.org/temp/original.orf
Imported file: https://www.lemkesoft.org/temp/import_25percent.png

Thorsten

Reply to: DNG recorder   2 years 2 days ago

Just use Adobe DNG SDK:
- it is free
- it is BSD licensed
- it is capable to record industry-standard RAW files compatible with ANY raw-processing software.

(the only problem is lack of useable documentation but it is easy to grab a working sample code from github :)

Reply to: DNG recorder   2 years 2 days ago

Actually, I am in position similar to the OP's, so I would like to expand a bit on the subject:
- many industrial cameras can be interfaced using the Gige Vision protocol.
- this protocol is very low-level, and each frame is received with minimal meta-data.
- so storing the pixel values is mostly the programmer's responsibility.
- so every person facing such a camera ends up defining his/her RAW format.
- still, it would be good if the images produced could be read by LibRaw, and all the programs built around it.
- and it would hardly make any sense to add to LibRaw a routine for each file type produced by each version of each software written by each new person.

So the bottom line is:
- given LibRaw's developers experience with RAW file formats, could they point out an existing one that is already handled by LibRaw with which newcomers could comply with minimal hassle? (as the OP pointed out, DNG seems to have been designed just for that, but I have no idea how hard writing DNG files is).

Reply to: LibRaw 0.20 supported cameras   2 years 1 week ago

ILCE-7M4 support will be published in the next public snapshot (or beta/release, if it comes first)

Reply to: LibRaw 0.20 supported cameras   2 years 1 week ago

request a7iv (ILCE-7M4) raw support

Environment

  • MacOS
  • LibRaw-0.20.2

I tried my EOS 80D's cr2 file and SONY a330's ARW file, both of them are working okay. But the ARW shoot by a7m4 does not work.

Reply to: image scaled to 65535 even with no_auto_bright   2 years 2 weeks ago

baseline exposure tag for DNG is parsed into imgdata.color.dng_levels.baseline_exposure (and also into tiff_ifds[ifd].dng_levels.....)

Reply to: image scaled to 65535 even with no_auto_bright   2 years 3 weeks ago

Sorry if I wasn't clear on this - by correct scale I mean every image is scaled by the same factor so that 1 pixel intensity measures the same amount of physical light energy for all images.

After doing some research I found each file has a different value for "baseline exposure", and to convert them back to the same scale one needs to apply following correction:

intensity = raw_intensity * (2^ baseline_exposure)

After this conversion intensities are now consistent across images.

I still have a few questions though:

- Does libraw expose "baseline_exposure" through API?
- I think above correction should be applied to post processed image, is that correct?

Cheers

Reply to: image scaled to 65535 even with no_auto_bright   2 years 3 weeks ago

I did not quite understand what is meant by the 'correct scale' in this context.

DNG tag 0xc61d values are extracted into
1) imgdata.color.maximum (for channel 0)
2) imgdata.color.dng_levels.dng_whitelevel[channel] (for selected DNG ifd)
3) tiff_ifd[ifd].dng_levels.dng_whitelevel[channel] (all IFDs)

Reply to: image scaled to 65535 even with no_auto_bright   2 years 3 weeks ago

Hi Alex,

Thank you so much for the quick reply. When I opened both files in photoshop and the preview app they were shown in the correct scale. Is there any way I can fetch that information from the DNG with libraw?

Cheers
Zac

Reply to: image scaled to 65535 even with no_auto_bright   2 years 3 weeks ago

Your DNG files have data range of 65535:

Tag 0xc61d:
| | 15) WhiteLevel = 65535 65535 65535

So, 65535 is an expected data range even without scaling.

Reply to: Problems building libraw.dll   2 years 3 weeks ago

There is no need to modify Makefile.msvc for 64-bit.

Just run nmake in corresponding (32 or 64 bit) Developer Shell (or use vcvarsNN.bat to set up environment variables)

We also provide LibRaw.sln (one may need to change tools version to Visual Studio used)

Reply to: LibRaw 0.20 supported cameras   2 years 3 weeks ago

Could we have support for OM-1 OM System (Olympus) soon?

Reply to: cam_xyz array differs from exiv2 output on Sony A7C   2 years 3 weeks ago

Thank you! :) I get matching values after updating libraw to the current git master.

Reply to: cam_xyz array differs from exiv2 output on Sony A7C   2 years 3 weeks ago

A7C (ILCE-7C) is not officially supported by 0.20.2, consider upgrade to current 'public snapshot' from github: https://github.com/LibRaw/LibRaw

Reply to: cam_xyz array differs from exiv2 output on Sony A7C   2 years 3 weeks ago

0.20.2.

There is now more info on darktable's side: https://github.com/darktable-org/rawspeed/pull/250#issuecomment-1077723895

Reply to: cam_xyz array differs from exiv2 output on Sony A7C   2 years 3 weeks ago

What version of LibRaw do you use?

Reply to: reading .raw with LibRaw iProcessor example   2 years 3 weeks ago

Thank you all for the answers. I read the binary with native C++ fstream (800x800 = 640000 values). then used __builtin_bswap16() to swap and obtain my bayer data which I was able to convert to RGB,
Many thanks

Reply to: reading .raw with LibRaw iProcessor example   2 years 3 weeks ago

procflags of open_bayer() should also do the swap for you in the above example: https://www.libraw.org/docs/API-CXX.html#open_bayer

Reply to: reading .raw with LibRaw iProcessor example   2 years 3 weeks ago

For byte swapping use something like ntohs() (actually this converts from big endian to your machine/host endianness, so it might be a noop if your machine is big endian as well) or, depending on your system/compiler, some incarnation of the bswap16() intrinsic/bultin function (e.g. __builtin_bswap16() for GCC, _byteswap_ushort() for MSVC, etc.)

Reply to: reading .raw with LibRaw iProcessor example   2 years 4 weeks ago

Thank you again for your answers.
Actually, yes the data is encoded in int16.
I was able to read it in python swap bit ordering to bi endian. Any idea how I can achieve this in c++ ?
Also my guess for taking 2 bites with go for two consecutive bytes. Does this seam reasonable. I don' have all format specifications in hand.

Reply to: reading .raw with LibRaw iProcessor example   2 years 4 weeks ago

Also, if your file is 2 bytes per pixel, uncompressed, you do not need LibRaw to read source data values. Your values are already here (in unsigned short format, probably you may need big/little-endian swap; I know nothing about your images and your camera)

Pages