1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00

fix some comments

This commit is contained in:
ser1zw 2012-07-15 03:16:41 +09:00
parent 36f6864dfa
commit d0d8dbdb20
2 changed files with 2 additions and 2 deletions

View file

@ -583,7 +583,7 @@ prepare_decoding(int argc, VALUE *argv, int* iscolor, int* need_release)
* Reads an image from a buffer in memory.
*
* Parameters:
* buf <CvMat, Array> - Input array
* buf <CvMat, Array, String> - Input array
* iscolor <Integer> - Flags specifying the color type of a decoded image (the same flags as CvMat#load)
*/
VALUE

View file

@ -138,7 +138,7 @@ rb_load_image(int argc, VALUE *argv, VALUE self)
/*
* call-seq:
* decode_image(buf[, iscolor=CV_LOAD_IMAGE_COLOR]) -> CvMat
* decode_image(buf[, iscolor=CV_LOAD_IMAGE_COLOR]) -> IplImage
*
* Reads an image from a buffer in memory.
*