本文整理匯總了Python中params.Params.args方法的典型用法代碼示例。如果您正苦於以下問題:Python Params.args方法的具體用法?Python Params.args怎麽用?Python Params.args使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類params.Params
的用法示例。
在下文中一共展示了Params.args方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Params
# 需要導入模塊: from params import Params [as 別名]
# 或者: from params.Params import args [as 別名]
import makeunitdb
from params import Params
from postmethods import postNPZ, getNPZ
import kvengine_to_test
import site_to_test
SITE_HOST = site_to_test.site
from ocptype import UINT8, UINT16, UINT32, ANNOTATION, IMAGE
from OCP import celery_app
p = Params()
p.token = 'unittest'
p.channels = ['testchannel']
p.args = (0,1024,0,1024,1,11)
class Test_Histogram8:
def setup_class(self):
"""Create the unittest database"""
makeunitdb.createTestDB(p.token, p.channels, channel_type=IMAGE, channel_datatype=UINT8, public=True, ximagesize=1024, yimagesize=1024, zimagesize=10, xvoxelres=1.0, yvoxelres=1.0, zvoxelres=10.0, readonly=0)
def teardown_class (self):
"""Destroy the unittest database"""
makeunitdb.deleteTestDB(p.token)
def test_genhistogram (self):
"""Test generating an 8bit histogram"""
image_data = np.random.randint(0, high=255, size=[1, 10, 1024, 1024]).astype(np.uint8)