This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA2SX: how to use Image pyramid algorithm link in vision sdk for tda2

Part Number: TDA2SX
Other Parts Discussed in Thread: TDA2

I want to use Image pyramid algorithm link in vision sdk for tda2, this algorithm link is supported on M4, but the comment for this algorithm link in algorithmLink.h says: 

"Image pyramid algorithm link. Only valid for TDA3x"

typedef enum
{
    ALGORITHM_LINK_IPU_ALG_DMA_SWMS = 0,
    /**< Alg to DMA based SW Mosaic */

    ALGORITHM_LINK_IPU_ALG_OBJECT_DRAW = 1,
    /**< Alg to draw rectangles on the image (Needed by PD) */

    ALGORITHM_LINK_IPU_ALG_ISS_AEWB = 2,
    /**< AEWB for ISS running on IPU1-0. Only valid for TDA3x */

    ALGORITHM_LINK_IPU_ALG_ISS_AEWB1 = 3,
    /**< AEWB for ISS running on IPU1-0. Only valid for TDA3x */

    ALGORITHM_LINK_IPU_ALG_HW_CRC = 4,
    /**< CRC for checking Frame Freeze Detect on IPU1-0. Only valid for TDA3x */

    ALGORITHM_LINK_IPU_ALG_IMG_PYRAMID = 5,
    /**< Image pyramid algorithm link. Only valid for TDA3x */

    ALGORITHM_LINK_IPU_ALG_SCENE_OBSTRUCTION_DETECT = 6,
    /** < Alg to perform SCENE obstruction detection */

    ALGORITHM_LINK_IPU_ALG_DEWARP = 7,
    /**< Plugin to that supports DeWarpping of images, depends on SIMCOP/TDA3x*/

    ALGORITHM_LINK_IPU_ALG_RADAR_PROCESS = 8,
    /**< Alg to perform radar processing */

    ALGORITHM_LINK_IPU_ALG_RVC_DIAGNOSTIC = 9,
    /**< Plugin to support Robust RVC diagnostics register only for TDA2xx */

    ALGORITHM_LINK_IPU_ALG_OPENVX = 10,
    /**< Pluging to support OpenVX */

    ALGORITHM_LINK_IPU_ALG_TIDLPREPROC = 11,
    /**< Alg to do TIDL Pre Process */

     ALGORITHM_LINK_IPU_ALG_VPE_SWMS = 12,
    /**< Alg to VPE based SW Mosaic */

    ALGORITHM_LINK_IPU_ALG_ISS_AEWB2 = 13,
    /**< AEWB for ISS running on IPU1-0 in SRV demo. Only valid for TDA3x */
 
    ALGORITHM_LINK_IPU_ALG_OPENVX_TIDL = 14,
    /**< Pluging to support OpenVX TIDL */

    ALGORITHM_LINK_IPU_ALG_MAXNUM = 15,
    /**< Should be the last value of this enumeration.
     *   Will be used by Link/driver for validating the input parameters. */

    ALGORITHM_LINK_IPU_ALG_FORCE32BITS = 0x7FFFFFFF
    /**< This should be the last value after the max enumeration value.
     *   This is to make sure enum size defaults to 32 bits always regardless
     *   of compiler.
     */
} AlgorithmLink_IpuAlgorithmId;

I don't know why this link is not valid for tda2x.  If I want to use this LINK for tda2x , how to do ?

thanks