From 0b985ce87d6ce6d4110a50d5be48831d34794cd2 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Sun, 06 Apr 2003 14:38:18 +0000 Subject: - add realtime preview widget with zoom control The camera driver is damn slow. For a 240x160x16 image, it takes ~100ms. That gives approx. 10fps which is too slow for doing video. :( --- (limited to 'noncore/multimedia') diff --git a/noncore/multimedia/camera/.cvsignore b/noncore/multimedia/camera/.cvsignore index 6d678c6..d89e3af 100644 --- a/noncore/multimedia/camera/.cvsignore +++ b/noncore/multimedia/camera/.cvsignore @@ -1 +1,5 @@ config.in +mainwindowbase.h +mainwindowbase.cpp +Makefile + diff --git a/noncore/multimedia/camera/camera.pro b/noncore/multimedia/camera/camera.pro index e937807..2d1faa3 100644 --- a/noncore/multimedia/camera/camera.pro +++ b/noncore/multimedia/camera/camera.pro @@ -5,16 +5,18 @@ TEMPLATE = app CONFIG = qt warn_on debug HEADERS = zcameraio.h \ + previewwidget.h \ mainwindow.h SOURCES = zcameraio.cpp \ + previewwidget.cpp \ mainwindow.cpp \ main.cpp INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include LIBS += -lqpe -lopiecore2 -INTERFACES = +INTERFACES = mainwindowbase.ui TARGET = opiecam include ( $(OPIEDIR)/include.pro ) diff --git a/noncore/multimedia/camera/mainwindow.cpp b/noncore/multimedia/camera/mainwindow.cpp index 4218232..8578bce 100644 --- a/noncore/multimedia/camera/mainwindow.cpp +++ b/noncore/multimedia/camera/mainwindow.cpp @@ -14,30 +14,28 @@ **********************************************************************/ #include "mainwindow.h" +#include "mainwindowbase.h" #include "zcameraio.h" #include +#include #include #include - #include - #include #include +#include + CameraMainWindow::CameraMainWindow( QWidget * parent, const char * name, WFlags f ) :QMainWindow( parent, name, f ) { - QVBox* v = new QVBox( this ); - l = new QLabel( v ); - l->setFixedSize( QSize( 240, 160 ) ); - QPushButton* p = new QPushButton( "Snapshot", v ); - connect( p, SIGNAL( clicked() ), this, SLOT( clickedSnapShot() ) ); - v->show(); - l->show(); - p->show(); - setCentralWidget( v ); + mw = new MainWindowBase( this, "main widget" ); + ZCameraIO::instance()->setCaptureFrame( 240, 160, 256 ); + setCentralWidget( mw ); + mw->show(); + connect( mw->zoom, SIGNAL( activated( int ) ), this, SLOT( changeZoom(int) ) ); }; @@ -46,19 +44,17 @@ CameraMainWindow::~CameraMainWindow() } -void CameraMainWindow::clickedSnapShot() +void CameraMainWindow::changeZoom( int zoom ) { - QDirectPainter fb( l ); - ZCameraIO::instance()->snapshot( fb.frameBuffer() ); - - /* - QImage i; - QPixmap p; - if ( ZCameraIO::instance()->snapshot( &i ) ) + int z; + switch ( zoom ) { - p.convertFromImage( i ); - l->setPixmap( p ); + case 0: z = 128; break; + case 1: z = 256; break; + case 2: z = 512; break; + default: assert( 0 ); break; } - */ + + ZCameraIO::instance()->setCaptureFrame( 240, 160, z ); } diff --git a/noncore/multimedia/camera/mainwindow.h b/noncore/multimedia/camera/mainwindow.h index 521107b..7ccdcf8 100644 --- a/noncore/multimedia/camera/mainwindow.h +++ b/noncore/multimedia/camera/mainwindow.h @@ -17,10 +17,14 @@ #define MAINWINDOW_H #include +#include +#include +#include class QIconSet; class QToolButton; class QLabel; +class MainWindowBase; class CameraMainWindow: public QMainWindow { @@ -30,13 +34,13 @@ class CameraMainWindow: public QMainWindow CameraMainWindow( QWidget * parent = 0, const char * name = "mainwindow", WFlags f = 0 ); virtual ~CameraMainWindow(); - protected: - public slots: - void clickedSnapShot(); + void changeZoom( int ); + + protected: private: - QLabel* l; + MainWindowBase* mw; }; #endif diff --git a/noncore/multimedia/camera/mainwindowbase.ui b/noncore/multimedia/camera/mainwindowbase.ui new file mode 100644 index 0000000..8da884a --- a/dev/null +++ b/noncore/multimedia/camera/mainwindowbase.ui @@ -0,0 +1,246 @@ + +MainWindowBase + + QWidget + + name + MainWindowBase + + + geometry + + 0 + 0 + 242 + 329 + + + + caption + Form1 + + + layoutMargin + + + layoutSpacing + + + + margin + 0 + + + spacing + 2 + + + QLayoutWidget + + name + Layout1 + + + + margin + 0 + + + spacing + 6 + + + QLabel + + name + TextLabel1 + + + text + Reso: + + + + QComboBox + + + text + 240x160 + + + + + text + 480x320 + + + + name + resolution + + + + QLabel + + name + TextLabel2 + + + text + Zoom: + + + + QComboBox + + + text + Half + + + + + text + Full + + + + + text + Double + + + + name + zoom + + + + + + QLayoutWidget + + name + Layout2 + + + + margin + 0 + + + spacing + 6 + + + + name + Spacer1 + + + orientation + Horizontal + + + sizeType + Expanding + + + sizeHint + + 20 + 20 + + + + + QPushButton + + name + PushButton1 + + + text + Take Photo + + + default + true + + + + + name + Spacer2 + + + orientation + Horizontal + + + sizeType + Expanding + + + sizeHint + + 20 + 20 + + + + + + + + name + Spacer3 + + + orientation + Vertical + + + sizeType + Expanding + + + sizeHint + + 20 + 20 + + + + + PreviewWidget + + name + preview + + + + + + + PreviewWidget +
previewwidget.h
+ + 240 + 160 + + 0 + + 0 + 0 + + image0 +
+
+ + + image0 + 789c6dd2c10ac2300c00d07bbf2234b7229d1ddec44f503c0ae2a154410f53d0ed20e2bf6bdb656dd6861dd23d9a66591b0587fd1654235ebded6f0edcd53e419d87ae7b1f4f9b8f906d0bfe012317426a70b07bdc2f3ec77f8ed6b89559061a0343d06a124cc105596482585094bc0ae599b04646c9018926491b2205e140c485cace25755c175d0a967b622ff900b8cc9c7d29af594ea722d589167f813aa852ba07d94b9dce296e883fe7bb163f23896753 + + +
diff --git a/noncore/multimedia/camera/previewwidget.cpp b/noncore/multimedia/camera/previewwidget.cpp new file mode 100644 index 0000000..bb84c00 --- a/dev/null +++ b/noncore/multimedia/camera/previewwidget.cpp @@ -0,0 +1,45 @@ +/********************************************************************** +** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. +** +** This file is part of Opie Environment. +** +** This file may be distributed and/or modified under the terms of the +** GNU General Public License version 2 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. +** +** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +**********************************************************************/ + +#include "previewwidget.h" +#include "zcameraio.h" + +PreviewWidget::PreviewWidget( QWidget * parent, const char * name, WFlags f ) + :QLabel( parent, name, f ) +{ + setFixedSize( QSize( 240, 160 ) ); + setBackgroundMode( NoBackground ); + + startTimer( 150 ); +}; + + +PreviewWidget::~PreviewWidget() +{ +} + + +void PreviewWidget::timerEvent( QTimerEvent* ) +{ + //QDirectPainter fb( this ); + //ZCameraIO::instance()->snapshot( fb.frameBuffer() ); + + if ( ZCameraIO::instance()->snapshot( &i ) ) + { + p.convertFromImage( i ); + setPixmap( p ); + } +} + diff --git a/noncore/multimedia/camera/previewwidget.h b/noncore/multimedia/camera/previewwidget.h new file mode 100644 index 0000000..c031d95 --- a/dev/null +++ b/noncore/multimedia/camera/previewwidget.h @@ -0,0 +1,39 @@ +/********************************************************************** +** Copyright (C) 2003 Michael 'Mickey' Lauer. All rights reserved. +** +** This file is part of Opie Environment. +** +** This file may be distributed and/or modified under the terms of the +** GNU General Public License version 2 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. +** +** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +**********************************************************************/ + +#ifndef PREVIEWWIDGET_H +#define PREVIEWWIDGET_H + +#include +#include +#include + +class PreviewWidget: public QLabel +{ + Q_OBJECT + + public: + PreviewWidget( QWidget * parent = 0, const char * name = 0, WFlags f = 0 ); + virtual ~PreviewWidget(); + + protected: + virtual void timerEvent( QTimerEvent* ); + + private: + QPixmap p; + QImage i; +}; + +#endif diff --git a/noncore/multimedia/camera/zcameraio.cpp b/noncore/multimedia/camera/zcameraio.cpp index 7343dca..56b2e13 100644 --- a/noncore/multimedia/camera/zcameraio.cpp +++ b/noncore/multimedia/camera/zcameraio.cpp @@ -24,9 +24,12 @@ #include #include +#include #include +#define SHARPZDC "/dev/sharp_zdc" + ZCameraIO* ZCameraIO::_instance = 0; ZCameraIO* ZCameraIO::instance() @@ -43,7 +46,7 @@ ZCameraIO* ZCameraIO::instance() ZCameraIO::ZCameraIO() :_height( 0 ), _width( 0 ), _zoom( 0 ), _rot( 0 ), _readlen( 0 ) { - _driver = ::open( "/dev/sharp_zdc", O_RDWR ); + _driver = ::open( SHARPZDC, O_RDWR ); if ( _driver == -1 ) oerr << "Can't open camera driver: " << strerror(errno) << oendl; else @@ -65,7 +68,10 @@ void ZCameraIO::init() ZCameraIO::~ZCameraIO() { if ( _driver != -1 ) + { + setReadMode( 0 ); ::close( _driver ); + } } @@ -107,7 +113,7 @@ bool ZCameraIO::setCaptureFrame( int width, int height, int zoom, bool rot ) if ( write( b ) ) { _width = width; - _height = _height; + _height = height; _zoom = zoom; _rot = rot; _readlen = 2 * _width * _height; // camera is fixed @ 16 bits per pixel @@ -119,7 +125,7 @@ bool ZCameraIO::setCaptureFrame( int width, int height, int zoom, bool rot ) void ZCameraIO::setReadMode( int mode ) { - char b[4]; + char b[10]; sprintf( b, "M=%d", mode ); write( b, mode <= 9 ? 3 : 4 ); if ( mode & 1 ) // STATUS bit is set @@ -136,8 +142,20 @@ void ZCameraIO::clearShutterLatch() bool ZCameraIO::read( char* b, int len ) { + #ifndef NO_TIMING + QTime t; + t.start(); + #endif int rlen = ::read( _driver, b, len ); - odebug << "read " << rlen << " from driver." << oendl; + #ifndef NO_TIMING + int time = t.elapsed(); + #else + int time = -1; + #endif + if ( rlen ) + odebug << "read " << rlen << " ('" << b[0] << b[1] << b[2] << b[3] << "') [" << time << " ms] from driver." << oendl; + else + odebug << "read nothing from driver." << oendl; return rlen == len; } @@ -155,27 +173,12 @@ bool ZCameraIO::write( char* buf, int len ) bool ZCameraIO::snapshot( QImage* image ) { - /* - + setReadMode( IMAGE | XFLIP | YFLIP ); char buf[76800]; - - write( _driver, "M=13", 4 ); - write( _driver, "R=240,160,256,480", 17 ); - write( _driver, "M=12", 4 ); - - int result = read( _driver, &buf, sizeof buf ); - - return result == sizeof buf; - - */ - - unsigned char buf[76800]; - unsigned char* bp = buf; + char* bp = buf; unsigned char* p; - int fd = open( "/tmp/cam", O_RDONLY ); - if ( ::read( fd, buf, sizeof buf ) != sizeof buf ) - owarn << "Couldn't read image from /dev/sharp_zdc" << oendl; + read( bp, _readlen ); image->create( 240, 160, 16 ); for ( int i = 0; i < 160; ++i ) @@ -195,11 +198,18 @@ bool ZCameraIO::snapshot( QImage* image ) return true; } -bool ZCameraIO::snapshot( uchar* buf ) +bool ZCameraIO::snapshot( unsigned char* buf ) { + setReadMode( IMAGE | XFLIP | YFLIP ); + + read( (char*) buf, _readlen ); + + /* //TESTCODE int fd = open( "/tmp/cam", O_RDONLY ); - if ( ::read( fd, buf, 76800 ) != 76800 ) + if ( ::read( fd, (char*) buf, 76800 ) != 76800 ) owarn << "Couldn't read image from /dev/sharp_zdc" << oendl; + // TESTCODE */ + return true; } -- cgit v0.9.0.2