From 8633957932a580be66299c0f73226e2dc6fb29ce Mon Sep 17 00:00:00 2001 From: iory Date: Tue, 31 May 2016 23:22:27 +0900 Subject: [PATCH] Modified type of variables float64 to int32 in Rect.msg --- msg/Rect.msg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/msg/Rect.msg b/msg/Rect.msg index ea99932f..7b99166b 100644 --- a/msg/Rect.msg +++ b/msg/Rect.msg @@ -1,6 +1,6 @@ # opencv Rect data type, x-y is center point -float64 x -float64 y -float64 width -float64 height +int32 x +int32 y +int32 width +int32 height