Frame sequence import now ignores invalid files

This commit is contained in:
N00MKRAD
2021-05-19 16:18:24 +02:00
parent 607bbc6ae2
commit fed3312713
5 changed files with 50 additions and 23 deletions

14
Code/Data/Filetypes.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Flowframes.Data
{
class Filetypes
{
public static readonly string[] imagesOpenCv = new string[] { ".png", ".jpg", ".jpeg", ".webp", ".bmp", ".tif", ".tiff" };
public static readonly string[] imagesInterpCompat = new string[] { ".png", ".jpg", ".jpeg", ".webp", ".bmp" };
}
}