MCPcopy Create free account
hub / github.com/cpvrlab/ImagePlay / init

Method init

IPL/src/processes/IPLLoadImageSequence.cpp:22–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20#include "IPLLoadImageSequence.h"
21
22void 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
43void IPLLoadImageSequence::destroy()
44{

Callers

nothing calls this directly

Calls 4

setClassNameFunction · 0.85
setTitleFunction · 0.85
setCategoryFunction · 0.85
setIsSourceFunction · 0.85

Tested by

no test coverage detected