Advertisement
FreYS

Untitled

Jul 4th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using BioLab.Common;
  6. using BioLab.ImageProcessing;
  7. using System.Drawing;
  8. using BioLab.GUI.Forms;
  9. using System.Windows.Forms;
  10. using BioLab.ImageProcessing.Topology;
  11. using BioLab.DataStructures;
  12. using System.ComponentModel;
  13. using BioLab.GUI.UserControls;
  14. using BioLab.PatternRecognition.Localization;
  15. using System.Diagnostics;
  16.  
  17. namespace PRLab.FEI
  18. {
  19. [AlgorithmInfo("15-01-2013 Es1",Category="FEI")]
  20. [CustomAlgorithmPreviewParameterControl(typeof(SimpleConvolutionParameterControl))]
  21. public class EsercizioLung:ImageOperation<Image<byte>,Image<byte>>
  22. {
  23. [AlgorithmOutput]
  24. public Image<byte> Result1 { get; set; }
  25. [AlgorithmOutput]
  26. public Image<double> Result2 { get; set; }
  27. [AlgorithmOutput]
  28. public Image<byte> Result3 { get; set; }
  29. [AlgorithmOutput]
  30. public ConnectedComponentImage Result4 { get; set; }
  31. [AlgorithmOutput]
  32. public ConnectedComponentImage Result5 { get; set; }
  33. [AlgorithmOutput]
  34. public Image<byte> Result6 { get; set; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement