Home | History | Annotate | Download | only in src

Lines Matching refs:OutputArray

50 void cv::cuda::calcHist(InputArray, OutputArray, Stream&) { throw_no_cuda(); }
52 void cv::cuda::equalizeHist(InputArray, OutputArray, Stream&) { throw_no_cuda(); }
56 void cv::cuda::evenLevels(OutputArray, int, int, int, Stream&) { throw_no_cuda(); }
58 void cv::cuda::histEven(InputArray, OutputArray, InputOutputArray, int, int, int, Stream&) { throw_no_cuda(); }
61 void cv::cuda::histRange(InputArray, OutputArray, InputArray, InputOutputArray, Stream&) { throw_no_cuda(); }
74 void cv::cuda::calcHist(InputArray _src, OutputArray _hist, Stream& stream)
96 void cv::cuda::equalizeHist(InputArray _src, OutputArray _dst, Stream& _stream)
143 void apply(cv::InputArray src, cv::OutputArray dst);
144 void apply(InputArray src, OutputArray dst, Stream& stream);
168 void CLAHE_Impl::apply(cv::InputArray _src, cv::OutputArray _dst)
173 void CLAHE_Impl::apply(InputArray _src, OutputArray _dst, Stream& s)
284 static void hist(const GpuMat& src, OutputArray _hist, int histSize, int lowerLevel, int upperLevel, Stream& stream)
388 static void hist(const GpuMat& src, OutputArray _hist, const GpuMat& levels, Stream& stream)
456 void cv::cuda::evenLevels(OutputArray _levels, int nLevels, int lowerLevel, int upperLevel, Stream& stream)
489 void cv::cuda::histEven(InputArray _src, OutputArray hist, int histSize, int lowerLevel, int upperLevel, Stream& stream)
491 typedef void (*hist_t)(const GpuMat& src, OutputArray hist, int levels, int lowerLevel, int upperLevel, Stream& stream);
531 void cv::cuda::histRange(InputArray _src, OutputArray hist, InputArray _levels, Stream& stream)
533 typedef void (*hist_t)(const GpuMat& src, OutputArray hist, const GpuMat& levels, Stream& stream);