Skip to content

Commit

Permalink
reopen
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Jan 29, 2025
1 parent 09a8fb0 commit 73957a4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Rdmp.Dicom/Extraction/DicomTagToCSV.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,12 @@ public DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEventListener

var sw = new StreamWriter(filepath);
using var w = new CsvWriter(sw, System.Globalization.CultureInfo.InvariantCulture);
w.WriteRecords(
dcm.Item2.Dataset.SelectMany(t => Entry.ProcessTag(dcm.Item1, t))
);
//w.WriteRecords(
//dcm.Item2.Dataset.SelectMany(t => Entry.ProcessTag(dcm.Item1, t))
//);
w.WriteRecord(
DicomFile.Open(dcm.Item1).Dataset.SelectMany(t => Entry.ProcessTag(dcm.Item1, t))
);
}

return toProcess;
Expand Down

0 comments on commit 73957a4

Please sign in to comment.