/**
* \brief Discriminant feature described by its location and label.
*/
-struct Feature
+struct CV_EXPORTS Feature
{
int x; ///< x offset
int y; ///< y offset
void write(FileStorage& fs) const;
};
-struct Template
+struct CV_EXPORTS Template
{
int width;
int height;
* \brief Object detector using the LINE template matching algorithm with any set of
* modalities.
*/
-class Detector
+class CV_EXPORTS Detector
{
public:
/**
*
* Default parameter settings suitable for VGA images.
*/
-Ptr<Detector> getDefaultLINE();
+CV_EXPORTS Ptr<Detector> getDefaultLINE();
/**
* \brief Factory function for detector using LINE-MOD algorithm with color gradients
*
* Default parameter settings suitable for VGA images.
*/
-Ptr<Detector> getDefaultLINEMOD();
+CV_EXPORTS Ptr<Detector> getDefaultLINEMOD();
} // namespace linemod
} // namespace cv