ComGlobalParams.cs 554 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using HalconDotNet;
  7. namespace CommonMethods
  8. {
  9. public class ComGlobalParams
  10. {
  11. public static HObject inputImageGlobal
  12. {
  13. get
  14. {
  15. HObject inputImage = new HObject();
  16. HOperatorSet.ReadImage(out inputImage, @"G:\Outer_HB.bmp");
  17. return inputImage;
  18. }
  19. set
  20. {
  21. }
  22. }
  23. }
  24. }