J'essaie d'utiliser ffmpeg pour décoder un tampon d'image à partir d'une image DICOM en utilisant le codage YBR_FULL_422. Selon la définition:
Deux valeurs Y doivent être mémorisées, suivies d'une valeur CB et d'une valeur CR. le Les valeurs CB et CR doivent être échantillonnées à l'emplacement du premier des deux valeurs Y. Pour chaque rangée de pixels, les premiers échantillons CB et CR doit être à l'emplacement du premier échantillon Y. Le prochain CB et CR les échantillons doivent être à l'emplacement du troisième échantillon Y, etc.
Supposons que j'ai:
$ gdcminfo YBR_FULL_422.dcm
MediaStorage is 1.2.840.10008.5.1.4.1.1.7 [Secondary Capture Image Storage]
TransferSyntax is 1.2.840.10008.1.2.1 [Explicit VR Little Endian]
NumberOfDimensions: 2
Dimensions: (600,430,1)
SamplesPerPixel :3
BitsAllocated :8
BitsStored :8
HighBit :7
PixelRepresentation:0
ScalarType found :UINT8
PhotometricInterpretation: YBR_FULL_422
PlanarConfiguration: 0
...
J'ai donc simplement essayé d'extraire le tampon brut:
$ gdcmraw YBR_FULL_422.dcm YBR_FULL_422.raw
$ du -sb YBR_FULL_422.raw
516000 YBR_FULL_422.raw
Qui est compatible avec la taille de l'image: 600 * 430 * 2 = 516000
Mais je ne peux pas le convertir en rgb24 normal:
$ ffmpeg -y -f rawvideo -pix_fmt yuv422p -s:v 600x430 -i YBR_FULL_422.raw rgb24.ppm
Input #0, rawvideo, from 'YBR_FULL_422.raw':
Duration: 00:00:00.04, start: 0.000000, bitrate: 103200 kb/s
Stream #0:0: Video: rawvideo (Y42B / 0x42323459), yuv422p, 600x430, 103200 kb/s, 25 tbr, 25 tbn, 25 tbc
Output #0, image2, to 'rgb24.ppm':
Metadata:
encoder : Lavf57.56.101
Stream #0:0: Video: ppm, rgb24, 600x430, q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
Metadata:
encoder : Lavc57.64.101 ppm
Stream mapping:
Stream #0:0 -> #0:0 (rawvideo (native) -> ppm (native))
Press [q] to stop, [?] for help
frame= 1 fps=0.0 q=-0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=36.9x
video:756kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
L'image de sortie est verdâtre avec des foulées noires.
dd
?