Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

I came, I saw, I deleted all your files.


devel / comp.protocols.dicom / Re: JPEG 2000 Part 2 Multicomponent Sample DICOM

SubjectAuthor
* JPEG 2000 Part 2 Multicomponent Sample DICOMSubhashree Ravichandran
`* Re: JPEG 2000 Part 2 Multicomponent Sample DICOMDavid Gobbi
 `* Re: JPEG 2000 Part 2 Multicomponent Sample DICOMSubhashree Ravichandran
  `* Re: JPEG 2000 Part 2 Multicomponent Sample DICOMDavid Gobbi
   +- Re: JPEG 2000 Part 2 Multicomponent Sample DICOMSubhashree Ravichandran
   `- Re: JPEG 2000 Part 2 Multicomponent Sample DICOMMathieu Malaterre

1
JPEG 2000 Part 2 Multicomponent Sample DICOM

<937080f9-753e-44da-87a0-8b31ad8fd131n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=173&group=comp.protocols.dicom#173

  copy link   Newsgroups: comp.protocols.dicom
X-Received: by 2002:a37:9e4f:: with SMTP id h76mr1499974qke.24.1628722959504;
Wed, 11 Aug 2021 16:02:39 -0700 (PDT)
X-Received: by 2002:a05:620a:1022:: with SMTP id a2mr1578922qkk.136.1628722959254;
Wed, 11 Aug 2021 16:02:39 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!border1.nntp.ams1.giganews.com!nntp.giganews.com!feeder1.cambriumusenet.nl!feed.tweak.nl!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.protocols.dicom
Date: Wed, 11 Aug 2021 16:02:38 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=148.64.18.116; posting-account=XDHvCgoAAABHRr0_jB4OdZrvhC5wr8Gk
NNTP-Posting-Host: 148.64.18.116
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <937080f9-753e-44da-87a0-8b31ad8fd131n@googlegroups.com>
Subject: JPEG 2000 Part 2 Multicomponent Sample DICOM
From: divsub87@gmail.com (Subhashree Ravichandran)
Injection-Date: Wed, 11 Aug 2021 23:02:39 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 4
 by: Subhashree Ravichand - Wed, 11 Aug 2021 23:02 UTC

Does anyone know how I can find DICOM studies with the 2 transfer syntaxes?

1.2.840.10008.1.2.4.93 - JPEG 2000 Part 2 Multicomponent Image Compression

1.2.840.10008.1.2.4.92 - JPEG 2000 Part 2 Multicomponent Image Compression (Lossless Only)

Re: JPEG 2000 Part 2 Multicomponent Sample DICOM

<f886fd0c-12ce-46a0-8df8-3b67099c8c95n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=175&group=comp.protocols.dicom#175

  copy link   Newsgroups: comp.protocols.dicom
X-Received: by 2002:a05:620a:538:: with SMTP id h24mr4526798qkh.18.1628774347665; Thu, 12 Aug 2021 06:19:07 -0700 (PDT)
X-Received: by 2002:a05:620a:214e:: with SMTP id m14mr685010qkm.2.1628774347501; Thu, 12 Aug 2021 06:19:07 -0700 (PDT)
Path: i2pn2.org!i2pn.org!news.uzoreto.com!tr1.eu1.usenetexpress.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.protocols.dicom
Date: Thu, 12 Aug 2021 06:19:07 -0700 (PDT)
In-Reply-To: <937080f9-753e-44da-87a0-8b31ad8fd131n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=198.48.161.196; posting-account=oJk4vAoAAAAuHqwGdLwYUlL776upyWJ3
NNTP-Posting-Host: 198.48.161.196
References: <937080f9-753e-44da-87a0-8b31ad8fd131n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f886fd0c-12ce-46a0-8df8-3b67099c8c95n@googlegroups.com>
Subject: Re: JPEG 2000 Part 2 Multicomponent Sample DICOM
From: david.gobbi@gmail.com (David Gobbi)
Injection-Date: Thu, 12 Aug 2021 13:19:07 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 29
 by: David Gobbi - Thu, 12 Aug 2021 13:19 UTC

If you have the studies as a set of files on disk (either with or without a DICOMDIR), then this is possible with my "dicomtools" package of command-line tools, which can be downloaded here:

https://github.com/dgobbi/vtk-dicom/releases

and which are documented here:

https://github.com/dgobbi/vtk-dicom/wiki/Command-Line-Tools

Or, if you use linux, it can be installed on debian via "apt-get install vtk-dicom-tools".

