SegmLinkVal       110 modules/cudaimgproc/src/mssegmentation.cpp     SegmLinkVal(int dr_, int dsp_) : dr(dr_), dsp(dsp_) {}
SegmLinkVal       111 modules/cudaimgproc/src/mssegmentation.cpp     bool operator <(const SegmLinkVal& other) const
SegmLinkVal       123 modules/cudaimgproc/src/mssegmentation.cpp     SegmLink(int from_, int to_, const SegmLinkVal& val_)
SegmLinkVal       131 modules/cudaimgproc/src/mssegmentation.cpp     SegmLinkVal val;
SegmLinkVal       245 modules/cudaimgproc/src/mssegmentation.cpp     Graph<SegmLinkVal> g(nrows * ncols, 4 * (nrows - 1) * (ncols - 1)
SegmLinkVal       289 modules/cudaimgproc/src/mssegmentation.cpp             g.addEdge(pix(y, x, ncols), pix(y, x + 1, ncols), SegmLinkVal(dr[0], dsp[0]));
SegmLinkVal       290 modules/cudaimgproc/src/mssegmentation.cpp             g.addEdge(pix(y, x, ncols), pix(y + 1, x, ncols), SegmLinkVal(dr[1], dsp[1]));
SegmLinkVal       291 modules/cudaimgproc/src/mssegmentation.cpp             g.addEdge(pix(y, x, ncols), pix(y + 1, x + 1, ncols), SegmLinkVal(dr[2], dsp[2]));
SegmLinkVal       292 modules/cudaimgproc/src/mssegmentation.cpp             g.addEdge(pix(y, x + 1, ncols), pix(y + 1, x, ncols), SegmLinkVal(dr[3], dsp[3]));
SegmLinkVal       303 modules/cudaimgproc/src/mssegmentation.cpp         g.addEdge(pix(y, ncols - 1, ncols), pix(y + 1, ncols - 1, ncols), SegmLinkVal(dr[0], dsp[0]));
SegmLinkVal       313 modules/cudaimgproc/src/mssegmentation.cpp         g.addEdge(pix(nrows - 1, x, ncols), pix(nrows - 1, x + 1, ncols), SegmLinkVal(dr[0], dsp[0]));