Make a sampleset work transparently with list of DelayedSamples
Compare changes
+ 20
− 1
@@ -2,7 +2,10 @@ import bob.pipelines as mario
@@ -28,3 +31,19 @@ def test_sampleset_collection():
\ No newline at end of file
This makes us able to make
SampleSet([Sample(1),Sample(2)])
equals to SampleSet(DelayedSample(load_function))
where load_function
loads [Sample(1),Sample(2)]