HomeSort by relevance Sort by last modified time
    Searched refs:mofs (Results 1 - 3 of 3) sorted by null

  /external/opencv/cv/src/
cvsegmentation.cpp 115 #define ws_push(idx,mofs,iofs) \
122 node->mask_ofs = mofs; \
131 #define ws_pop(idx,mofs,iofs) \
139 mofs = node->mask_ofs; \
241 int mofs, iofs; local
256 ws_pop( active_queue, mofs, iofs );
258 m = mask + mofs;
288 ws_push( t, mofs - 1, iofs - 3 );
295 ws_push( t, mofs + 1, iofs + 3 );
302 ws_push( t, mofs - mstep, iofs - istep )
    [all...]
  /external/opencv3/modules/imgproc/src/
segmentation.cpp 118 // Create a new node with offsets mofs and iofs in queue idx
119 #define ws_push(idx,mofs,iofs) \
126 storage[node].mask_ofs = mofs; \
136 #define ws_pop(idx,mofs,iofs) \
144 mofs = storage[node].mask_ofs; \
239 int mofs, iofs; local
257 ws_pop( active_queue, mofs, iofs );
260 m = mask + mofs;
297 ws_push( t, mofs - 1, iofs - 3 );
304 ws_push( t, mofs + 1, iofs + 3 )
    [all...]
  /external/opencv3/modules/imgproc/test/
test_floodfill.cpp 232 int mofs, iofs; member in struct:ff_offset_pair_t
283 p0.mofs = seed_pt.y*mstep + seed_pt.x;
286 if( m[p0.mofs] )
290 m[p0.mofs] = (ushort)new_mask_val;
330 ushort* mptr = m + p0.mofs;
342 p.mofs = p0.mofs + md;
375 ushort* mptr = m + p0.mofs;
394 p.mofs = p0.mofs + md
    [all...]

Completed in 127 milliseconds