new cameras

Hi,

(I'm not sure where this post belongs. I started to put it in general but that area seems overrun by watch spam.)

I've recently worked with a couple of industrial cameras based on the Sony ICX 625/655 5MP color sensor. I modified libraw to work with these images, and the patch is below. The JAI BB-500GE wasn't tested, but should work OK because the GigE camera is nearly identical to the CameraLink, which was tested. The other 3 were tested and work OK.

I hope this helps someone.

-kc

6783a6784,6787
> { 9994240, "ptGrey", "GRAS-50S5C" ,0 }, // KC: SUPPORT GRASSHOPPER
> { 10075968, "JaiPulnix","BB-500CL" ,0 }, // KC: SUPPORT BB-500CL
> { 10108896, "JaiPulnix","BB-500GE" ,0 }, // KC: SUPPORT BB-500GE
> { 10036800, "SVS", "SVS625CL" ,0 }, // KC: SUPPORT SVS625 cameralink
7680a7685,7716
> } else if (!strcmp(model,"GRAS-50S5C")) {
> height = 2048;
> width = 2440;
> load_raw = &CLASS unpacked_load_raw;
> data_offset = 0;
> filters = 0x49494949;
> order = 0x4949;
> maximum = 0xfffC;
> } else if (!strcmp(model,"BB-500CL")) {
> height = 2058;
> width = 2448;
> load_raw = &CLASS unpacked_load_raw;
> data_offset = 0;
> filters = 0x94949494;
> order = 0x4949;
> maximum = 0x3fff;
> } else if (!strcmp(model,"BB-500GE")) {
> height = 2058;
> width = 2456;
> load_raw = &CLASS unpacked_load_raw;
> data_offset = 0;
> filters = 0x94949494;
> order = 0x4949;
> maximum = 0x3fff;
> } else if (!strcmp(model,"SVS625CL")) {
> height = 2050;
> width = 2448;
> load_raw = &CLASS unpacked_load_raw;
> data_offset = 0;
> filters = 0x94949494;
> order = 0x4949;
> maximum = 0x0fff;

Comments

Thanks for your patch.

It is integrated into LibRaw 0.11.3 and into coming LibRaw 0.12

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.