Ejemplo n.º 1
0
 public ScanningSlide(Context c)
     : base(c)
 {
     this.InitializeComponent();
     _pointcloud      = new Parsley.Draw3D.PointCloud();
     _pixel_point_ids = new Parsley.Core.DensePixelGrid <uint>();
     lock (Context.Viewer) {
         Context.Viewer.Add(_pointcloud);
     }
 }
Ejemplo n.º 2
0
        //Core.PointPerPixelAccumulator _acc;

        public ScanningAttempt(Context c)
            : base(c)
        {
            InitializeComponent();

            _pointcloud = new Parsley.Draw3D.PointCloud();
            lock (Context.Viewer) {
                Context.Viewer.Add(_pointcloud);
            }
        }
Ejemplo n.º 3
0
 public ScanningSlide(Context c)
   : base(c) 
 {
   this.InitializeComponent();
   _pointcloud = new Parsley.Draw3D.PointCloud();
   _pixel_point_ids = new Parsley.Core.DensePixelGrid<uint>();
   lock (Context.Viewer) {
     Context.Viewer.Add(_pointcloud);
   }
 }
Ejemplo n.º 4
0
        bool _start_scanning = false; //tambahan fuad

        #endregion

        public ScanningSlide(Context c)
            : base(c)
        {
            this.InitializeComponent();
            _pointcloud      = new Parsley.Draw3D.PointCloud(); //variabel penyimpan data 3d, format x,y,z,r,g,b
            _pixel_point_ids = new Parsley.Core.DensePixelGrid <uint>();
            lock (Context.Viewer)
            {
                Context.Viewer.Add(_pointcloud);
            }
        }
Ejemplo n.º 5
0
    //Core.PointPerPixelAccumulator _acc;

    public ScanningAttempt(Context c)
      : base(c) 
    {
      InitializeComponent();

      _pointcloud = new Parsley.Draw3D.PointCloud();
      lock (Context.Viewer) {
        Context.Viewer.Add(_pointcloud);
      }

    }