mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
fix datasetexplorer view
save annotation with detections fix sending to queue
This commit is contained in:
@@ -19,8 +19,13 @@ public class AnnotationImageView(Annotation annotation) : INotifyPropertyChanged
|
||||
Task.Run(async () => Thumbnail = await Annotation.ThumbPath.OpenImage());
|
||||
return _thumbnail;
|
||||
}
|
||||
private set => _thumbnail = value;
|
||||
private set
|
||||
{
|
||||
_thumbnail = value;
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
public string ImageName => Path.GetFileName(Annotation.ImagePath);
|
||||
|
||||
public void Delete()
|
||||
|
||||
Reference in New Issue
Block a user