Changes to SSH including new password
This commit is contained in:
@@ -10,11 +10,11 @@ namespace AiQ_GUI
|
||||
internal class ImageProcessing
|
||||
{
|
||||
// API to get snapshot then downsize and downscale image to save size.
|
||||
public static async Task<Image?> GetProcessedImage(string suffix, string IPAddress, string DevPass, string? savePath = null, PictureBox? PcBx = null, bool SaveDisplay = false)
|
||||
public static async Task<Image?> GetProcessedImage(string Module, string IPAddress, string DevPass, string? savePath = null, PictureBox? PcBx = null, bool SaveDisplay = false)
|
||||
{
|
||||
try
|
||||
{
|
||||
string requestUrl = $"http://{IPAddress}/{suffix}";
|
||||
string requestUrl = $"http://{IPAddress}/{Module}-snapshot";
|
||||
|
||||
HttpClientHandler handler = new()
|
||||
{
|
||||
@@ -85,7 +85,7 @@ namespace AiQ_GUI
|
||||
public static async Task ImageCheck(PictureBox PicBxOV, PictureBox PicBxF2, PictureBox PicBxF16, Label LblF2, Label LblF16, Camera CamOnTest)
|
||||
{
|
||||
// Take OV snapshot
|
||||
Task<Image?> Colour_Response = GetProcessedImage("Colour-snapshot", CamOnTest.IP, CamOnTest.DevPass, LDS.MAVPath + LDS.OVsavePath, PicBxOV, true);
|
||||
Task<Image?> Colour_Response = GetProcessedImage("Colour", CamOnTest.IP, CamOnTest.DevPass, LDS.MAVPath + LDS.OVsavePath, PicBxOV, true);
|
||||
|
||||
// Change to wide iris F2.0
|
||||
await FlexiAPI.APIHTTPVISCA(CamOnTest.IP, "8101044B00000100FF", true);
|
||||
@@ -93,7 +93,7 @@ namespace AiQ_GUI
|
||||
await Task.Delay(200); // Wait for iris to settle before taking IR image
|
||||
|
||||
// Take IR bright light image
|
||||
Image? F2_Response = await GetProcessedImage("Infrared-snapshot", CamOnTest.IP, CamOnTest.DevPass, LDS.MAVPath + LDS.IROpensavePath, PicBxF2, true);
|
||||
Image? F2_Response = await GetProcessedImage("Infrared", CamOnTest.IP, CamOnTest.DevPass, LDS.MAVPath + LDS.IROpensavePath, PicBxF2, true);
|
||||
if (F2_Response == null)
|
||||
{
|
||||
MainForm.Instance.AddToActionsList("IR F2.0 image response is blank.");
|
||||
@@ -106,7 +106,7 @@ namespace AiQ_GUI
|
||||
await Task.Delay(200); // Wait for iris to settle before taking IR image
|
||||
|
||||
// Take IR low light image
|
||||
Image? F16_Response = await GetProcessedImage("Infrared-snapshot", CamOnTest.IP, CamOnTest.DevPass, LDS.MAVPath + LDS.IRTightsavePath, PicBxF16, true);
|
||||
Image? F16_Response = await GetProcessedImage("Infrared", CamOnTest.IP, CamOnTest.DevPass, LDS.MAVPath + LDS.IRTightsavePath, PicBxF16, true);
|
||||
if (F16_Response == null)
|
||||
{
|
||||
MainForm.Instance.AddToActionsList("IR F16.0 image response is blank.");
|
||||
|
||||
Reference in New Issue
Block a user