.. index:: pair: struct; P1::ImageSdk::StackingOutput .. _doxid-struct_p1_1_1_image_sdk_1_1_stacking_output: struct P1::ImageSdk::StackingOutput =================================== .. toctree:: :hidden: Overview ~~~~~~~~ Struct used for two purposes. the three boolean variables. hasRgbBitmap, hasIrgBitmap, hasNdviBitmap is used to order what type of output to be produced by the stacker. The produced bitmaps are returned in the correcponding: RgbiBitmap, IrgBitmap and NdviBitmap. It is only possible to produce either an RgbiBitmap or an IrgBitmap (and not both in same run). The NdviBitmap can be selected if wanted. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct StackingOutput { // fields bool :ref:`hasRgbiBitmap` =false; bool :ref:`hasIrgBitmap` =false; bool :ref:`hasNdviBitmap` =false; :ref:`P1::ImageSdk::BitmapImage` :ref:`RgbiBitmap`; :ref:`P1::ImageSdk::BitmapImage` :ref:`IrgBitmap`; :ref:`P1::ImageSdk::BitmapImage` :ref:`NdviBitmap`; }; .. _details-struct_p1_1_1_image_sdk_1_1_stacking_output: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Struct used for two purposes. the three boolean variables. hasRgbBitmap, hasIrgBitmap, hasNdviBitmap is used to order what type of output to be produced by the stacker. The produced bitmaps are returned in the correcponding: RgbiBitmap, IrgBitmap and NdviBitmap. It is only possible to produce either an RgbiBitmap or an IrgBitmap (and not both in same run). The NdviBitmap can be selected if wanted. Fields ------ .. index:: pair: variable; hasRgbiBitmap .. _doxid-struct_p1_1_1_image_sdk_1_1_stacking_output_1a979e219f7b115a5d59c27c5b5b44635a: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool hasRgbiBitmap =false If set to true. The stacker will produce an RGBI Bitmap (in member: RgbiBitmap) .. index:: pair: variable; hasIrgBitmap .. _doxid-struct_p1_1_1_image_sdk_1_1_stacking_output_1a4a84733997ef83ec3605397939088eeb: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool hasIrgBitmap =false If set to true. The stacker will produce an IRG Bitmap (in member: IrgBitmap) .. index:: pair: variable; hasNdviBitmap .. _doxid-struct_p1_1_1_image_sdk_1_1_stacking_output_1a07beec54082d64679fae53244fef517a: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool hasNdviBitmap =false If set to true. The stacker will produce an NDVI Bitmap (in member: NdviBitmap). Ndvi is a single channel bitmap calculated based on the equation: (R-I)/(R+I) .. index:: pair: variable; RgbiBitmap .. _doxid-struct_p1_1_1_image_sdk_1_1_stacking_output_1a4b78df8874f5c4e9b968b3351cba246b: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`P1::ImageSdk::BitmapImage` RgbiBitmap This will contain a 4 channel bitmap after stacking if hasRgbiBitmap was set to true. .. index:: pair: variable; IrgBitmap .. _doxid-struct_p1_1_1_image_sdk_1_1_stacking_output_1a29e4d6eba915c0ee7e35d0229615d41d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`P1::ImageSdk::BitmapImage` IrgBitmap This will contain a 3 channel bitmap after stacking if hasIrgBitmap was set to true. .. index:: pair: variable; NdviBitmap .. _doxid-struct_p1_1_1_image_sdk_1_1_stacking_output_1a885b97ccba72370ed1fc332664c7ed63: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`P1::ImageSdk::BitmapImage` NdviBitmap This will contain a 1 channel bitmap after stacking if hasNdviBitmap was set to true.