summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/plugins/gst_plugins_cache.json6
-rw-r--r--ext/opencv/gstcameracalibrate.cpp7
2 files changed, 7 insertions, 6 deletions
diff --git a/docs/plugins/gst_plugins_cache.json b/docs/plugins/gst_plugins_cache.json
index c848461d7..75ae26afc 100644
--- a/docs/plugins/gst_plugins_cache.json
+++ b/docs/plugins/gst_plugins_cache.json
@@ -211143,7 +211143,7 @@
"elements": {
"cameracalibrate": {
"author": "Philippe Renon <philippe_renon@yahoo.fr>",
- "description": "Performs camera calibration",
+ "description": "Performs camera calibration by having it point at a chessboard pattern using upstream/downstream cameraundistort",
"hierarchy": [
"GstCameraCalibrate",
"GstOpencvVideoFilter",
@@ -211184,7 +211184,7 @@
"writable": true
},
"board-height": {
- "blurb": "The board height in number of items",
+ "blurb": "The board height in number of items (e.g. number of squares for chessboard)",
"conditionally-available": false,
"construct": false,
"construct-only": false,
@@ -211198,7 +211198,7 @@
"writable": true
},
"board-width": {
- "blurb": "The board width in number of items",
+ "blurb": "The board width in number of items (e.g. number of squares for chessboard)",
"conditionally-available": false,
"construct": false,
"construct-only": false,
diff --git a/ext/opencv/gstcameracalibrate.cpp b/ext/opencv/gstcameracalibrate.cpp
index 16f8e30ac..291f6c7fb 100644
--- a/ext/opencv/gstcameracalibrate.cpp
+++ b/ext/opencv/gstcameracalibrate.cpp
@@ -204,13 +204,13 @@ gst_camera_calibrate_class_init (GstCameraCalibrateClass * klass)
g_object_class_install_property (gobject_class, PROP_BOARD_WIDTH,
g_param_spec_int ("board-width", "Board Width",
- "The board width in number of items",
+ "The board width in number of items (e.g. number of squares for chessboard)",
1, G_MAXINT, DEFAULT_BOARD_WIDTH,
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
g_object_class_install_property (gobject_class, PROP_BOARD_HEIGHT,
g_param_spec_int ("board-height", "Board Height",
- "The board height in number of items",
+ "The board height in number of items (e.g. number of squares for chessboard)",
1, G_MAXINT, DEFAULT_BOARD_WIDTH,
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
@@ -276,7 +276,8 @@ gst_camera_calibrate_class_init (GstCameraCalibrateClass * klass)
gst_element_class_set_static_metadata (element_class,
"cameracalibrate",
"Filter/Effect/Video",
- "Performs camera calibration",
+ "Performs camera calibration by having it point at a chessboard pattern "
+ "using upstream/downstream cameraundistort",
"Philippe Renon <philippe_renon@yahoo.fr>");
/* add sink and source pad templates */