sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef CAMERAHISTOGRAM_H sl@0: #define CAMERAHISTOGRAM_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: sl@0: class MHistogramBuffer; sl@0: class MCameraHistogram; sl@0: class MCameraV2Histogram; sl@0: sl@0: class MImplementationFactory; sl@0: sl@0: /** sl@0: The current Version of the TDirectHistogramParameters class. sl@0: */ sl@0: static const TUint KECamDirectHistogramParametersCurrentVersion = 1; sl@0: sl@0: /** sl@0: @deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver sl@0: which have callback functions which notify the client about availability of histogram data. These are sent when sl@0: CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If sl@0: CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle. sl@0: sl@0: Uid used to identify the event that the request for histogram has completed. sl@0: A callback to MCameraObserver2::HandleEvent() will occur when the histogram data is ready to be retrieved. sl@0: If a call to StartHistogram() is made without a previous successful call to PrepareHistogramL() then the callback returns KErrBadHandle. sl@0: */ sl@0: static const TUid KUidECamEventCameraHistogram = {KUidECamEventHistogramUidValue}; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the CCameraHistogram interface, via a call to CCamera::CustomInterface(). sl@0: sl@0: @see KECamHistogramUidValue sl@0: @see CCamera::CCameraHistogram sl@0: @deprecated use KECamV2HistogramUid sl@0: */ sl@0: static const TUid KECamHistogramUid = {KECamHistogramUidValue}; sl@0: sl@0: /** sl@0: This class allows the client to get histogram data in a specified format for an image (for example, luminance based histogram, sl@0: average colour value histogram, etc). sl@0: sl@0: The data generated can be fed to some exposure based algorithm, or directly displayed in the viewfinder. sl@0: It also allows the client to get and set the properties of a histogram. sl@0: sl@0: The client selects histogram parameters calling PrepareHistogramL(). It can then start and stop sl@0: receiving notifications from the ECam implementation by calling StartHistogramL() and StopHistogramL(). sl@0: The client application using this API should provide MCameraObserver2 interface to be signalled, sl@0: with event KUidECamEventCameraHistogram, when histogram data is available to be retrieved from sl@0: the ECam implementation. sl@0: The client can then retrieve the histogram data from the ECam implementation calling HistograDataL(). sl@0: sl@0: @note This class provides a standardised client interface for the camera histogram. Classes cannot be derived from it. sl@0: sl@0: @note If the class methods leave, the output type parameter value is not guaranteed to be valid. sl@0: sl@0: @publishedPartner sl@0: @deprecated use CCamera::CCameraV2Histogram sl@0: */ sl@0: sl@0: class CCamera::CCameraHistogram : public CBase sl@0: { sl@0: sl@0: friend class CCamera; sl@0: sl@0: public: sl@0: /** Supported histogram types. */ sl@0: enum THistogramType sl@0: { sl@0: /** No histogram has been specified. */ sl@0: EHistNone = 0x0000, sl@0: /** Luminance based histogram. */ sl@0: ELuminance = 0x0001, sl@0: /** The histogram is based on the average value of all three RGB colour components. */ sl@0: EAverageRGB = 0x0002, sl@0: /** The histogram is based on the value of the red colour component. */ sl@0: ERedComponent = 0x0004, sl@0: /** The histogram is based on the value of the blue colour component. */ sl@0: EBlueComponent = 0x0008, sl@0: /** The histogram is based on the value of the green colour component. */ sl@0: EGreenComponent = 0x0010 sl@0: }; sl@0: sl@0: public: sl@0: IMPORT_C static CCamera::CCameraHistogram* NewL(CCamera& aCamera); sl@0: sl@0: IMPORT_C TUint32 SupportedHistograms(); sl@0: IMPORT_C TUint PrepareHistogramL(CCamera::CCameraHistogram::THistogramType aType); sl@0: IMPORT_C TUint PrepareDSAHistogramL(CCamera::CCameraHistogram::THistogramType aType, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor); sl@0: sl@0: IMPORT_C void StartHistogramL(TUint aHistHandle); sl@0: IMPORT_C void StopHistogramL(TUint aHistHandle); sl@0: IMPORT_C void DestroyHistogramL(TUint aHistHandle); sl@0: sl@0: IMPORT_C void GetActiveHistogramsL(RArray& aActiveHistograms); sl@0: IMPORT_C void UpdateDSAHistogramPropertiesL(TUint aHistHandle, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor); sl@0: IMPORT_C void GetDSAHistogramPropertiesL(TUint aHistHandle, TPoint& aPosition, TSize& aSize, TRgb& aColor); sl@0: sl@0: IMPORT_C MHistogramBuffer& HistogramDataL(); sl@0: IMPORT_C MHistogramBuffer& HistogramDataL(TUint aHistHandle); sl@0: sl@0: IMPORT_C ~CCameraHistogram(); sl@0: sl@0: private: sl@0: CCameraHistogram(CCamera& aOwner); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: CCamera& iOwner; sl@0: MCameraHistogram* iImpl; // not owned sl@0: }; sl@0: sl@0: /** sl@0: This is the UID which is used to obtain the CCameraV2Histogram interface, via a call to CCamera::CustomInterface(). sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: static const TUid KECamV2HistogramUid = {KECamV2HistogramUidValue}; sl@0: sl@0: /** sl@0: This class allows the client to get histogram data in a specified format for an image (for example, luminance based histogram, sl@0: average colour value histogram, etc). sl@0: sl@0: Histogram may be created for still images, video, viewfinders and snapshot. Further different types of histogram may be sl@0: created for any of the imaging modes. sl@0: sl@0: The data generated can be fed to some exposure based algorithm, or directly displayed on the screen. sl@0: It also allows the client to get and set the properties of a histogram. sl@0: sl@0: The client selects histogram parameters calling PrepareClientHistogramL or PrepareDirectHistogramL. It can then start and sl@0: stop receiving notifications from the ECam implementation by calling StartHistogram() and StopHistogram(). sl@0: The client application using this API shall provide the interfaces: MCaptureImageObserver, MCaptureVideoObserver, sl@0: MDirectViewFinderObserver and MClientViewFinderObserver in order to receive notifications about direct histogram display sl@0: or client histogram data availablility. sl@0: sl@0: Implementation shall use MHistogramV2Buffer in order to provide client histogram data. sl@0: sl@0: @note This class provides a standardised client interface for the camera histogram. Classes cannot be derived from it. sl@0: sl@0: @note If the class methods leave, the output type parameter value is not guaranteed to be valid. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: class CCamera::CCameraV2Histogram : public CBase sl@0: { sl@0: sl@0: friend class CCamera; sl@0: friend CCamera::CCameraV2Histogram* CCamera::CCameraSnapshot::CreateHistogramHandleL() const; sl@0: friend CCamera::CCameraV2Histogram* CCamera::CCameraImageCapture::CreateHistogramHandleL() const; sl@0: friend CCamera::CCameraV2Histogram* CCamera::CCameraVideoCaptureControl::CreateHistogramHandleL() const; sl@0: friend CCamera::CCameraV2Histogram* CCamera::CCameraV2DirectViewFinder::CreateHistogramHandleL() const; sl@0: friend CCamera::CCameraV2Histogram* CCamera::CCameraClientViewFinder::CreateHistogramHandleL() const; sl@0: sl@0: public: sl@0: /** sl@0: Supported histogram types. sl@0: The enumeration list may be extended in future. sl@0: */ sl@0: enum THistogramType sl@0: { sl@0: /** No histogram has been specified. */ sl@0: EHistNone = 0x0000, sl@0: /** Luminance based histogram. */ sl@0: ELuminance = 0x0001, sl@0: /** The histogram is based on the average value of all three RGB colour components. */ sl@0: EAverageRGB = 0x0002, sl@0: /** The histogram is based on the value of the red colour component. */ sl@0: ERedComponent = 0x0004, sl@0: /** The histogram is based on the value of the blue colour component. */ sl@0: EBlueComponent = 0x0008, sl@0: /** The histogram is based on the value of the green colour component. */ sl@0: EGreenComponent = 0x0010, sl@0: /** Qualitative Histogram to mark over exposed parts of image. */ sl@0: EOverExposure = 0x0020, sl@0: /** Qualitative Histogram to mark under exposed parts of image. */ sl@0: EUnderExposure = 0x0040, sl@0: }; sl@0: sl@0: /** sl@0: Specifes the parameters necessary for a direct histogram. sl@0: */ sl@0: class TDirectHistogramParameters sl@0: { sl@0: public: sl@0: IMPORT_C TDirectHistogramParameters(); sl@0: sl@0: IMPORT_C TUint Size() const; sl@0: IMPORT_C TUint Version() const; sl@0: sl@0: private: sl@0: //for future expansion sl@0: TUint iSize:24; sl@0: TUint iVersion:8; sl@0: sl@0: // reserved for future expansion sl@0: TInt iReserved1; sl@0: TInt iReserved2; sl@0: TInt iReserved3; sl@0: sl@0: public: sl@0: /** The type of histogram to be prepared. This must be one of the supported histogram types returned by sl@0: SupportedHistograms(). */ sl@0: THistogramType iHistogramType; sl@0: /** The position on the screen (in pixels) where the histogram is to be displayed. */ sl@0: TPoint iPosition; sl@0: /** The size of histogram in pixels. */ sl@0: TSize iHistogramSize; sl@0: /** The colour and alpha blending with which the histogram will be displayed. */ sl@0: TRgb iHistogramColor; sl@0: /** The background color for the direct histogram. */ sl@0: TRgb iBackgroundColor; sl@0: }; sl@0: sl@0: public: sl@0: sl@0: IMPORT_C void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const; sl@0: IMPORT_C void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const; sl@0: sl@0: IMPORT_C void PrepareClientHistogramL(THistogramType aType); sl@0: sl@0: IMPORT_C void PrepareDirectHistogramL(const TDirectHistogramParameters& aDirectHistogramParameters); sl@0: sl@0: IMPORT_C void UpdateDirectHistogramPropertiesL(const TDirectHistogramParameters& aDirectHistogramParameters); sl@0: IMPORT_C void GetDirectHistogramPropertiesL(TDirectHistogramParameters& aDirectHistogramParameters) const; sl@0: sl@0: IMPORT_C void StartHistogram(); sl@0: IMPORT_C void StopHistogram(); sl@0: sl@0: IMPORT_C void GetHistogramStateL(TBool& aIsHistogramActive) const; sl@0: sl@0: IMPORT_C ~CCameraV2Histogram(); sl@0: sl@0: private: sl@0: IMPORT_C static CCamera::CCameraV2Histogram* CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory); sl@0: sl@0: CCameraV2Histogram(CCamera& aOwner); sl@0: void ConstructL(const MImplementationFactory& aImplFactory); sl@0: sl@0: private: sl@0: CCamera& iOwner; sl@0: MCameraV2Histogram* iImpl; // not owned sl@0: }; sl@0: sl@0: sl@0: // sl@0: // MHistogramBuffer // sl@0: // sl@0: sl@0: /** sl@0: This class is used to pass histogram data between the camera device and a client that implements MCameraObserver2. sl@0: sl@0: The buffer may contain multiple histograms. sl@0: sl@0: The class allows the client to access the data as a descriptor to a kernel chunk. sl@0: sl@0: @publishedPartner sl@0: @deprecated use MHistogramV2Buffer sl@0: */ sl@0: class MHistogramBuffer sl@0: { sl@0: sl@0: public: sl@0: sl@0: /** sl@0: @deprecated Only one histogram is available per buffer in MHistogramV2Buffer sl@0: sl@0: Returns the number of histograms contained within the buffer. sl@0: sl@0: This value will not depend upon the number of images for which histograms are requested by the sl@0: client, but on the number of histograms generated by the ECam implementation. sl@0: In the case where the driving mode (bracket mode, video mode, etc.) returns more than one image or frame sl@0: the ECam implementation may not generate histograms for every valid image or frame. This can happen, for example, sl@0: if there are no changes in the histogram data or if there are performance problems. sl@0: sl@0: @return The number of histograms in the buffer. sl@0: */ sl@0: virtual TInt NumOfHistograms() = 0; sl@0: sl@0: /** sl@0: @deprecated use CCamera::CCameraV2Histogram::THistogramType MHistogramV2Buffer::Type() sl@0: sl@0: Returns the type of histogram data that is available at the specified index within the histogram buffer. sl@0: sl@0: @param aIndex sl@0: The index of the required histogram in the buffer. sl@0: This must be between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @return The type of the histogram in the buffer at the given index. sl@0: */ sl@0: virtual CCamera::CCameraHistogram::THistogramType TypeL(TUint aIndex) = 0; sl@0: sl@0: /** sl@0: @deprecated use TInt MHistogramV2Buffer::ElementSize() sl@0: sl@0: Returns the number of bits per histogram element value used to store the histogram data at a sl@0: specified index within the histogram buffer. sl@0: sl@0: The number of bits per histogram element will be decided by the ECam implementation and it may vary sl@0: for each histogram within the histogram buffer. sl@0: sl@0: @see NumOfElementsL() sl@0: sl@0: @param aIndex sl@0: The index of the required histogram in the buffer. sl@0: This must be between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @return The histogram element size in bits. sl@0: */ sl@0: virtual TInt ElementSizeL(TUint aIndex) = 0; sl@0: sl@0: /** sl@0: @deprecated use TInt MHistogramV2Buffer::NumOfElements() sl@0: sl@0: Returns the number of elements in the histogram at a specified index within the histogram buffer. sl@0: sl@0: This value can be used along with the element size obtained by calling ElementSizeL(), to calculate sl@0: the exact size of histogram data ( element-size x number-of-elements = histogram-size ). sl@0: sl@0: @param aIndex sl@0: The index of the required histogram in the buffer. sl@0: This must be between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @return The number of elements in the histogram. sl@0: */ sl@0: virtual TInt NumOfElementsL(TUint aIndex) = 0; sl@0: sl@0: /** sl@0: @deprecated use TDesC8* MHistogramV2Buffer::DataL() sl@0: sl@0: Allows access to a given histogram in the histogram buffer via a descriptor. sl@0: sl@0: @param aIndex sl@0: The index of the required histogram in the buffer. sl@0: This must be between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @return A pointer to a descriptor containing the histogram data. sl@0: */ sl@0: virtual TDesC8* DataL(TUint aIndex) = 0; sl@0: sl@0: /** sl@0: @deprecated use RChunk& MHistogramV2Buffer::ChunkL() sl@0: sl@0: Returns a handle to the chunk that contains the histogram data. sl@0: The RChunk is exposed so that it can potentially be shared between multiple sl@0: processes. sl@0: @note The descriptor pointer returned by DataL() is effectively derived from this RChunk. sl@0: sl@0: @leave KErrNotSupported if the chunk is not available. sl@0: sl@0: @return A reference to a handle to the chunk containing the histogram data. sl@0: */ sl@0: virtual RChunk& ChunkL() = 0; sl@0: sl@0: /** sl@0: @deprecated use TInt MHistogramV2Buffer::ChunkOffsetL() sl@0: sl@0: Returns the offset in the chunk (returned by ChunkL()) that contains the data for the sl@0: histogram at a specified index within the histogram buffer. sl@0: sl@0: @param aIndex sl@0: The index of the required histogram in the buffer. sl@0: This must be between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @return The offset in the chunk that contains the start of the histogram data. sl@0: */ sl@0: virtual TInt ChunkOffsetL(TUint aIndex) = 0; sl@0: sl@0: /** sl@0: @deprecated Only one histogram is available per buffer in MHistogramV2Buffer sl@0: sl@0: Returns the image number or frame index to which the histogram stored at the specified sl@0: index within the buffer relates. sl@0: sl@0: @param aIndex sl@0: The index of the required histogram in the buffer. sl@0: This must be between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @return The image number or frame index. sl@0: */ sl@0: virtual TInt ImageNumberL(TUint aIndex) = 0; sl@0: sl@0: /** sl@0: @deprecated Only one histogram is available per buffer in MHistogramV2Buffer sl@0: sl@0: Returns the handle of a particular histogram stored in the buffer. sl@0: sl@0: @param aIndex sl@0: The index of the required histogram in the buffer. sl@0: This must be between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1). sl@0: sl@0: @return The handle of the histogram on the ECam implementation. sl@0: */ sl@0: virtual TUint HandleL(TUint aIndex) = 0; sl@0: sl@0: /** sl@0: @deprecated use void MHistogramV2Buffer::Release() sl@0: sl@0: Releases the buffer. Once the client has processed the histogram data it should sl@0: use this method to signal to the camera that the buffer can be deleted or re-used. sl@0: */ sl@0: virtual void Release() = 0; sl@0: }; sl@0: sl@0: // sl@0: // MHistogramV2Buffer // sl@0: // sl@0: sl@0: /** sl@0: This class is used to pass histogram data between the camera device and a client that uses CCameraV2Histogram and sl@0: implements MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver and MClientViewFinderObserver. sl@0: sl@0: Only one histogram data is available per buffer. ECam implementation will issue another callback once a new histogram sl@0: data is ready. Till that time, client shall use the histogram data available from the histogram buffer currently retrieved. sl@0: sl@0: The class allows the client to access the data as a descriptor to a kernel chunk. sl@0: sl@0: @see CCameraV2Histogram sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MHistogramV2Buffer sl@0: { sl@0: sl@0: public: sl@0: /** sl@0: Returns the type of histogram data that is available within the histogram buffer. sl@0: sl@0: @return The type of the histogram in the buffer at the given index. sl@0: */ sl@0: virtual CCamera::CCameraV2Histogram::THistogramType Type()=0; sl@0: sl@0: /** sl@0: Returns the number of bits per histogram element value used to store the histogram data within the histogram buffer. sl@0: sl@0: The number of bits per histogram element will be decided by the ECam implementation. sl@0: sl@0: @see NumOfElementsL() sl@0: sl@0: @return Positive value means the histogram element size in bits. Negative value means error case. sl@0: */ sl@0: virtual TInt ElementSize()=0; sl@0: sl@0: /** sl@0: Returns the number of elements in the histogram within the histogram buffer. sl@0: sl@0: This value can be used along with the element size obtained by calling ElementSizeL(), to calculate sl@0: the exact size of histogram data ( element-size x number-of-elements = histogram-size ). sl@0: sl@0: @return Positive value means the number of elements in the histogram. Negative value means error case. sl@0: */ sl@0: virtual TInt NumOfElements()=0; sl@0: sl@0: /** sl@0: Allows access to the histogram in the histogram buffer via a descriptor. sl@0: sl@0: @return A pointer to a descriptor containing the histogram data. sl@0: sl@0: @leave May Leave with any error code. sl@0: */ sl@0: virtual TDesC8* DataL()=0; sl@0: sl@0: /** sl@0: Returns a handle to the chunk that contains the histogram data. sl@0: The RChunk is exposed so that it can potentially be shared between multiple sl@0: processes. sl@0: @note The descriptor pointer returned by DataL() is effectively derived from this RChunk. sl@0: sl@0: @leave KErrNotSupported if the chunk is not available. May Leave with any other error code as well. sl@0: sl@0: @return A reference to a handle to the chunk containing the histogram data. sl@0: */ sl@0: virtual RChunk& ChunkL()=0; sl@0: sl@0: /** sl@0: Returns the offset in the chunk (returned by ChunkL()) that contains the data for the sl@0: histogram within the histogram buffer. sl@0: sl@0: @leave KErrNotSupported if the chunk is not available. May Leave with any other error code as well. sl@0: sl@0: @return The offset in the chunk that contains the start of the histogram data. sl@0: */ sl@0: virtual TInt ChunkOffsetL()=0; sl@0: sl@0: /** sl@0: Releases the buffer. Once the client has processed the histogram data it should sl@0: use this method to signal to the camera that the buffer can be deleted or re-used. sl@0: */ sl@0: virtual void Release()=0; sl@0: }; sl@0: sl@0: #endif // CAMERAHISTOGRAM_H