feat: Add face encoder settings including GPU support, parallelism, and thumbnail options
This commit is contained in:
parent
d6b778a648
commit
25fdb82d2f
9 changed files with 595 additions and 136 deletions
|
|
@ -71,6 +71,50 @@ public class AiSettingsViewModel : ViewModelBase
|
|||
}
|
||||
}
|
||||
|
||||
private bool _faceIncludeThumbnails;
|
||||
public bool FaceIncludeThumbnails
|
||||
{
|
||||
get => _faceIncludeThumbnails;
|
||||
set
|
||||
{
|
||||
_faceIncludeThumbnails = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private int _faceParallelism = 3;
|
||||
public int FaceParallelism
|
||||
{
|
||||
get => _faceParallelism;
|
||||
set
|
||||
{
|
||||
_faceParallelism = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private int _faceMinSize = 35;
|
||||
public int FaceMinSize
|
||||
{
|
||||
get => _faceMinSize;
|
||||
set
|
||||
{
|
||||
_faceMinSize = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private bool _faceUpsample = true;
|
||||
public bool FaceUpsample
|
||||
{
|
||||
get => _faceUpsample;
|
||||
set
|
||||
{
|
||||
_faceUpsample = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private bool _faceGpuOptionEnabled;
|
||||
public bool FaceGpuOptionEnabled
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue