CV_CreateImagefunction to create an image object of given size and typeCalling Sequence
CV_CreateImage(image_size,bit_depth,no_of_channels)
Parametersimage_size: width and height of imagebit_depth: Bit depth of image elementsno_of_channels: no of channels per pixelsDescription
This function can be used to create opencv image object. For more info about bit depth and channels,please refer to OpenCV documentation
This is curretly dummy function. It provides no functionality but is required for providing support for generating C code for OpenCV
ExamplesSee alsoCV_LoadImageAuthorsSiddhesh Wani