|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
hi,
announcing version 0.4.0 of the 'df3 tools'for working with DF3 files,
consisting of a C language library, a "Swiss army knife" type utility, and a
database virtual table extension.
since the previous release, the library has gained two functions to make working
with 16-bit and 32-bit DF3s easier, and lost one bug -- file modification times
had not been recorded.
the utility program has a new command, list, to dump selected DF3 contents to
stdout, in a number of formats including one that's template-based, user
defined. the importing of .png data has been improved to allow the processing
of colour images.
the Sqlite3 virtual table extension now provides an "introspection" SQL function
which reports details of the underlying DF3 file(s).
the software should build without warnings or errors on any POSIX-ish 64-bit os,
any existing installation of the 'df3 tools' must be uninstalled first.
the files are available for download via these links:
the library, needs to be installed first:
https://drive.google.com/file/d/1uPn5qxeVSvhbNnwkdLkQuR1qa5fBEwoX/view?usp=sharing
the utility:
https://drive.google.com/file/d/1SLkPuXoBiYvAMt8i89m7V5gVTUMfpTHU/view?usp=sharing
and the SQlite3 extension:
https://drive.google.com/file/d/17PA14CISXFqRKYOcpSY_Ubw08dWIMy--/view?usp=sharing
as always, hints, tips, and constructive criticisms welcome.
enjoy, jr.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
a tiny Tcl script to calculate the average density of a given DF3 file,
quickly written to demonstrate .. fringe benefits. :-)
assumes 'spiral.df3' (from the POV-Ray sources) in the current working directory
(or a link).
jr@crow:1:demo$ c### [at] voxavgtcl
# voxavg.tcl - average density of DF3.
set n 0
set t 0
foreach {x y z v} [read stdin] {
incr n
incr t $v
}
set avg [expr {($t + 0.0) / $n}]
puts [format {read %d voxels, total %d, average density %g.} $n $t $avg]
jr@crow:2:demo$ df3util -o tcl list spiral . . | tclsh voxavg.tcl
read 12500 voxels, total 171009, average density 13.6807.
enjoy, jr.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
in news:web.5b43d8aa43fdfea9635cc5ad0@news.povray.org jr wrote:
> and the SQlite3 extension
Nice. I once tried to stash a big df3 in an R-tree module table. Sqlite
didn't realy like it :)
ingo
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
hi,
ingo <ing### [at] tagpovrayorg> wrote:
> in news:web.5b43d8aa43fdfea9635cc5ad0@news.povray.org jr wrote:
> > and the SQlite3 extension
>
> Nice. I once tried to stash a big df3 in an R-tree module table. Sqlite
> didn't realy like it :)
tsk, tsk. :-)
thank you for trying it. let me know if you encounter problems.
regards, jr.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 10/07/2018 00:55, jr wrote:
> hi,
>
> announcing version 0.4.0 of the 'df3 tools'for working with DF3 files,
> consisting of a C language library, a "Swiss army knife" type utility, and a
> database virtual table extension.
Hi, jr !
Thank you very much for sharing this great toolset and library, I have
built them successfully and now plan to use in my new volume
visualization project. The goal is to create an online visualization
tool of medical data in DICOM format, common voxelized data in OpenVSD
format, and show results in WebXR as stereopair.
The server-side rendering is doing by HgPovray38 - there is a pilot
version of this system that can be used as a sketchbook for experiments:
https://povlab.online/?scene=vol_3_slice.pov
As for WebXR, I already have an online gallery of stereo images rendered
with HgPovray that can be viewed in any VR headset. I will share the
link to it in a few days with more details in a separate post after some
cleanup.
The most important part of the project now is importing data from DICOM
and OpenVSD.
For DICOM I am looking at https://dicom.offis.de/dcmtk.php.en.
OpenVSD, have an universal tool that, I believe, can be extended to
export df3 without serious effort:
https://dirsig.cis.rit.edu/docs/new/vdb_tool.html
If you are still interested in df3 volumes, I will be glad to hear any
suggestions, thoughts, criticisms from you. And if you would like to
join this project somehow - you are welcome !
--
YB
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 10/07/2018 00:55, jr wrote:
> hi,
>
> announcing version 0.4.0 of the 'df3 tools'for working with DF3 files,
> consisting of a C language library, a "Swiss army knife" type utility, and a
> database virtual table extension.
--
Hi, jr !
Thank you very much for sharing this great toolset and library, I have
built them successfully and now plan to use in my new volume
visualization project. The goal is to create an online visualization
tool of medical data in DICOM format, common voxelized data in OpenVSD
format, and show results in WebXR as stereopair.
The server-side rendering is doing by HgPovray38 - there is a pilot
version of this system that can be used as a sketchbook for experiments:
https://povlab.online/?scene=vol_3_slice.pov
As for WebXR, I already have an online gallery of stereo images rendered
with HgPovray that can be viewed in any VR headset. I will share the
link to it in a few days with more details in a separate post after some
cleanup.
The most important part of the project now is importing data from DICOM
and OpenVSD.
For DICOM I am looking at https://dicom.offis.de/dcmtk.php.en.
OpenVSD, have an universal tool that, I believe, can be extended to
export df3 without serious effort:
https://dirsig.cis.rit.edu/docs/new/vdb_tool.html
If you are still interested in df3 volumes, I will be glad to hear any
suggestions, thoughts, criticisms from you. And if you would like to
join this project somehow - you are welcome !
--
YB
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 10/07/2018 00:55, jr wrote:
> hi,
>
> announcing version 0.4.0 of the 'df3 tools'for working with DF3 files,
> consisting of a C language library, a "Swiss army knife" type utility, and a
> database virtual table extension.
--
Hi, jr !
Thank you very much for sharing this great toolset and library, I have
built them successfully and now plan to use in my new volume
visualization project. The goal is to create an online visualization
tool of medical data in DICOM format, common voxelized data in OpenVSD
format, and show results in WebXR as stereopair.
The server-side rendering is doing by HgPovray38 - there is a pilot
version of this system that can be used as a sketchbook for experiments:
https://povlab.online/?scene=vol_3_slice.pov
As for WebXR, I already have an online gallery of stereo images rendered
with HgPovray that can be viewed in any VR headset. I will share the
link to it in a few days with more details in a separate post after some
cleanup.
The most important part of the project now is importing data from DICOM
and OpenVSD.
For DICOM I am looking at https://dicom.offis.de/dcmtk.php.en.
OpenVSD, have an universal tool that, I believe, can be extended to
export df3 without serious effort:
https://github.com/AcademySoftwareFoundation/openvdb/tree/master/openvdb_cmd/vdb_tool
If you are still interested in df3 volumes, I will be glad to hear any
suggestions, thoughts, criticisms from you. And if you would like to
join this project somehow - you are welcome !
--
YB
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 10/07/2018 00:55, jr wrote:
> hi,
>
> announcing version 0.4.0 of the 'df3 tools'for working with DF3 files,
> consisting of a C language library, a "Swiss army knife" type utility, and a
> database virtual table extension.
--
Hi, jr !
Thank you very much for sharing this great toolset and library, I have
built them successfully and now plan to use in my new volume
visualization project. The goal is to create an online visualization
tool of medical data in DICOM format, common voxelized data in OpenVDB
format, and show results in WebXR as stereopair.
The server-side rendering is doing by HgPovray38 - there is a pilot
version of this system that can be used as a sketchbook for experiments:
https://povlab.online/?scene=vol_3_slice.pov
As for WebXR, I already have an online gallery of stereo images rendered
with HgPovray that can be viewed in any VR headset. I will share the
link to it in a few days with more details in a separate post after some
cleanup.
The most important part of the project now is importing data from DICOM
and OpenVDB.
For DICOM I am looking at https://dicom.offis.de/dcmtk.php.en.
OpenVDB have an universal tool that, I believe, can be extended to
export df3 without serious effort:
https://dirsig.cis.rit.edu/docs/new/vdb_tool.html
If you are still interested in df3 volumes, I will be glad to hear any
suggestions, thoughts, criticisms from you. And if you would like to
join this project somehow - you are welcome !
--
YB
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 10/07/2018 00:55, jr wrote:
> hi,
>
> announcing version 0.4.0 of the 'df3 tools'for working with DF3 files,
> consisting of a C language library, a "Swiss army knife" type utility, and a
> database virtual table extension.
--
Hi, jr !
Thank you very much for sharing this great toolset and library, I have
built them successfully and now plan to use in my new volume
visualization project. The goal is to create an online visualization
tool of medical data in DICOM format, common voxelized data in OpenVDB
format, and show results in WebXR as stereopair.
The server-side rendering is doing by HgPovray38 - there is a pilot
version of this system that can be used as a sketchbook for experiments:
https://povlab.online/?scene=vol_3_slice.pov
As for WebXR, I already have an online gallery of stereo images rendered
with HgPovray that can be viewed in any VR headset. I will share the
link to it in a few days with more details in a separate post after some
cleanup.
The most important part of the project now is importing data from DICOM
and OpenVDB.
For DICOM I am looking at https://dicom.offis.de/dcmtk.php.en.
OpenVDB have an universal tool that, I believe, can be extended to
export df3 without serious effort:
https://github.com/AcademySoftwareFoundation/openvdb/tree/master/openvdb_cmd/vdb_tool
If you are still interested in df3 volumes, I will be glad to hear any
suggestions, thoughts, criticisms from you. And if you would like to
join this project somehow - you are welcome !
--
YB
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
hi,
yesbird <sya### [at] gmailcom> wrote:
> On 10/07/2018 00:55, jr wrote:
> > announcing version 0.4.0 of the 'df3 tools'for working with DF3 files,
> Thank you very much for sharing this great toolset and library, I have
> built them successfully and now plan to use in my new volume
> visualization project. The goal is to create an online visualization
> tool of medical data in DICOM format, common voxelized data in OpenVDB
> format, and show results in WebXR as stereopair.
it is a strange world we live in :-). yesterday, early afternoon, true story, I
started to think about a successor to the 'df3 tools' (incl taking notes), the
first time in months! (you must have been thinking very loudly </grin>)
only had a very brief look at the povlab.online, cool idea.
as I've received this post as an email too, I'll reply to that, in the coming
days. cheers.
regards, jr.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
|
|