MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
FormActionImage.cs
1
using
System
;
2
using
System
.Collections.Generic;
3
using
System
.
ComponentModel
;
4
using
System
.Data;
5
using
System
.Drawing;
6
using
System
.Linq;
7
using
System
.Text;
8
using
System
.Threading.Tasks;
9
using
System
.Windows.Forms;
10
11
namespace
MyCaffe.gym
12
{
16
public
partial class
FormActionImage
: Form
17
{
21
public
FormActionImage
()
22
{
23
InitializeComponent();
24
}
25
26
private
void
FormActionImage_Load(
object
sender, EventArgs e)
27
{
28
29
}
30
35
public
void
SetImage
(Image bmp)
36
{
37
pictureBox1.Image = bmp;
38
}
39
}
40
}
MyCaffe.gym.FormActionImage
The FormActionImage displays the action image (if one exists)
Definition:
FormActionImage.cs:17
MyCaffe.gym.FormActionImage.FormActionImage
FormActionImage()
The constructor.
Definition:
FormActionImage.cs:21
MyCaffe.gym.FormActionImage.SetImage
void SetImage(Image bmp)
Set the image to display.
Definition:
FormActionImage.cs:35
MyCaffe.gym
The MyCaffe.gym namespace contains all classes related to the Gym's supported by MyCaffe.
Definition:
MyCaffePythonGym.cs:16
System.ComponentModel
Definition:
Component.cs:11
System
Definition:
Component.cs:11
MyCaffe is currated by
Help generated by
1.8.13