SSE optimized functions.
Functions | |
| bool TFEST_IMPEXP | mrpt::tfest::se2_l2 (const mrpt::utils::TMatchingPairList &in_correspondences, mrpt::math::TPose2D &out_transformation, mrpt::math::CMatrixDouble33 *out_estimateCovariance=NULL) |
| Least-squares (L2 norm) solution to finding the optimal SE(2) (x,y,yaw) between two reference frames. More... | |
| void | image_SSE2_scale_half_1c8u (const uint8_t *in, uint8_t *out, int w, int h) |
| Subsample each 2x2 pixel block into 1x1 pixel, taking the first pixel & ignoring the other 3. More... | |
| void | image_SSE2_scale_half_smooth_1c8u (const uint8_t *in, uint8_t *out, int w, int h) |
| Average each 2x2 pixels into 1x1 pixel (arithmetic average) More... | |
| float | KLT_response_optimized () |
| KLT score at a given point of a grayscale image. More... | |
| void | image_SSSE3_scale_half_3c8u (const uint8_t *in, uint8_t *out, int w, int h) |
| Subsample each 2x2 pixel block into 1x1 pixel, taking the first pixel & ignoring the other 3. More... | |
| template<bool IS_RGB> | |
| void | private_image_SSSE3_rgb_or_bgr_to_gray_8u (const uint8_t *in, uint8_t *out, int w, int h) |
| void | image_SSSE3_bgr_to_gray_8u (const uint8_t *in, uint8_t *out, int w, int h) |
| Convert a RGB image (3cu8) into a GRAYSCALE (1c8u) image, using Y=77*R+150*G+29*B. More... | |
| void | image_SSSE3_rgb_to_gray_8u (const uint8_t *in, uint8_t *out, int w, int h) |
| Convert a RGB image (3cu8) into a GRAYSCALE (1c8u) image, using Y=77*R+150*G+29*B. More... | |
| void image_SSE2_scale_half_1c8u | ( | const uint8_t * | in, |
| uint8_t * | out, | ||
| int | w, | ||
| int | h | ||
| ) |
Subsample each 2x2 pixel block into 1x1 pixel, taking the first pixel & ignoring the other 3.
Definition at line 40 of file CImage_SSE2.cpp.
References MRPT_ALIGN16.
| void image_SSE2_scale_half_smooth_1c8u | ( | const uint8_t * | in, |
| uint8_t * | out, | ||
| int | w, | ||
| int | h | ||
| ) |
Average each 2x2 pixels into 1x1 pixel (arithmetic average)
Definition at line 70 of file CImage_SSE2.cpp.
References MRPT_ALIGN16.
| void image_SSSE3_bgr_to_gray_8u | ( | const uint8_t * | in, |
| uint8_t * | out, | ||
| int | w, | ||
| int | h | ||
| ) |
Convert a RGB image (3cu8) into a GRAYSCALE (1c8u) image, using Y=77*R+150*G+29*B.
Definition at line 208 of file CImage_SSE3.cpp.
| void image_SSSE3_rgb_to_gray_8u | ( | const uint8_t * | in, |
| uint8_t * | out, | ||
| int | w, | ||
| int | h | ||
| ) |
Convert a RGB image (3cu8) into a GRAYSCALE (1c8u) image, using Y=77*R+150*G+29*B.
Definition at line 221 of file CImage_SSE3.cpp.
| void image_SSSE3_scale_half_3c8u | ( | const uint8_t * | in, |
| uint8_t * | out, | ||
| int | w, | ||
| int | h | ||
| ) |
Subsample each 2x2 pixel block into 1x1 pixel, taking the first pixel & ignoring the other 3.
Definition at line 37 of file CImage_SSE3.cpp.
References MRPT_ALIGN16.
| float KLT_response_optimized | ( | ) |
KLT score at a given point of a grayscale image.
This function is not manually optimized for SSE2 but templatized for different window sizes such as the compiler can optimize automatically for that size.
Only for the most common window sizes this templates are instantiated (W=[2-16] and W=32 ), falling back to a generic implementation otherwise. The next figure shows the performance (time for KLT_response() to compute the score for one single pixel) for different window sizes.
| void private_image_SSSE3_rgb_or_bgr_to_gray_8u | ( | const uint8_t * | in, |
| uint8_t * | out, | ||
| int | w, | ||
| int | h | ||
| ) |
Definition at line 90 of file CImage_SSE3.cpp.
References BUILD_128BIT_CONST.
| bool TFEST_IMPEXP mrpt::tfest::se2_l2 | ( | const mrpt::utils::TMatchingPairList & | in_correspondences, |
| mrpt::math::TPose2D & | out_transformation, | ||
| mrpt::math::CMatrixDouble33 * | out_estimateCovariance = NULL |
||
| ) |
Least-squares (L2 norm) solution to finding the optimal SE(2) (x,y,yaw) between two reference frames.
The optimal transformation q fulfills
, that is, the transformation of frame other with respect to this.
| [in] | in_correspondences | The set of correspondences. |
| [out] | out_transformation | The pose that minimizes the mean-square-error between all the correspondences. |
| [out] | out_estimateCovariance | If provided (!=NULL) this will contain on return a 3x3 covariance matrix with the NORMALIZED optimal estimate uncertainty. This matrix must be multiplied by , the variance of matched points in and (see paper http://www.mrpt.org/Paper:Occupancy_Grid_Matching) |
| Page generated by Doxygen 1.8.9.1 for MRPT 1.3.0 SVN: at Sun Sep 13 03:55:12 UTC 2015 |