Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | 8x 8x 8x 8x 8x | import { convertRGBColorByPixel, convertRGBColorByPlane, convertYBRFullByPixel, convertYBRFull422ByPixel, convertYBRFullByPlane, convertPALETTECOLOR, } from './colorSpaceConverters/index'; function convertRGB(imageFrame, colorBuffer, useRGBA) { if (imageFrame.planarConfiguration === 0) { convertRGBColorByPixel(imageFrame.pixelData, colorBuffer, useRGBA); } else { convertRGBColorByPlane(imageFrame.pixelData, colorBuffer, useRGBA); } } function convertYBRFull(imageFrame, colorBuffer, useRGBA) { if (imageFrame.planarConfiguration === 0) { convertYBRFullByPixel(imageFrame.pixelData, colorBuffer, useRGBA); } else { convertYBRFullByPlane(imageFrame.pixelData, colorBuffer, useRGBA); } } export default function convertColorSpace(imageFrame, colorBuffer, useRGBA) { // convert based on the photometric interpretation Iif (imageFrame.photometricInterpretation === 'RGB') { convertRGB(imageFrame, colorBuffer, useRGBA); } else Iif (imageFrame.photometricInterpretation === 'YBR_RCT') { convertRGB(imageFrame, colorBuffer, useRGBA); } else Iif (imageFrame.photometricInterpretation === 'YBR_ICT') { convertRGB(imageFrame, colorBuffer, useRGBA); } else if (imageFrame.photometricInterpretation === 'PALETTE COLOR') { convertPALETTECOLOR(imageFrame, colorBuffer, useRGBA); } else Eif (imageFrame.photometricInterpretation === 'YBR_FULL_422') { convertYBRFull422ByPixel(imageFrame.pixelData, colorBuffer, useRGBA); } else if (imageFrame.photometricInterpretation === 'YBR_FULL') { convertYBRFull(imageFrame, colorBuffer, useRGBA); } else { // TODO - handle YBR_PARTIAL and 420 colour spaces throw new Error( `No color space conversion for photometric interpretation ${imageFrame.photometricInterpretation}` ); } } |