For the task of finding studies with a particular attribute that exist in subdirectories of your current directory, the following will build a spreadsheet showing the TransferSyntaxUID as well as other basic information for each study. The "--study" option indicates a search at the study level, and "." indicates a search from the current directory.

dicomtocsv -o spreadsheet.csv --study . -k TransferSyntaxUID=1.2.840.10008.1.2.4.93 -k AccessionNumber -k StudyID -k StudyDescription -k StudyInstanceUID -k ReferencedFileID

The "dicomfind" command-line tool is even more powerful, in that it can find dicom files with certain attributes and then run another command-line tool on them (for example, to find and decompress any files with a certain transfer syntax).

My apologies if I've misunderstood your question.

Re: JPEG 2000 Part 2 Multicomponent Sample DICOM

<31001ad3-3009-42c5-a57d-035d17b33278n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=176&group=comp.protocols.dicom#176

  copy link   Newsgroups: comp.protocols.dicom
X-Received: by 2002:ac8:5ecd:: with SMTP id s13mr4768031qtx.16.1628787207604;
Thu, 12 Aug 2021 09:53:27 -0700 (PDT)
X-Received: by 2002:ac8:705e:: with SMTP id y30mr4640807qtm.239.1628787207368;
Thu, 12 Aug 2021 09:53:27 -0700 (PDT)
Path: i2pn2.org!i2pn.org!news.niel.me!usenet.pasdenom.info!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.protocols.dicom
Date: Thu, 12 Aug 2021 09:53:27 -0700 (PDT)
In-Reply-To: <f886fd0c-12ce-46a0-8df8-3b67099c8c95n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=148.64.20.71; posting-account=XDHvCgoAAABHRr0_jB4OdZrvhC5wr8Gk
NNTP-Posting-Host: 148.64.20.71
References: <937080f9-753e-44da-87a0-8b31ad8fd131n@googlegroups.com> <f886fd0c-12ce-46a0-8df8-3b67099c8c95n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <31001ad3-3009-42c5-a57d-035d17b33278n@googlegroups.com>
Subject: Re: JPEG 2000 Part 2 Multicomponent Sample DICOM
From: divsub87@gmail.com (Subhashree Ravichandran)
Injection-Date: Thu, 12 Aug 2021 16:53:27 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Subhashree Ravichand - Thu, 12 Aug 2021 16:53 UTC

I am looking for ways to obtain sample DICOMs for these two transfer syntaxes or convert an existing DICOM to these two transfer syntaxes.

Re: JPEG 2000 Part 2 Multicomponent Sample DICOM

<060c2981-18c9-43b4-8885-e71c96ded66dn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=177&group=comp.protocols.dicom#177

  copy link   Newsgroups: comp.protocols.dicom
X-Received: by 2002:a05:620a:15ad:: with SMTP id f13mr5920843qkk.0.1628790418164;
Thu, 12 Aug 2021 10:46:58 -0700 (PDT)
X-Received: by 2002:a05:6214:3b1:: with SMTP id m17mr5179870qvy.60.1628790418043;
Thu, 12 Aug 2021 10:46:58 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!feeder1.feed.usenet.farm!feed.usenet.farm!news.uzoreto.com!feeder1.cambriumusenet.nl!feed.tweak.nl!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.protocols.dicom
Date: Thu, 12 Aug 2021 10:46:57 -0700 (PDT)
In-Reply-To: <31001ad3-3009-42c5-a57d-035d17b33278n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=198.48.161.196; posting-account=oJk4vAoAAAAuHqwGdLwYUlL776upyWJ3
NNTP-Posting-Host: 198.48.161.196
References: <937080f9-753e-44da-87a0-8b31ad8fd131n@googlegroups.com>
<f886fd0c-12ce-46a0-8df8-3b67099c8c95n@googlegroups.com> <31001ad3-3009-42c5-a57d-035d17b33278n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <060c2981-18c9-43b4-8885-e71c96ded66dn@googlegroups.com>
Subject: Re: JPEG 2000 Part 2 Multicomponent Sample DICOM
From: david.gobbi@gmail.com (David Gobbi)
Injection-Date: Thu, 12 Aug 2021 17:46:58 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: David Gobbi - Thu, 12 Aug 2021 17:46 UTC

Looks like I totally misunderstood! I've never seen these transfer syntaxes, just plenty of JPEG 2000 Part 1 files. And a search of this group indicates that other people have searched unsuccessfully, too. The most recent news I could find on JPEG 2000 Part 2 DICOM files was an Aware Inc. white paper from 2013. Perhaps they are the only ones who have fully implemented this part of the standard.

