Home | History | Annotate | Download | only in b_APIEm

Lines Matching refs:ptrA

41 				   struct bpi_DCR* ptrA )
43 ptrA->maxImageWidthE = 0;
44 ptrA->maxImageHeightE = 0;
45 ptrA->imageDataPtrE = NULL;
46 ptrA->imageWidthE = 0;
47 ptrA->imageHeightE = 0;
48 bts_Int16Vec2D_init( &ptrA->offsE );
49 bts_IdCluster2D_init( cpA, &ptrA->mainClusterE );
50 bts_IdCluster2D_init( cpA, &ptrA->sdkClusterE );
51 ptrA->confidenceE = 0;
52 ptrA->approvedE = FALSE;
53 ptrA->idE = 0;
54 ptrA->roiRectE = bts_Int16Rect_create( 0, 0, 0, 0 );
55 bbs_UInt16Arr_init( cpA, &ptrA->cueDataE );
61 struct bpi_DCR* ptrA )
63 ptrA->maxImageWidthE = 0;
64 ptrA->maxImageHeightE = 0;
65 ptrA->imageDataPtrE = NULL;
66 ptrA->imageWidthE = 0;
67 ptrA->imageHeightE = 0;
68 bts_Int16Vec2D_exit( &ptrA->offsE );
69 bts_IdCluster2D_exit( cpA, &ptrA->mainClusterE );
70 bts_IdCluster2D_exit( cpA, &ptrA->sdkClusterE );
71 ptrA->confidenceE = 0;
72 ptrA->approvedE = FALSE;
73 ptrA->idE = 0;
74 bbs_UInt16Arr_exit( cpA, &ptrA->cueDataE );
104 struct bpi_DCR* ptrA,
116 bts_IdCluster2D_create( cpA, &ptrA->mainClusterE, bpi_DCR_MAX_CLUSTER_SIZE, espL );
117 bts_IdCluster2D_size( cpA, &ptrA->mainClusterE, 0 );
119 bts_IdCluster2D_create( cpA, &ptrA->sdkClusterE, bpi_DCR_MAX_SDK_CLUSTER_SIZE, espL );
120 bts_IdCluster2D_size( cpA, &ptrA->sdkClusterE, 0 );
123 bbs_UInt16Arr_create( cpA, &ptrA->cueDataE, cueSizeA, espL );
124 bbs_UInt16Arr_size( cpA, &ptrA->cueDataE, 0 );
126 ptrA->maxImageWidthE = imageWidthA;
127 ptrA->maxImageHeightE = imageHeightA;
149 struct bpi_DCR* ptrA,
154 bbs_DEF_fNameL( "void bpi_DCR_assignGrayByteImage( struct bbs_Context* cpA, struct bpi_DCR* ptrA, const void* bufferPtrA, uint32 widthA, uint32 heightA )" )
156 if( widthA > ptrA->maxImageWidthE || heightA > ptrA->maxImageHeightE )
161 ptrA->maxImageWidthE, ptrA->maxImageHeightE );
171 ptrA->imageDataPtrE = ( void* )bufferPtrA;
172 ptrA->imageWidthE = widthA;
173 ptrA->imageHeightE = heightA;
176 ptrA->roiRectE = bts_Int16Rect_create( 0, 0, widthA, heightA );
177 bts_IdCluster2D_size( cpA, &ptrA->mainClusterE, 0 );
178 bts_IdCluster2D_size( cpA, &ptrA->sdkClusterE, 0 );
179 bbs_UInt16Arr_size( cpA, &ptrA->cueDataE, 0 );
185 struct bpi_DCR* ptrA,
191 bbs_DEF_fNameL( "void bpi_DCR_assignGrayByteImageROI( struct bpi_DCR* ptrA, const void* bufferPtrA, uint32 widthA, uint32 heightA )" )
193 if( widthA > ptrA->maxImageWidthE || heightA > ptrA->maxImageHeightE )
198 ptrA->maxImageWidthE, ptrA->maxImageHeightE );
217 ptrA->imageDataPtrE = ( void* )bufferPtrA;
218 ptrA->imageWidthE = widthA;
219 ptrA->imageHeightE = heightA;
222 ptrA->roiRectE = *pRectA;
223 bts_IdCluster2D_size( cpA, &ptrA->mainClusterE, 0 );
224 bts_IdCluster2D_size( cpA, &ptrA->sdkClusterE, 0 );
225 bbs_UInt16Arr_size( cpA, &ptrA->cueDataE, 0 );
231 const struct bpi_DCR* ptrA )
233 return ptrA->confidenceE;