Recent comments

Reply to: LibRaw / C++ Undebayered Buffer   4 years 7 months ago

Followup:
1) colors are in imdata.idata.cdesc string ('RGBG" in most cases, "CMYG" for some very old cameras, etc)
2) For RGBG (modern bayer), values returned by COLOR():
0 - Red
1 - Green
2 - Blue
3 - Green (for some cameras greens are different by black level/amplification/even color response)

Reply to: LibRaw / C++ Undebayered Buffer   4 years 7 months ago

https://www.libraw.org/docs/API-CXX.html#COLOR will return pixel color for (row,col).

Of course, this colors are repeatable in rows/columns (in 2x2 pattern for normal bayer and in 6x6 for X-Trans), so you do not need to call it on each pixel

Reply to: LibRaw / C++ Undebayered Buffer   4 years 7 months ago

Thank you Alex, this is exactly what I wanted. I can now get a raw undebayered buffer from LibRaw and display it on my image preview screen as a greyscale image. Of course, I see the bayer pattern on the preview display. Ultimately, I would like to be able to debayer the buffer using a nearest neighbour algorithm purely for the live preview screen and save a undebayered TIFF files.

This leads me onto my final question. Is it possible for LibRaw to return the camera bayer pattern, for example, RGGB, BGGR, GBGR or GRGB or is this not possible?

Once again, thank you.

Amanda

Reply to: Raw to Tiff conversion and cropping the written image   4 years 7 months ago

Thank you very much!

Reply to: Raw to Tiff conversion and cropping the written image   4 years 7 months ago

dcraw_emu sample supports both TIFF output and cropping.

Reply to: LibRaw / C++ Undebayered Buffer   4 years 7 months ago

Original RAW data (after LibRaw::unpack) is available via imgdata.rawdata. arrays (raw_image - for bayer, X-Trans or monochrome, color3_image for 3-color non-bayer files, color4_image for 4-color ones; Only one of these pointers is non-NULL after unpack() call).

Note: this array(s) contains unpacked RAW pixels without any adustment/cropping:
- masked (black area) pixels are in place, pixel array size is imgdata.sizes.raw_width x raw_height
- black level not subtracted

Reply to: LibRaw 0.19.5-Release   4 years 8 months ago

Please wait until public snapshot.

Reply to: LibRaw 0.19.5-Release   4 years 8 months ago

Is the code with CR3 support available in some private branch? I would like to test if it is available.

Reply to: PhaseOne iXM MV150F Raw file support   4 years 8 months ago

Could you please provide image sample?

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

Dear Sir:

could you please share image sample (e.g. upload it to Dropbox/WeTransfer/Mega.NZ/etc and send link to info@libraw.org)

Also, as shot/automatic white balance (-w or -a switch for dcraw_emu) most likely will work.

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

Hi!
I found the 100 MP sensor is included in LibRaw supported camera list but for different camera models from Phase One. I was working with Phase One iXG 100 MP, and thought give a try how the output look like after default demosaicing. The output is more greenish (which is not correct) in output tiff ( dcraw_emu -v -dcbe -T input.IIQ ).

Any good suggestion on this unsupported camera issue? I have attached the output.

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

In next public snapshot (this Fall)

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

Hi,

any idea of when you plan to suport these cameras ?
Thank you.

Best Regards,

Reply to: Support for Fujifilm Super CCD EXR sensor layouts   4 years 8 months ago

Well, one more question...

Beyond the core library, you also provide a few command line tools with your installation package.

Could you add support for reporting header details per included raw image if a file contains more than one frame? I hope this way I can find a way to discover if there are differences in the attributes of both contained images, to tell apart "High Resolution" from "Dynamic Range" dual capture raw image files by comparing their attributes.

I believe hardly any software at all is aware of raw image files possibly containing more than one image frame.

Reply to: How to read IIQ raw images with Libraw   4 years 8 months ago

Thanks, problem soved.

Reply to: raw to tiff conversation without any processing   4 years 8 months ago

Thanks Alex, it's working smoothly what I needed. unprocessed_raw -T Image.CR2

Reply to: raw to tiff conversation without any processing   4 years 8 months ago

There is no direct alternative to dcraw -d/-D in LibRaw's dcraw_emu

Use unprocessed_raw and/or 4channels samples to dump unaltered raw data.

Reply to: How to covert raw RGB to sRGB   4 years 8 months ago

Usually a matrix link is calculated first, to keep things happening in one step.

Reply to: How to covert raw RGB to sRGB   4 years 8 months ago

from RGB to sRGB is a two step conversation process, first RGB to XYZ,as you mentioned. But as it is a linear conversation process the conversion matrix (3*3) should be appropriate for the camera model and lighting condition (e.g. D65). from XYZ to sRGB could be another conversation matrix.

Reply to: LibRaw 0.19.5-Release   4 years 8 months ago

CR3 support is expected in next public snapshot this Fall

Reply to: LibRaw 0.19.5-Release   4 years 8 months ago

Hey there! Thanks for your work! Will you add CR3 support to LibRaw?

Reply to: Fuji X-T100 incorrect image size   4 years 8 months ago

OK understood, thanks

Reply to: Fuji X-T100 incorrect image size   4 years 8 months ago

X-T100 is supported in current public snapshot.

There is no plans for LibRaw 0.20 this year.

Reply to: Fuji X-T100 incorrect image size   4 years 8 months ago

When do you/will you add new camera support to the stable branch? When do you expect to add the support for the X-T100, as at least some of my user base made the same incorrect assumption that 0.19.3 included the 201903 support.

Pages