MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
FormActionImage.cs
1using System;
2using System.Collections.Generic;
4using System.Data;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8using System.Threading.Tasks;
9using System.Windows.Forms;
10
11namespace MyCaffe.gym
12{
16 public partial class FormActionImage : Form
17 {
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}
The FormActionImage displays the action image (if one exists)
FormActionImage()
The constructor.
void SetImage(Image bmp)
Set the image to display.
The MyCaffe.gym namespace contains all classes related to the Gym's supported by MyCaffe.