Skip to content

Instantly share code, notes, and snippets.

@ochilab
Created May 27, 2013 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ochilab/5656424 to your computer and use it in GitHub Desktop.
Save ochilab/5656424 to your computer and use it in GitHub Desktop.
OpenCVSharpでIplImageとBitmapの相互変換をする方法
// Bitmap to IplImage
IplImage iplOriginal = (OpenCvSharp.IplImage)BitmapConverter.ToIplImage(beforeBitmap);
// IplImage to Bitmap
Bitmap afterBitmap = BitmapConverter.ToBitmap(iplOriginal);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment