First public contribution.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #ifndef CAMERAHISTOGRAM_H
23 #define CAMERAHISTOGRAM_H
28 #include <ecam/camerasnapshot.h>
29 #include <ecamcapturecontrol.h>
30 #include <ecamviewfinder.h>
32 #include <ecam/ecamcommonuids.hrh>
34 class MHistogramBuffer;
35 class MCameraHistogram;
36 class MCameraV2Histogram;
38 class MImplementationFactory;
41 The current Version of the TDirectHistogramParameters class.
43 static const TUint KECamDirectHistogramParametersCurrentVersion = 1;
46 @deprecated use MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver, and MClientViewFinderObserver
47 which have callback functions which notify the client about availability of histogram data. These are sent when
48 CCameraV2Histogram::StartHistogram() is called after CCameraV2Histogram::PrepareClientHistogramL(). If
49 CCameraV2Histogram::PrepareClientHistogramL() is not called first then the callback returns KErrBadHandle.
51 Uid used to identify the event that the request for histogram has completed.
52 A callback to MCameraObserver2::HandleEvent() will occur when the histogram data is ready to be retrieved.
53 If a call to StartHistogram() is made without a previous successful call to PrepareHistogramL() then the callback returns KErrBadHandle.
55 static const TUid KUidECamEventCameraHistogram = {KUidECamEventHistogramUidValue};
58 This is the UID which is used to obtain the CCameraHistogram interface, via a call to CCamera::CustomInterface().
60 @see KECamHistogramUidValue
61 @see CCamera::CCameraHistogram
62 @deprecated use KECamV2HistogramUid
64 static const TUid KECamHistogramUid = {KECamHistogramUidValue};
67 This class allows the client to get histogram data in a specified format for an image (for example, luminance based histogram,
68 average colour value histogram, etc).
70 The data generated can be fed to some exposure based algorithm, or directly displayed in the viewfinder.
71 It also allows the client to get and set the properties of a histogram.
73 The client selects histogram parameters calling PrepareHistogramL(). It can then start and stop
74 receiving notifications from the ECam implementation by calling StartHistogramL() and StopHistogramL().
75 The client application using this API should provide MCameraObserver2 interface to be signalled,
76 with event KUidECamEventCameraHistogram, when histogram data is available to be retrieved from
77 the ECam implementation.
78 The client can then retrieve the histogram data from the ECam implementation calling HistograDataL().
80 @note This class provides a standardised client interface for the camera histogram. Classes cannot be derived from it.
82 @note If the class methods leave, the output type parameter value is not guaranteed to be valid.
85 @deprecated use CCamera::CCameraV2Histogram
88 class CCamera::CCameraHistogram : public CBase
94 /** Supported histogram types. */
97 /** No histogram has been specified. */
99 /** Luminance based histogram. */
101 /** The histogram is based on the average value of all three RGB colour components. */
102 EAverageRGB = 0x0002,
103 /** The histogram is based on the value of the red colour component. */
104 ERedComponent = 0x0004,
105 /** The histogram is based on the value of the blue colour component. */
106 EBlueComponent = 0x0008,
107 /** The histogram is based on the value of the green colour component. */
108 EGreenComponent = 0x0010
112 IMPORT_C static CCamera::CCameraHistogram* NewL(CCamera& aCamera);
114 IMPORT_C TUint32 SupportedHistograms();
115 IMPORT_C TUint PrepareHistogramL(CCamera::CCameraHistogram::THistogramType aType);
116 IMPORT_C TUint PrepareDSAHistogramL(CCamera::CCameraHistogram::THistogramType aType, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor);
118 IMPORT_C void StartHistogramL(TUint aHistHandle);
119 IMPORT_C void StopHistogramL(TUint aHistHandle);
120 IMPORT_C void DestroyHistogramL(TUint aHistHandle);
122 IMPORT_C void GetActiveHistogramsL(RArray<TUint>& aActiveHistograms);
123 IMPORT_C void UpdateDSAHistogramPropertiesL(TUint aHistHandle, const TPoint& aPosition, const TSize& aSize, const TRgb& aColor);
124 IMPORT_C void GetDSAHistogramPropertiesL(TUint aHistHandle, TPoint& aPosition, TSize& aSize, TRgb& aColor);
126 IMPORT_C MHistogramBuffer& HistogramDataL();
127 IMPORT_C MHistogramBuffer& HistogramDataL(TUint aHistHandle);
129 IMPORT_C ~CCameraHistogram();
132 CCameraHistogram(CCamera& aOwner);
137 MCameraHistogram* iImpl; // not owned
141 This is the UID which is used to obtain the CCameraV2Histogram interface, via a call to CCamera::CustomInterface().
146 static const TUid KECamV2HistogramUid = {KECamV2HistogramUidValue};
149 This class allows the client to get histogram data in a specified format for an image (for example, luminance based histogram,
150 average colour value histogram, etc).
152 Histogram may be created for still images, video, viewfinders and snapshot. Further different types of histogram may be
153 created for any of the imaging modes.
155 The data generated can be fed to some exposure based algorithm, or directly displayed on the screen.
156 It also allows the client to get and set the properties of a histogram.
158 The client selects histogram parameters calling PrepareClientHistogramL or PrepareDirectHistogramL. It can then start and
159 stop receiving notifications from the ECam implementation by calling StartHistogram() and StopHistogram().
160 The client application using this API shall provide the interfaces: MCaptureImageObserver, MCaptureVideoObserver,
161 MDirectViewFinderObserver and MClientViewFinderObserver in order to receive notifications about direct histogram display
162 or client histogram data availablility.
164 Implementation shall use MHistogramV2Buffer in order to provide client histogram data.
166 @note This class provides a standardised client interface for the camera histogram. Classes cannot be derived from it.
168 @note If the class methods leave, the output type parameter value is not guaranteed to be valid.
174 class CCamera::CCameraV2Histogram : public CBase
177 friend class CCamera;
178 friend CCamera::CCameraV2Histogram* CCamera::CCameraSnapshot::CreateHistogramHandleL() const;
179 friend CCamera::CCameraV2Histogram* CCamera::CCameraImageCapture::CreateHistogramHandleL() const;
180 friend CCamera::CCameraV2Histogram* CCamera::CCameraVideoCaptureControl::CreateHistogramHandleL() const;
181 friend CCamera::CCameraV2Histogram* CCamera::CCameraV2DirectViewFinder::CreateHistogramHandleL() const;
182 friend CCamera::CCameraV2Histogram* CCamera::CCameraClientViewFinder::CreateHistogramHandleL() const;
186 Supported histogram types.
187 The enumeration list may be extended in future.
191 /** No histogram has been specified. */
193 /** Luminance based histogram. */
195 /** The histogram is based on the average value of all three RGB colour components. */
196 EAverageRGB = 0x0002,
197 /** The histogram is based on the value of the red colour component. */
198 ERedComponent = 0x0004,
199 /** The histogram is based on the value of the blue colour component. */
200 EBlueComponent = 0x0008,
201 /** The histogram is based on the value of the green colour component. */
202 EGreenComponent = 0x0010,
203 /** Qualitative Histogram to mark over exposed parts of image. */
204 EOverExposure = 0x0020,
205 /** Qualitative Histogram to mark under exposed parts of image. */
206 EUnderExposure = 0x0040,
210 Specifes the parameters necessary for a direct histogram.
212 class TDirectHistogramParameters
215 IMPORT_C TDirectHistogramParameters();
217 IMPORT_C TUint Size() const;
218 IMPORT_C TUint Version() const;
221 //for future expansion
225 // reserved for future expansion
231 /** The type of histogram to be prepared. This must be one of the supported histogram types returned by
232 SupportedHistograms(). */
233 THistogramType iHistogramType;
234 /** The position on the screen (in pixels) where the histogram is to be displayed. */
236 /** The size of histogram in pixels. */
237 TSize iHistogramSize;
238 /** The colour and alpha blending with which the histogram will be displayed. */
239 TRgb iHistogramColor;
240 /** The background color for the direct histogram. */
241 TRgb iBackgroundColor;
246 IMPORT_C void GetSupportedHistogramsL(TUint& aSupportedHistogramType) const;
247 IMPORT_C void GetDirectHistogramSupportInfoL(TBool& aIsDirectHistogramSupported) const;
249 IMPORT_C void PrepareClientHistogramL(THistogramType aType);
251 IMPORT_C void PrepareDirectHistogramL(const TDirectHistogramParameters& aDirectHistogramParameters);
253 IMPORT_C void UpdateDirectHistogramPropertiesL(const TDirectHistogramParameters& aDirectHistogramParameters);
254 IMPORT_C void GetDirectHistogramPropertiesL(TDirectHistogramParameters& aDirectHistogramParameters) const;
256 IMPORT_C void StartHistogram();
257 IMPORT_C void StopHistogram();
259 IMPORT_C void GetHistogramStateL(TBool& aIsHistogramActive) const;
261 IMPORT_C ~CCameraV2Histogram();
264 IMPORT_C static CCamera::CCameraV2Histogram* CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory);
266 CCameraV2Histogram(CCamera& aOwner);
267 void ConstructL(const MImplementationFactory& aImplFactory);
271 MCameraV2Histogram* iImpl; // not owned
276 // MHistogramBuffer //
280 This class is used to pass histogram data between the camera device and a client that implements MCameraObserver2.
282 The buffer may contain multiple histograms.
284 The class allows the client to access the data as a descriptor to a kernel chunk.
287 @deprecated use MHistogramV2Buffer
289 class MHistogramBuffer
295 @deprecated Only one histogram is available per buffer in MHistogramV2Buffer
297 Returns the number of histograms contained within the buffer.
299 This value will not depend upon the number of images for which histograms are requested by the
300 client, but on the number of histograms generated by the ECam implementation.
301 In the case where the driving mode (bracket mode, video mode, etc.) returns more than one image or frame
302 the ECam implementation may not generate histograms for every valid image or frame. This can happen, for example,
303 if there are no changes in the histogram data or if there are performance problems.
305 @return The number of histograms in the buffer.
307 virtual TInt NumOfHistograms() = 0;
310 @deprecated use CCamera::CCameraV2Histogram::THistogramType MHistogramV2Buffer::Type()
312 Returns the type of histogram data that is available at the specified index within the histogram buffer.
315 The index of the required histogram in the buffer.
316 This must be between 0 and (NumOfHistograms() - 1).
318 @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
320 @return The type of the histogram in the buffer at the given index.
322 virtual CCamera::CCameraHistogram::THistogramType TypeL(TUint aIndex) = 0;
325 @deprecated use TInt MHistogramV2Buffer::ElementSize()
327 Returns the number of bits per histogram element value used to store the histogram data at a
328 specified index within the histogram buffer.
330 The number of bits per histogram element will be decided by the ECam implementation and it may vary
331 for each histogram within the histogram buffer.
333 @see NumOfElementsL()
336 The index of the required histogram in the buffer.
337 This must be between 0 and (NumOfHistograms() - 1).
339 @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
341 @return The histogram element size in bits.
343 virtual TInt ElementSizeL(TUint aIndex) = 0;
346 @deprecated use TInt MHistogramV2Buffer::NumOfElements()
348 Returns the number of elements in the histogram at a specified index within the histogram buffer.
350 This value can be used along with the element size obtained by calling ElementSizeL(), to calculate
351 the exact size of histogram data ( element-size x number-of-elements = histogram-size ).
354 The index of the required histogram in the buffer.
355 This must be between 0 and (NumOfHistograms() - 1).
357 @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
359 @return The number of elements in the histogram.
361 virtual TInt NumOfElementsL(TUint aIndex) = 0;
364 @deprecated use TDesC8* MHistogramV2Buffer::DataL()
366 Allows access to a given histogram in the histogram buffer via a descriptor.
369 The index of the required histogram in the buffer.
370 This must be between 0 and (NumOfHistograms() - 1).
372 @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
374 @return A pointer to a descriptor containing the histogram data.
376 virtual TDesC8* DataL(TUint aIndex) = 0;
379 @deprecated use RChunk& MHistogramV2Buffer::ChunkL()
381 Returns a handle to the chunk that contains the histogram data.
382 The RChunk is exposed so that it can potentially be shared between multiple
384 @note The descriptor pointer returned by DataL() is effectively derived from this RChunk.
386 @leave KErrNotSupported if the chunk is not available.
388 @return A reference to a handle to the chunk containing the histogram data.
390 virtual RChunk& ChunkL() = 0;
393 @deprecated use TInt MHistogramV2Buffer::ChunkOffsetL()
395 Returns the offset in the chunk (returned by ChunkL()) that contains the data for the
396 histogram at a specified index within the histogram buffer.
399 The index of the required histogram in the buffer.
400 This must be between 0 and (NumOfHistograms() - 1).
402 @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
404 @return The offset in the chunk that contains the start of the histogram data.
406 virtual TInt ChunkOffsetL(TUint aIndex) = 0;
409 @deprecated Only one histogram is available per buffer in MHistogramV2Buffer
411 Returns the image number or frame index to which the histogram stored at the specified
412 index within the buffer relates.
415 The index of the required histogram in the buffer.
416 This must be between 0 and (NumOfHistograms() - 1).
418 @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
420 @return The image number or frame index.
422 virtual TInt ImageNumberL(TUint aIndex) = 0;
425 @deprecated Only one histogram is available per buffer in MHistogramV2Buffer
427 Returns the handle of a particular histogram stored in the buffer.
430 The index of the required histogram in the buffer.
431 This must be between 0 and (NumOfHistograms() - 1).
433 @leave KErrArgument if aIndex is not between 0 and (NumOfHistograms() - 1).
435 @return The handle of the histogram on the ECam implementation.
437 virtual TUint HandleL(TUint aIndex) = 0;
440 @deprecated use void MHistogramV2Buffer::Release()
442 Releases the buffer. Once the client has processed the histogram data it should
443 use this method to signal to the camera that the buffer can be deleted or re-used.
445 virtual void Release() = 0;
449 // MHistogramV2Buffer //
453 This class is used to pass histogram data between the camera device and a client that uses CCameraV2Histogram and
454 implements MCaptureImageObserver, MCaptureVideoObserver, MDirectViewFinderObserver and MClientViewFinderObserver.
456 Only one histogram data is available per buffer. ECam implementation will issue another callback once a new histogram
457 data is ready. Till that time, client shall use the histogram data available from the histogram buffer currently retrieved.
459 The class allows the client to access the data as a descriptor to a kernel chunk.
461 @see CCameraV2Histogram
466 class MHistogramV2Buffer
471 Returns the type of histogram data that is available within the histogram buffer.
473 @return The type of the histogram in the buffer at the given index.
475 virtual CCamera::CCameraV2Histogram::THistogramType Type()=0;
478 Returns the number of bits per histogram element value used to store the histogram data within the histogram buffer.
480 The number of bits per histogram element will be decided by the ECam implementation.
482 @see NumOfElementsL()
484 @return Positive value means the histogram element size in bits. Negative value means error case.
486 virtual TInt ElementSize()=0;
489 Returns the number of elements in the histogram within the histogram buffer.
491 This value can be used along with the element size obtained by calling ElementSizeL(), to calculate
492 the exact size of histogram data ( element-size x number-of-elements = histogram-size ).
494 @return Positive value means the number of elements in the histogram. Negative value means error case.
496 virtual TInt NumOfElements()=0;
499 Allows access to the histogram in the histogram buffer via a descriptor.
501 @return A pointer to a descriptor containing the histogram data.
503 @leave May Leave with any error code.
505 virtual TDesC8* DataL()=0;
508 Returns a handle to the chunk that contains the histogram data.
509 The RChunk is exposed so that it can potentially be shared between multiple
511 @note The descriptor pointer returned by DataL() is effectively derived from this RChunk.
513 @leave KErrNotSupported if the chunk is not available. May Leave with any other error code as well.
515 @return A reference to a handle to the chunk containing the histogram data.
517 virtual RChunk& ChunkL()=0;
520 Returns the offset in the chunk (returned by ChunkL()) that contains the data for the
521 histogram within the histogram buffer.
523 @leave KErrNotSupported if the chunk is not available. May Leave with any other error code as well.
525 @return The offset in the chunk that contains the start of the histogram data.
527 virtual TInt ChunkOffsetL()=0;
530 Releases the buffer. Once the client has processed the histogram data it should
531 use this method to signal to the camera that the buffer can be deleted or re-used.
533 virtual void Release()=0;
536 #endif // CAMERAHISTOGRAM_H