Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Image< Bgr,Byte > を Image に変換するには?
前もって感謝します。
Image クラスには .ToBitmap() メソッドがあります。
したがって、次のように簡単にする必要があります
image1.ToBitmap();
You could simply use the Bitmap property of Emgu Image.
Image<Bgr,Byte> img = .... Bitmap bmp = img.ToBitmap();