Changeset 338 in flair-src for trunk/lib/FlairCore


Ignore:
Timestamp:
10/17/19 14:49:35 (5 years ago)
Author:
Sanahuja Guillaume
Message:

remove opencv dep

Location:
trunk
Files:
2 deleted
3 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/lib/FlairCore/src/Picture.cpp

    r330 r338  
    1717
    1818#include "Picture.h"
    19 #include "cvimage.h"
     19#include "Image.h"
    2020#include "Layout.h"
    2121#include "LayoutPosition.h"
     
    3030
    3131Picture::Picture(const LayoutPosition *position, string name,
    32                  const cvimage *image)
     32                 const Image *image)
    3333    : SendData(position, name, "Picture", 200) {
    3434  this->image = image;
  • trunk/lib/FlairCore/src/Picture.h

    r330 r338  
    1818namespace flair {
    1919namespace core {
    20 class cvimage;
     20class Image;
    2121}
    2222
     
    4545  */
    4646  Picture(const LayoutPosition *position, std::string name,
    47           const core::cvimage *image);
     47          const core::Image *image);
    4848
    4949  /*!
     
    7070  void ExtraXmlEvent(void){};
    7171
    72   const core::cvimage *image;
     72  const core::Image *image;
    7373};
    7474
Note: See TracChangeset for help on using the changeset viewer.