Re: JPEG 2000 Part 2 Multicomponent Sample DICOM

<f456f4dd-6e84-4e02-8571-21ebd8e474bbn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=178&group=comp.protocols.dicom#178

  copy link   Newsgroups: comp.protocols.dicom
X-Received: by 2002:ac8:4659:: with SMTP id f25mr3467516qto.143.1628804181356;
Thu, 12 Aug 2021 14:36:21 -0700 (PDT)
X-Received: by 2002:a05:6214:e4d:: with SMTP id o13mr6180190qvc.62.1628804181066;
Thu, 12 Aug 2021 14:36:21 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.protocols.dicom
Date: Thu, 12 Aug 2021 14:36:20 -0700 (PDT)
In-Reply-To: <060c2981-18c9-43b4-8885-e71c96ded66dn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=148.64.20.71; posting-account=XDHvCgoAAABHRr0_jB4OdZrvhC5wr8Gk
NNTP-Posting-Host: 148.64.20.71
References: <937080f9-753e-44da-87a0-8b31ad8fd131n@googlegroups.com>
<f886fd0c-12ce-46a0-8df8-3b67099c8c95n@googlegroups.com> <31001ad3-3009-42c5-a57d-035d17b33278n@googlegroups.com>
<060c2981-18c9-43b4-8885-e71c96ded66dn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f456f4dd-6e84-4e02-8571-21ebd8e474bbn@googlegroups.com>
Subject: Re: JPEG 2000 Part 2 Multicomponent Sample DICOM
From: divsub87@gmail.com (Subhashree Ravichandran)
Injection-Date: Thu, 12 Aug 2021 21:36:21 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Subhashree Ravichand - Thu, 12 Aug 2021 21:36 UTC

Thanks David.

Re: JPEG 2000 Part 2 Multicomponent Sample DICOM

<e4c25b1f-d6d8-4d66-80c2-55da417bb7d0n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=184&group=comp.protocols.dicom#184

  copy link   Newsgroups: comp.protocols.dicom
X-Received: by 2002:a37:634d:: with SMTP id x74mr19555909qkb.453.1629705529016;
Mon, 23 Aug 2021 00:58:49 -0700 (PDT)
X-Received: by 2002:a05:622a:1392:: with SMTP id o18mr28331907qtk.117.1629705528751;
Mon, 23 Aug 2021 00:58:48 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.protocols.dicom
Date: Mon, 23 Aug 2021 00:58:48 -0700 (PDT)
In-Reply-To: <060c2981-18c9-43b4-8885-e71c96ded66dn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2a01:e0a:343:1a00:6890:b11e:64e:ad1d;
posting-account=5syELgoAAABMLWsjbxhk8Wo7CLxGgTPG
NNTP-Posting-Host: 2a01:e0a:343:1a00:6890:b11e:64e:ad1d
References: <937080f9-753e-44da-87a0-8b31ad8fd131n@googlegroups.com>
<f886fd0c-12ce-46a0-8df8-3b67099c8c95n@googlegroups.com> <31001ad3-3009-42c5-a57d-035d17b33278n@googlegroups.com>
<060c2981-18c9-43b4-8885-e71c96ded66dn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <e4c25b1f-d6d8-4d66-80c2-55da417bb7d0n@googlegroups.com>
Subject: Re: JPEG 2000 Part 2 Multicomponent Sample DICOM
From: mathieu.malaterre@gmail.com (Mathieu Malaterre)
Injection-Date: Mon, 23 Aug 2021 07:58:49 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Mathieu Malaterre - Mon, 23 Aug 2021 07:58 UTC

On Thursday, August 12, 2021 at 7:46:59 PM UTC+2, david...@gmail.com wrote:
> Looks like I totally misunderstood! I've never seen these transfer syntaxes, just plenty of JPEG 2000 Part 1 files. And a search of this group indicates that other people have searched unsuccessfully, too. The most recent news I could find on JPEG 2000 Part 2 DICOM files was an Aware Inc. white paper from 2013. Perhaps they are the only ones who have fully implemented this part of the standard.

Just for later reference, DICOM does not require a full implementation of Part2 of JPEG 2000, basically you only need the MCT extension:

* http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_A.4.4.html

Luckily OpenJPEG does implement this Part 2 extension, so any DICOM toolkit built on top of OpenJPEG should support those Transfer Syntaxes.

2cts

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor