From: Tae-Young Chung Date: Wed, 30 Oct 2024 05:24:45 +0000 (+0900) Subject: Change the size of an arrow directing a gaze X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Fpatch%2Fl2csnet;p=platform%2Fcore%2Fapi%2Fsingleo.git Change the size of an arrow directing a gaze Change-Id: I8c54c4669ffef29b494f00eea57ce6edba40f834 Signed-off-by: Tae-Young Chung --- diff --git a/services/focus_finder/src/FocusMapper.cpp b/services/focus_finder/src/FocusMapper.cpp index 60e5fd3..fccaf37 100644 --- a/services/focus_finder/src/FocusMapper.cpp +++ b/services/focus_finder/src/FocusMapper.cpp @@ -55,9 +55,9 @@ void FocusMapper::invoke(BaseDataType &data) _cv_image = cv::Mat(cv::Size(image_data.width, image_data.height), CV_MAKETYPE(CV_8U, 3), image_data.ptr).clone(); arrowedLine(_cv_image, Point2i(_result.center.x, _result.center.y), - Point2i(_result.focus.x, _result.focus.y), Scalar(0, 0, 255), 5, 8, 0, 0.25); // projected gaze vector + Point2i(_result.focus.x, _result.focus.y), Scalar(0, 0, 255), 2, 8, 0, 0.2); // projected gaze vector - circle(_cv_image, Point2i(_result.center.x, _result.center.y), 4, Scalar(0, 255, 0), 2); // projected gaze vector + circle(_cv_image, Point2i(_result.center.x, _result.center.y), 3, Scalar(0, 255, 0), 2); // projected gaze vector _image_data.width = _cv_image.cols; _image_data.height = _cv_image.rows; _image_data.byte_per_pixel = _cv_image.channels();