/*! 
*   \file  CMD5AndUrl.h
*   \brief Declares class that supports MD5 and URL-read for images.
*    
*   \details  
*   CMD5AndUrl supports functions such as MD5 extraction and reading image from URL. Note that
*   not all functions ar eportable across Windows and Unix, since we use Windows library for MD5. 
*
*   \date      November 4, 2011
*   \copyright eBay Research Labs.
*/

#pragma once

// Include C++ headers.
#include <string>

// Include openCV-specific headers.
#include <cv.h>

namespace Mantis
{
  std::string createMD5HashForImage(const cv::Mat& img);
  
  cv::Mat  readImage(const std::vector<unsigned char>& data);
}
