EDeepLearningTool::InitializeInference

Initializes the neural network for inference (i.e. making predictions with the neural network).
You need to pass an image or a vector of images with the same characteristics (image resolution, image type and number of image) as the image or vector of images that you will use to make inference with this tool.

Namespace: Euresys::Open_eVision::EasyDeepLearning

[C++]

void InitializeInference(
   int width,
   int height,
   Euresys::Open_eVision::EImageType imageType,
   int numImages
)

void InitializeInference(
   const EBaseROI& img
)

void InitializeInference(
   std::vector<const Euresys::Open_eVision::EBaseROI*>& imgList
)

void InitializeInference(
   std::vector<Euresys::Open_eVision::EImageBW8>& imgList
)

void InitializeInference(
   std::vector<Euresys::Open_eVision::EImageBW16>& imgList
)

void InitializeInference(
   std::vector<Euresys::Open_eVision::EImageC24>& imgList
)

Parameters

width

Width of the images for which to prepare the tool for inference

height

Height of the images for which to prepare the tool for inference

imageType

Type of the images for which to prepare the tool for inference

numImages

Width of the images for which to prepare the tool for inference

img

Image for which to prepare the tool for inference

imgList

Vector of images for which to prepare the tool for inference

EDeepLearningTool.InitializeInference

Initializes the neural network for inference (i.e. making predictions with the neural network).
You need to pass an image or a vector of images with the same characteristics (image resolution, image type and number of image) as the image or vector of images that you will use to make inference with this tool.

Namespace: Euresys.Open_eVision.EasyDeepLearning

[C#]

void InitializeInference(
   int width,
   int height,
   Euresys.Open_eVision.EImageType imageType,
   int numImages
)

void InitializeInference(
   Euresys.Open_eVision.EBaseROI img
)

void InitializeInference(
   ref Euresys.Open_eVision.EBaseROI[] imgList
)

void InitializeInference(
   ref Euresys.Open_eVision.EImageBW8[] imgList
)

void InitializeInference(
   ref Euresys.Open_eVision.EImageBW16[] imgList
)

void InitializeInference(
   ref Euresys.Open_eVision.EImageC24[] imgList
)

Parameters

width

Width of the images for which to prepare the tool for inference

height

Height of the images for which to prepare the tool for inference

imageType

Type of the images for which to prepare the tool for inference

numImages

Width of the images for which to prepare the tool for inference

img

Image for which to prepare the tool for inference

imgList

Vector of images for which to prepare the tool for inference