Как правильно сохранить изображение в корень проекта? - C#

Узнай цену своей работы

Формулировка задачи:

подскажите пожалуйста как грамматически правильно будет прописать картинке путь в папку с проектом по умолчанию? код :
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Drawing;
  7. using AForge.Imaging.Filters;
  8. using System.IO;
  9. namespace ConsoleApplication12
  10. {
  11. class Program
  12. {
  13. static void Main(string[] args)
  14. {
  15. string inputImagePath = @"D:\3\xxx.jpg";
  16. string dirPath = Path.GetDirectoryName(inputImagePath);
  17. string fileName = Path.GetFileNameWithoutExtension(inputImagePath);
  18. string fileExt = Path.GetExtension(inputImagePath);
  19. int origHeight = 0;
  20. int origWidth = 0;
  21. //*******************************************************
  22. //Edge Detection - only works on grayscale images
  23. //*******************************************************
  24. //load the image from disk as a Bitmap
  25. var bitmap = new Bitmap(inputImagePath);
  26. origHeight = bitmap.Height;
  27. origWidth = bitmap.Width;
  28. //create grayscale filter (BT709)
  29. Grayscale gfilter = new Grayscale(0.2125, 0.7154, 0.0721);
  30. //apply the filter, so we can use the edge detectors
  31. Bitmap grayImage = gfilter.Apply(bitmap);
  32. // create canny filter
  33. CannyEdgeDetector cannyFilter = new CannyEdgeDetector();
  34. // You can use ApplyInPlace() to modify the input image or use
  35. //Apply() to make a new copy of the image with the filter applied...
  36. //cannyFilter.ApplyInPlace(grayImage);
  37. Bitmap cannyImage = cannyFilter.Apply(grayImage);
  38. //Save each of the four edge detection images we created.
  39. cannyImage.Save(dirPath + "" + fileName + "_canny" + fileExt);
  40. }
  41. }
  42. }
а если быть точнее как
Листинг программы
  1. //load the image from disk as a Bitmap
и
Листинг программы
  1. //Save ...
организовать в корне проекта?

Решение задачи: «Как правильно сохранить изображение в корень проекта?»

textual
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Drawing;
  7. using AForge.Imaging.Filters;
  8. using System.IO;
  9.  
  10. namespace ConsoleApplication12
  11. {
  12.     class Program
  13.     {
  14.         static void Main(string[] args)
  15.         {
  16.            
  17.             string pathToImage = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "77.jpg");
  18.             string dirPath = Path.GetDirectoryName(pathToImage);
  19.             string fileName = Path.GetFileNameWithoutExtension(pathToImage);
  20.             string fileExt = Path.GetExtension(pathToImage);
  21.             int origHeight = 0;
  22.             int origWidth = 0;
  23.  
  24.             //*******************************************************
  25.             //Edge Detection - only works on grayscale images
  26.             //*******************************************************
  27.  
  28.             //load the image from disk as a Bitmap
  29.             var bitmap = new Bitmap(pathToImage);
  30.             origHeight = bitmap.Height;
  31.             origWidth = bitmap.Width;
  32.  
  33.             //create grayscale filter (BT709)
  34.             Grayscale gfilter = new Grayscale(0.2125, 0.7154, 0.0721);
  35.             //apply the filter, so we can use the edge detectors
  36.             Bitmap grayImage = gfilter.Apply(bitmap);
  37.  
  38.             // create canny filter
  39.             CannyEdgeDetector cannyFilter = new CannyEdgeDetector();
  40.             // You can use ApplyInPlace() to modify the input image or use
  41.             //Apply() to make a new copy of the image with the filter applied...
  42.             //cannyFilter.ApplyInPlace(grayImage);
  43.             Bitmap cannyImage = cannyFilter.Apply(grayImage);
  44.  
  45.             //Save each of the four edge detection images we created.
  46.             cannyImage.Save(dirPath + "" + fileName + "_canny" + fileExt);
  47.         }
  48.     }
  49. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

14   голосов , оценка 3.929 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут