Mercurial > hg > orthanc-stone
view OrthancStone/Samples/WebAssembly/RtViewer/RtViewerWasmWrapper.js @ 1519:22d1bd085c19
split STONE_BINARIES into two different vars for both
StoneWebViewer and RtViewer
+ fixed docker build
+ embed of RtViewer files
+ serving of RtViewer files
+ Orthanc explorer extension to open a series in
the RtViewer : sibling series will be traversed and the
first DOSE/STRUCT will be used.
WARNING: needs work for PT and to allow for missing dose
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Fri, 31 Jul 2020 12:51:28 +0200 |
parents | 244ad1e4e76a |
children |
line wrap: on
line source
const Stone = function() { this._InitializeViewport = undefined; this._LoadOrthanc = undefined; this._LoadDicomWeb = undefined; }; Stone.prototype.Setup = function(Module) { this._InitializeViewport = Module.cwrap('InitializeViewport', null, [ 'string' ]); this._LoadOrthanc = Module.cwrap('LoadOrthanc', null, [ 'string', 'int' ]); this._LoadDicomWeb = Module.cwrap('LoadDicomWeb', null, [ 'string', 'string', 'string', 'string', 'int' ]); }; Stone.prototype.InitializeViewport = function(canvasId) { this._InitializeViewport(canvasId); }; Stone.prototype.LoadOrthanc = function(instance, frame) { this._LoadOrthanc(instance, frame); }; Stone.prototype.LoadDicomWeb = function(server, studyInstanceUid, seriesInstanceUid, sopInstanceUid, frame) { this._LoadDicomWeb(server, studyInstanceUid, seriesInstanceUid, sopInstanceUid, frame); }; var stone = new Stone();