dcmtk ライブラリを使用して、マルチ フレーム圧縮された dicom イメージのピクセル データを変更しています。そのためには、ループのある段階で、for
解凍された各フレームのピクセル データを取得し、必要に応じてそれらを変更し、変更された各ピクセル データをフレームごとに大きなメモリ バッファーに連結しようとします。for
このループのコア プロセスは次のとおりです。
問題は、最初の繰り返しの後、関数を呼び出すコードの行にメモリを与えることgetUncompressedFrame
です。memcpy(fullBuffer+(i*sizeF),newBuffer,sizeF);
その行を削除すると、その時点でエラーは発生せず、 for ループ全体が完全に正常に機能するため、行が原因で発生していると思います。
memcpy の操作で間違いを犯している場合は、教えていただけますか? ありがとう。
Uint32 sizeF=828072;// I just wrote it to show what is the data type.
Uint8 * fullBuffer = new Uint8(int(sizeF*numOfFrames));//The big memory buffer
for(int i=0;i<numOfFrames;i++)
{
Uint8 * buffer = new Uint8[int(sizeF)];//Buffer for each frame
Uint8 * newBuffer = new Uint8[int(sizeF)];//Buffer in which the modified frame data is stored
DcmFileCache * cache=NULL;
OFCondition cond=element->getUncompressedFrame(dataset,i,startFragment,buffer,sizeF,decompressedColorModel,cache);
//I get the uncompressed individual frame pixel data
if(buffer != NULL)
{
for(unsigned long y = 0; y < rows; y++)
{
for(unsigned long x = 0; x < cols; x++)
{
if(planarConfiguration==0)
{
if(x>xmin && x<xmax && y>ymin && y<ymax)
{
index=(x + y + y*(cols-1))*samplePerPixel;
if(index<sizeF-2)
{
newBuffer[index] = 0;
newBuffer[index + 1] = 0;
newBuffer[index +2] = 0;
}
}
else
{
index=(x + y + y*(cols-1))*samplePerPixel;
if(index<sizeF-2)
{
newBuffer[index] = buffer[index];
newBuffer[index + 1] = buffer[index + 1];
newBuffer[index + 2] = buffer[index + 2];
}
}
}
}
}
memcpy(fullBuffer+(i*sizeF),newBuffer,sizeF);
//concatenate the modified frame by frame pixel data
}