123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- #ifndef _ARGUS_REPROCESS_INFO_H
- #define _ARGUS_REPROCESS_INFO_H
- namespace Argus
- {
- DEFINE_UUID(InterfaceID, IID_REPROCESS_INFO, dbf2b0b0,7f71,11ec,bf44,08,00,20,0c,9a,66);
- class IReprocessInfo : public Interface
- {
- public:
- static const InterfaceID& id() { return IID_REPROCESS_INFO; }
-
- virtual Status setReprocessingEnable(const bool enable) = 0;
- virtual bool getReprocessingEnable() const = 0;
-
- virtual Status setReprocessingModeResolution(const Size2D<uint32_t>& resolution) = 0;
- virtual Size2D<uint32_t> getReprocessingModeResolution() const = 0;
-
- virtual Status setReprocessingModeScaling(const Point2D<float>& scaling) = 0;
- virtual Point2D<float> getReprocessingModeScaling() const = 0;
-
- virtual Status setReprocessingModeCrop(const Rectangle<float>& crop) = 0;
- virtual Rectangle<float> getReprocessingModeCrop() const = 0;
-
- virtual Status setReprocessingModeFrameRate(const float framerate) = 0;
- virtual float getReprocessingModeFrameRate() const = 0;
-
- virtual Status setReprocessingModeColorFormat(const BayerPhase& phase) = 0;
- virtual BayerPhase getReprocessingModeColorFormat() const = 0;
-
- virtual Status setReprocessingModePixelBitDepth(const uint32_t pixelBitDepth) = 0;
- virtual uint32_t getReprocessingModePixelBitDepth() const = 0;
-
- virtual Status setReprocessingModeDynamicPixelBitDepth(const uint32_t dynamicPixelBitDepth) = 0;
- virtual uint32_t getReprocessingModeDynamicPixelBitDepth() const = 0;
- protected:
- ~IReprocessInfo() {}
- };
- }
- #endif
|