diff --git a/openbr/core/core.cpp b/openbr/core/core.cpp index 0b56d71..acde657 100644 --- a/openbr/core/core.cpp +++ b/openbr/core/core.cpp @@ -706,7 +706,7 @@ QSharedPointer br::Transform::fromAlgorithm(const QString &algori return AlgorithmManager::getAlgorithm(algorithm)->transform; else { QSharedPointer orig_tform = AlgorithmManager::getAlgorithm(algorithm)->transform; - QSharedPointer newRoot = QSharedPointer(Transform::make("Stream(Identity)", NULL)); + QSharedPointer newRoot = QSharedPointer(Transform::make("Stream(Identity, readMode=DistributeFrames)", NULL)); WrapperTransform * downcast = dynamic_cast (newRoot.data()); downcast->transform = orig_tform.data(); downcast->init();