public CornerHarrisViewModel() { harrisService = DependencyService.Get <ICornerHarrisService>(); pickerService = DependencyService.Get <IPickerService>(); Borders = (HarrisBorderType[])Enum.GetValues(typeof(HarrisBorderType)); }
public FeatureMatchViewModel() { matchService = DependencyService.Get <IFeatureMatchService>(); pickerService = DependencyService.Get <IPickerService>(); DetectTypes = (FeatureDetectType[])Enum.GetValues(typeof(FeatureDetectType)); MatchTypes = (FeatureMatchType[])Enum.GetValues(typeof(FeatureMatchType)); }
public ContourViewModel() { contourService = DependencyService.Get <IContourService>(); pickerService = DependencyService.Get <IPickerService>(); Methods = (ContourMethodType[])Enum.GetValues(typeof(ContourMethodType)); Retrs = (ContourRetrType[])Enum.GetValues(typeof(ContourRetrType)); }
public FeatureDetectionViewModel() { detectService = DependencyService.Get <IFeatureDetectService>(); pickerService = DependencyService.Get <IPickerService>(); Algorithms = new ObservableRangeCollection <AlgorithmModel>(); InitAlgorithms(); }
public PickerAppService(IPickerService pickerService, IMapper mapper) { _pickerService = pickerService; _mapper = mapper; }
public DisparityViewModel() { disparityService = DependencyService.Get <IDisparityService>(); pickerService = DependencyService.Get <IPickerService>(); }