summaryrefslogtreecommitdiff
path: root/macros/ImageProcessing/core/CV_CreateImage.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/ImageProcessing/core/CV_CreateImage.sci')
-rw-r--r--macros/ImageProcessing/core/CV_CreateImage.sci2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/ImageProcessing/core/CV_CreateImage.sci b/macros/ImageProcessing/core/CV_CreateImage.sci
index 49649201..72dd9b8c 100644
--- a/macros/ImageProcessing/core/CV_CreateImage.sci
+++ b/macros/ImageProcessing/core/CV_CreateImage.sci
@@ -13,7 +13,7 @@ function img = CV_CreateImage(width,height,bit_depth,no_of_channels)
// This function can be used to create opencv image object. For more info
// about bit depth and channels,please refer to OpenCV documentation
// Examples
-// CV_CreateImage([320 240], "8U", 1) //to create image of the size 320*240
+// CV_CreateImage([320 240], "IPL_DEPTH_8U", 1) //to create image of the size 320*240
// pixels with 8 bit unsigned each pixels and gray scale image
//
// See also