コード例 #1
0
ファイル: cvolume.py プロジェクト: 151706061/connectomeviewer
    def vol_vis(self):
        """ Invokes the Volume Visualizer by Gael Varoquaux """
        
        if not self.loaded:
            self.load()
        
        from cviewer.visualization.volume.thread_volslice import ThreadedVolumeSlicer

        logger.debug('Invoke Volume Slicer...')

        action = ThreadedVolumeSlicer(fname = self.obj.tmpsrc)
        action.start()
コード例 #2
0
    def vol_vis(self):
        """ Invokes the Volume Visualizer by Gael Varoquaux """

        if not self.loaded:
            self.load()

        from cviewer.visualization.volume.thread_volslice import ThreadedVolumeSlicer

        logger.debug('Invoke Volume Slicer...')

        action = ThreadedVolumeSlicer(fname=self.obj.tmpsrc)
        action.start()
コード例 #3
0
ファイル: volume.py プロジェクト: satra/connectomeviewer
    def vol_vis(self):
        """ Invokes the Volume Visualizer by Gael Varoquaux """
        
        if self.volume is None:
            self.load_volume()
        
        from cviewer.visualization.volume.thread_volslice import ThreadedVolumeSlicer

        logger.debug('Invoke Volume Slicer...')

        action = ThreadedVolumeSlicer(fname = self._tmpvolfile)
        action.start()