Hello,
Thanks for your answer, I wanted to know if this could be implemented in the script batchDebayer.js in src
Ideally if we could add a specific section with RGBG pattern, I guess this should be somewhere around the following section.
Unfortunalty is I manually add the section, it fails
this.bayerPatterns = new Array;
this.bayerPatterns.push("RGGB");
this.bayerPatterns.push("BGGR");
this.bayerPatterns.push("GBRG");
this.bayerPatterns.push("GRBG");
this.bayerPatterns.push("RGBG");
this.bayerPatternsMap = new Array;
this.bayerPatternsMap.push(p.RGGB);
this.bayerPatternsMap.push(p.BGGR);
this.bayerPatternsMap.push(p.GBRG);
this.bayerPatternsMap.push(p.GRBG);
this.bayerPatternsMap.push(p.RGBG);
this.chosenBayerPattern = "RGGB";
this.chosenBayerPatternConstant = p.RGGB;
Am I missing some parameter somewhere else in this JS script ?
Bruno