Пример #1
0
        public static void convertImageVectorToFile_Test(string path, ImageVector image)
        {
            string algoPath = path;
            string csvPathDecide = algoPath + "\\Decide.txt";

            System.IO.StreamWriter file = new System.IO.StreamWriter(@csvPathDecide, false);
            file.WriteLine(image.getAllParameters_Test(false,image.getNumOfParameters()));
            file.Close();
        }