From: Patrick Mihelich Date: Mon, 27 Feb 2012 00:07:52 +0000 (+0000) Subject: No longer expose internal LINE-MOD methods like response map computation, linearizing... X-Git-Tag: accepted/2.0/20130307.220821~1252 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f483272d097d77aa5faafe73909604fa34f0ae5b;p=profile%2Fivi%2Fopencv.git No longer expose internal LINE-MOD methods like response map computation, linearizing similarities, etc in public header. --- diff --git a/modules/objdetect/include/opencv2/objdetect/objdetect.hpp b/modules/objdetect/include/opencv2/objdetect/objdetect.hpp index bbf9fd7..c81f13a 100644 --- a/modules/objdetect/include/opencv2/objdetect/objdetect.hpp +++ b/modules/objdetect/include/opencv2/objdetect/objdetect.hpp @@ -679,37 +679,6 @@ using cv::Size; /// @todo Convert doxy comments to rst /// @todo Move stuff that doesn't need to be public into linemod.cpp -/** - * \brief Compute quantized orientation image from color image. - * - * Implements section 2.2 "Computing the Gradient Orientations." - * - * \param[in] src The source 8-bit, 3-channel image. - * \param[out] magnitude Destination floating-point array of squared magnitudes. - * \param[out] angle Destination 8-bit array of orientations. Each bit - * represents one bin of the orientation space. - * \param threshold Magnitude threshold. Keep only gradients whose norms are - * larger than this. - */ -void quantizedOrientations(const Mat& src, Mat& magnitude, - Mat& angle, float threshold); - -/** - * \brief Compute quantized normal image from depth image. - * - * Implements section 2.6 "Extension to Dense Depth Sensors." - * - * \param[in] src The source 16-bit depth image (in mm). - * \param[out] dst The destination 8-bit image. Each bit represents one bin of - * the view cone. - * \param distance_threshold Ignore pixels beyond this distance. - * \param difference_threshold When computing normals, ignore contributions of pixels whose - * depth difference with the central pixel is above this threshold. - * - * \todo Should also need camera model, or at least focal lengths? Replace distance_threshold with mask? - */ -void quantizedNormals(const Mat& src, Mat& dst, int distance_threshold, - int difference_threshold = 50); /** * \brief Discriminant feature described by its location and label. @@ -739,15 +708,6 @@ struct Template }; /** - * \brief Crop a set of overlapping templates from different modalities. - * - * \param[in,out] templates Set of templates representing the same object view. - * - * \return The bounding box of all the templates in original image coordinates. - */ -Rect cropTemplates(std::vector