loadJPEG - multiple declarations

Function loadJPEG

Load JPEG from file using local FileSystem. Causes GC allocation

SuperImage loadJPEG (
  string filename
);

Function loadJPEG

Load JPEG from stream using default image factory. Causes GC allocation

SuperImage loadJPEG (
  InputStream istrm
);

Function loadJPEG

Load JPEG from stream using specified image factory. GC-free

Compound!(dlib.image.image.SuperImage,string) loadJPEG (
  InputStream istrm,
  SuperImageFactory imgFac
);