Change the size of an arrow directing a gaze patch/l2csnet
authorTae-Young Chung <ty83.chung@samsung.com>
Wed, 30 Oct 2024 05:24:45 +0000 (14:24 +0900)
committerTae-Young Chung <ty83.chung@samsung.com>
Wed, 30 Oct 2024 05:24:45 +0000 (14:24 +0900)
Change-Id: I8c54c4669ffef29b494f00eea57ce6edba40f834
Signed-off-by: Tae-Young Chung <ty83.chung@samsung.com>
services/focus_finder/src/FocusMapper.cpp

index 60e5fd38762ea69a2d7e58746acee2d0531c7ad8..fccaf377a1fe2c0e2b1bc851e59c322ced078f93 100644 (file)
@@ -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();