| 20 | #include "IPLLoadImageSequence.h" |
| 21 | |
| 22 | void IPLLoadImageSequence::init() |
| 23 | { |
| 24 | // init |
| 25 | _result = NULL; |
| 26 | _folder = ""; |
| 27 | _sequenceCount = 0; |
| 28 | _sequenceIndex = 0; |
| 29 | |
| 30 | // basic settings |
| 31 | setClassName("IPLLoadImageSequence"); |
| 32 | setTitle("Load Sequence"); |
| 33 | setCategory(IPLProcess::CATEGORY_IO); |
| 34 | setIsSource(true); |
| 35 | |
| 36 | // inputs and outputs |
| 37 | addOutput("Image", IPL_IMAGE_COLOR); |
| 38 | |
| 39 | // all properties which can later be changed by gui |
| 40 | addProcessPropertyString("folder", "Folder", "", _folder, IPL_WIDGET_FOLDER); |
| 41 | } |
| 42 | |
| 43 | void IPLLoadImageSequence::destroy() |
| 44 | { |
nothing calls this directly
no test coverage detected