Commit c057457a622199a29054d3bb151f8a49fda46224
1 parent
c2ec9c16
Frames is not trainable, so set the appropriate variable to false.
Showing
1 changed file
with
1 additions
and
1 deletions
openbr/plugins/frames.cpp
| ... | ... | @@ -19,7 +19,7 @@ class AggregateFrames : public TimeVaryingTransform |
| 19 | 19 | TemplateList buffer; |
| 20 | 20 | |
| 21 | 21 | public: |
| 22 | - AggregateFrames() : TimeVaryingTransform(false) {} | |
| 22 | + AggregateFrames() : TimeVaryingTransform(false, false) {} | |
| 23 | 23 | |
| 24 | 24 | private: |
| 25 | 25 | void train(const TemplateList &data) | ... | ... |