本文整理汇总了Python中preprocessor.Preprocessor.load_npy方法的典型用法代码示例。如果您正苦于以下问题:Python Preprocessor.load_npy方法的具体用法?Python Preprocessor.load_npy怎么用?Python Preprocessor.load_npy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类preprocessor.Preprocessor
的用法示例。
在下文中一共展示了Preprocessor.load_npy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _test_bg_subtraction2
# 需要导入模块: from preprocessor import Preprocessor [as 别名]
# 或者: from preprocessor.Preprocessor import load_npy [as 别名]
def _test_bg_subtraction2(self):
p = Preprocessor(10)
s = p.load_npy('./test.npy')
generator = DataPreparator("", "", 512)
samples1=len(s[0,:])
snew,sbg = generator.bg_subtraction(s)
samples2=len(snew[0,:])
self.assertGreater(samples1, samples2)
示例2: _test_bg_subtraction
# 需要导入模块: from preprocessor import Preprocessor [as 别名]
# 或者: from preprocessor.Preprocessor import load_npy [as 别名]
def _test_bg_subtraction(self):
p=Preprocessor(10)
s=p.load_npy('./test.npy')
generator = DataPreparator("", "", 512)
mask, vector = generator.create_mask(s)
self.assertGreater(np.sum(vector), 120)