You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
405 B

1 month ago
  1. using OpenCvSharp;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Drawing;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ShenTun.ImageCollection.OpenCvImage
  9. {
  10. public class OpenCvHelper
  11. {
  12. public static Bitmap MatToBitmapImage(Mat image)
  13. {
  14. return OpenCvSharp.Extensions.BitmapConverter.ToBitmap(image);
  15. }
  16. }
  17. }