-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathImageImporterPlugin.cs
More file actions
238 lines (196 loc) · 7.83 KB
/
ImageImporterPlugin.cs
File metadata and controls
238 lines (196 loc) · 7.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Threading;
using iba.Capture.MachineVision.PluginLib;
namespace iba.Capture.MachineVision.Plugins.ImageImporter
{
public class ImageImporterPlugin : UserPluginV100
{
public override string DisplayName => "Image importer";
public override string Description => "Imports BMP images into ibaVision and combines them into an output video stream.";
private ImageImporterPluginSettings settings;
public ImageImporterPlugin()
{
// ###### Procedure 1
ProcedureDescription procedureDescription = new ProcedureDescription
{
Name = "Load images",
InfoText = "Loads *.bmp images from the selected directory and provides them as an iconic output.",
MethodToExecute = ImportNextImage,
// ###### Configure outputs here
OutputsIconicDescription =
{
new ProcedureDescription.Parameter
{
Index = 0,
Name = "Image file",
InfoText = "Loaded *.bmp file"
},
//new ProcedureDescription.Parameter
//{
// Index = 1,
// Name = "Dummy parameter name",
// InfoText = "Dummy parameter info text"
//}
},
//OutputsControlDescription =
//{
// new ProcedureDescription.Parameter
// {
// Index = 0,
// Name = "Dummy parameter name",
// InfoText = "Dummy parameter info text"
// }
//},
// ###### Configure inputs here
//InputsIconicDescription =
//{
// new ProcedureDescription.Parameter
// {
// Index = 0,
// Name = "Dummy parameter name",
// InfoText = "Dummy parameter info"
// },
// new ProcedureDescription.Parameter
// {
// Index = 1,
// Name = "Dummy parameter name",
// InfoText = "Dummy parameter info"
// }
//},
//InputsControlDescription =
//{
// new ProcedureDescription.Parameter
// {
// Index = 0,
// Name = "Dummy parameter name",
// InfoText = "Dummy parameter info"
// }
//}
};
Procedures.Add(procedureDescription.Name, procedureDescription);
// ###### Add further procedures here
//procedureDescription = new ProcedureDescription
//{
// Name = "Dummy procedure name",
// InfoText = "Dummy procedure info text",
// MethodToExecute = ImportNextImage,
// OutputsIconicDescription =
// {
// new ProcedureDescription.Parameter
// {
// Index = 0,
// Name = "Dummy parameter name",
// InfoText = "Dummy parameter info"
// }
// }
//};
//Procedures.Add(procedureDescription.Name, procedureDescription);
}
/// <summary>
/// Performs a one time initialization of the program with the user provided settings.
/// </summary>
/// <param name="settings"></param>
/// <returns></returns>
public override IEnumerable<PluginMessage> Initialize(PluginSettings settings)
{
this.settings = (ImageImporterPluginSettings)settings;
imageCounter = 0;
IsInitialized = true;
yield break;
}
int imageCounter;
private long tickCounter;
/// <summary>
/// Runs the procedure on the inputs.
/// The procedure needs to set the output parameters before returning.
/// </summary>
private void ImportNextImage()
{
// Find all BMP files in directory.
List<string> filePaths = Directory.GetFiles(settings.ImageFolderPath)
.Where(x => Path.GetExtension(x).ToUpper() == ".BMP").ToList();
if (!filePaths.Any())
return;
// Create IbaImage from BMP file.
using (Bitmap bmp = new Bitmap(filePaths[imageCounter]))
{
IbaVisionImage ibaVisionImage = ImageHelper.ConvertToIbaBitmap(bmp);
ibaVisionImage.TimeStamp = new DateTime(DateTime.Now.Ticks - TimeSpan.FromHours(12).Ticks + tickCounter);
tickCounter++;
Procedures["Load images"].OutputsIconic[0] = ibaVisionImage;
}
imageCounter++;
if (imageCounter >= filePaths.Count)
{
imageCounter = 0;
}
Thread.Sleep(40);
}
#region Validation
/// <summary>
/// Checks whether the minimum requirements for this plugin are fulfilled
/// and returns a collection of messages to display.
/// Check will fail if any error messages are returned.
/// </summary>
public override IEnumerable<PluginMessage> CheckMinRequirements()
{
List<PluginMessage> messages = new List<PluginMessage>();
// ######
// Add custom requirements for the plugin here (like installed third party software, required devices, etc.)
//if (!CONDITION)
//{
// messages.Add(
// new PluginMessage
// {
// MessageType = IbaMessageType.Error,
// Text = "DUMMY TEXT"
// });
//}
// ######
// Perform build-in base checks.
messages.AddRange(base.CheckMinRequirements());
return messages;
}
/// <summary>
/// Checks whether the passed plugin settings are valid
/// and returns a collection of messages to display.
/// Check will fail if any error messages are returned.
/// </summary>
/// <param name="settings"></param>
public override IEnumerable<PluginMessage> ValidatePluginSettings(PluginSettings settings)
{
List<PluginMessage> messages = new List<PluginMessage>();
ImageImporterPluginSettings imageImporterSettings = settings as ImageImporterPluginSettings;
if (!Directory.Exists(imageImporterSettings.ImageFolderPath))
{
messages.Add(
new PluginMessage
{
MessageType = IbaMessageType.Error,
Text = $"Directory '{imageImporterSettings.ImageFolderPath}' does not exist."
});
}
return messages;
}
#endregion
#region Dispose
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected override void Dispose(bool disposing)
{
if (disposing)
{
// ######
// Add disposal code here.
// ######
}
}
#endregion
}
}