radius
This commit is contained in:
parent
a972055056
commit
d2dab86544
1 changed files with 3 additions and 3 deletions
|
|
@ -58,13 +58,13 @@ public class MinimapConfig
|
|||
public int MinimapCenterX { get; set; } = 1280;
|
||||
public int MinimapCenterY { get; set; } = 700;
|
||||
|
||||
// Capture region: 300x300 centered at minimap center
|
||||
// Capture region centered at minimap center
|
||||
public Region CaptureRegion => new(
|
||||
MinimapCenterX - CaptureSize / 2,
|
||||
MinimapCenterY - CaptureSize / 2,
|
||||
CaptureSize, CaptureSize);
|
||||
|
||||
public int CaptureSize { get; set; } = 300;
|
||||
public int CaptureSize { get; set; } = 400;
|
||||
|
||||
// HSV range for player marker (orange X)
|
||||
public Scalar PlayerLoHSV { get; set; } = new(5, 80, 80);
|
||||
|
|
@ -82,7 +82,7 @@ public class MinimapConfig
|
|||
public int WallMinArea { get; set; } = 30;
|
||||
|
||||
// Explored radius: pixels around player position to mark as explored on world map
|
||||
public int ExploredRadius { get; set; } = 100;
|
||||
public int ExploredRadius { get; set; } = 120;
|
||||
|
||||
// Temporal smoothing: majority vote over ring buffer (walls only)
|
||||
public int TemporalFrameCount { get; set; } = 5;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue