本文整理匯總了Python中params.Params.voxel方法的典型用法代碼示例。如果您正苦於以下問題:Python Params.voxel方法的具體用法?Python Params.voxel怎麽用?Python Params.voxel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類params.Params
的用法示例。
在下文中一共展示了Params.voxel方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Params
# 需要導入模塊: from params import Params [as 別名]
# 或者: from params.Params import voxel [as 別名]
from params import Params
from postmethods import *
from test_settings import *
# Test_Blosc
# 1 - test_get_blosc
# 2 - test_post_blosc
p = Params()
p.token = 'unittest'
p.resolution = 0
p.channels = ['IMAGE1', 'IMAGE2']
p.window = [0,500]
p.channel_type = TIMESERIES
p.datatype = UINT8
p.voxel = [4.0,4.0,3.0]
class Test_Blosc:
def setup_class(self):
makeunitdb.createTestDB(p.token, channel_list=p.channels, channel_type=p.channel_type, channel_datatype=p.datatype)
def teardown_class(self):
makeunitdb.deleteTestDB(p.token)
def test_get_blosc (self):
"""Test the xy slice cutout"""
p.args = (3000,3100,4000,4100,200,201,10, 12)