-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
26 lines (24 loc) · 781 Bytes
/
Copy pathProgram.cs
File metadata and controls
26 lines (24 loc) · 781 Bytes
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
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace RS_Method
{
class Program
{
static void Main(string[] args)
{
//OpenFileDialog openDialog = new OpenFileDialog();
//openDialog.Filter = "Файлы изображений|*.bmp";
//if (openDialog.ShowDialog() != DialogResult.OK) return;
string path = @"C:\Users\Yesle\Desktop\_-_\УПД\УПД-5\Тех часть\RS-Method1\pics\R0vvnl9HVnwменьше.bmp";
Image img = Image.FromFile(path);
Bitmap bImg = new Bitmap(img);
RS rs = new RS();
rs.DoRSTEST(bImg);
}
}
}