source: flair-src/trunk/lib/FlairSensorActuator/src/Camera.cpp@ 123

Last change on this file since 123 was 123, checked in by Sanahuja Guillaume, 7 years ago

vision filter

File size: 3.7 KB
RevLine 
[3]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[3]4// %flair:license}
5// created: 2014/03/06
6// filename: Camera.cpp
7//
8// author: Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: Virtual class for Camera
14//
15//
16/*********************************************************************/
17
18#include "Camera.h"
19#include <FrameworkManager.h>
20#include <Tab.h>
21#include <TabWidget.h>
22#include <GroupBox.h>
23#include <GridLayout.h>
24#include <DataPlot1D.h>
25#include <Picture.h>
[123]26#include <VisionFilter.h>
[3]27#include <highgui.h>
28#include <fstream>
29
30using std::string;
31using namespace flair::core;
32using namespace flair::gui;
33
[15]34namespace flair {
35namespace sensor {
[3]36
[15]37Camera::Camera(const FrameworkManager *parent, string name, uint16_t width,
38 uint16_t height, cvimage::Type::Format format)
39 : IODevice(parent, name) {
40 plot_tab = NULL;
[121]41 logFormat=LogFormat::NONE;
[3]42
[15]43 // do not allocate imagedata, allocation is done by the camera
44 output = new cvimage((IODevice *)this, width, height, format, "out", false);
[121]45
[15]46 // station sol
47 main_tab = new Tab(parent->GetTabWidget(), name);
48 tab = new TabWidget(main_tab->NewRow(), name);
49 sensor_tab = new Tab(tab, "Setup");
50 setup_groupbox = new GroupBox(sensor_tab->NewRow(), name);
51 setup_layout = new GridLayout(sensor_tab->NewRow(), "setup");
[3]52}
53
[121]54//This contructor must only be called for a simulated device.
[15]55Camera::Camera(const IODevice *parent, std::string name)
56 : IODevice(parent, name) {
57 plot_tab = NULL;
58 main_tab = NULL;
59 tab = NULL;
60 sensor_tab = NULL;
61 setup_groupbox = NULL;
[3]62
[15]63 output = NULL;
[121]64 logFormat=LogFormat::NONE;
[3]65}
66
67Camera::~Camera() {
[15]68 if (main_tab != NULL)
69 delete main_tab;
[3]70}
71
[121]72void Camera::SetLogFormat(LogFormat logFormat) {
73 this->logFormat=logFormat;
74 switch(logFormat) {
75 case LogFormat::RAW:
76 AddDataToLog(output);
77 Warn("raw log of cvimage is not yet implemented\n");
78 break;
79 case LogFormat::JPG:
[122]80 Warn("logging cvimage to jpeg\n");
81 Warn("jpeg are not included in classical dbt file, as dbt does not handle variable length\n");
[121]82 break;
[122]83 default:
84 Warn("LogFormat unknown\n");
[121]85 }
86}
87
[3]88DataType const &Camera::GetOutputDataType() const {
[15]89 return output->GetDataType();
[3]90}
91
[15]92GroupBox *Camera::GetGroupBox(void) const { return setup_groupbox; }
[3]93
[15]94GridLayout *Camera::GetLayout(void) const { return setup_layout; }
[3]95
96void Camera::UseDefaultPlot(const core::cvimage *image) {
[15]97 if (tab == NULL) {
98 Err("not applicable for simulation part.\n");
99 return;
100 }
[3]101
[15]102 plot_tab = new Tab(tab, "Picture");
103 Picture *plot = new Picture(plot_tab->NewRow(), ObjectName(), image);
[3]104}
105
[15]106Tab *Camera::GetPlotTab(void) const { return plot_tab; }
[3]107
[15]108uint16_t Camera::Width(void) const { return output->GetDataType().GetWidth(); }
[3]109
110uint16_t Camera::Height(void) const {
[15]111 return output->GetDataType().GetHeight();
[3]112}
113
[15]114core::cvimage *Camera::Output(void) { return output; }
[3]115
[121]116void Camera::ProcessUpdate(core::io_data* data) {
[122]117 if(getFrameworkManager()->IsLogging() && getFrameworkManager()->IsDeviceLogged(this)) {
118 switch(logFormat) {
119 case LogFormat::JPG:
120 IplImage *img=((cvimage*)data)->img;
[123]121 string filename=getFrameworkManager()->GetLogPath()+"/"+ObjectName()+"_"+std::to_string(data->DataTime())+".jpg";
122 saveToJpeg(img,filename);
[122]123 break;
124 }
[121]125 }
126 IODevice::ProcessUpdate(data);
127}
128
[3]129void Camera::SaveToFile(string filename) const {
[15]130 Printf("saving %s, size %i\n", filename.c_str(), output->img->imageSize);
131 std::ofstream pFile;
132 pFile.open(filename);
133 output->GetMutex();
134 pFile.write(output->img->imageData, output->img->imageSize);
135 output->ReleaseMutex();
[3]136
[15]137 pFile.close();
[3]138}
139
140} // end namespace sensor
141} // end namespace flair
Note: See TracBrowser for help on using the repository browser.