2.0.11
This commit is contained in:
@@ -139,7 +139,7 @@
|
||||
ncInterval.AutoSize = false;
|
||||
ncInterval.Name = "ncInterval";
|
||||
ncInterval.Size = new Size(64, 23);
|
||||
ncInterval.Text = "100";
|
||||
ncInterval.Text = "1";
|
||||
//
|
||||
// ckbExecuteWorkflow
|
||||
//
|
||||
|
||||
@@ -102,9 +102,9 @@ namespace Hawkeye.VisionBuilder.Features.ImagesStrip
|
||||
|
||||
g.DrawString("Not loaded", new Font("Arial", 12), Brushes.Gray, new PointF(0, 0));
|
||||
}
|
||||
var allImages = Directory.GetFiles(directory, "*.bmp")
|
||||
.Concat(Directory.GetFiles(directory, "*.png"))
|
||||
.Concat(Directory.GetFiles(directory, "*.jpg"))
|
||||
var allImages = Directory.GetFiles(directory, "*.bmp", SearchOption.AllDirectories)
|
||||
.Concat(Directory.GetFiles(directory, "*.png", SearchOption.AllDirectories))
|
||||
.Concat(Directory.GetFiles(directory, "*.jpg", SearchOption.AllDirectories))
|
||||
.Where(x => !Path.GetFileNameWithoutExtension(x).Contains("_analysis"))
|
||||
//.Select(x=>new {path=x,bmp = new Bitmap(x)})
|
||||
.Select(x => new { path = x, bmp = mock })
|
||||
|
||||
Reference in New Issue
Block a user