fixed gpu::meanShiftSegmentation docs

pull/13383/head
Alexey Spizhevoy 14 years ago
parent ca1584dd1f
commit bf034f9927
  1. 6
      modules/gpu/doc/image_processing.rst

@ -55,9 +55,9 @@ gpu::meanShiftSegmentation
------------------------------
.. cpp:function:: void gpu::meanShiftSegmentation(const GpuMat& src, Mat& dst, int sp, int sr, int minsize, TermCriteria criteria = TermCriteria(TermCriteria::MAX_ITER + TermCriteria::EPS, 5, 1))
Performs mean-shift segmentation of the source image and eleminates small segments.
Performs mean-shift segmentation of the source image and eliminates small segments.
:param src: Source image. Only ``CV_8UC4`` images are supported for now.
:param src: Source ``CV_8UC4`` image.
:param dst: Segmented image. Will have the same size and type as ``src``.
@ -65,7 +65,7 @@ gpu::meanShiftSegmentation
:param sr: Color window radius.
:param minsize: Minimum segment size. Smaller segements will be merged.
:param minsize: Minimum segment size. Smaller segements will be eliminated.
:param criteria: Termination criteria. See :c:type:`TermCriteria`.

Loading…
Cancel
Save