@@ -335,40 +335,40 @@ cdef class PyMat:
335
335
336
336
def get_value (self , x , y , memory_type = PyMEM.PyMEM_CPU):
337
337
cdef uchar1 value1u
338
- cdef types.Vector2[uchar1]* value2u = new types.Vector2[uchar1]()
339
- cdef types.Vector3[uchar1]* value3u = new types.Vector3[uchar1]()
340
- cdef types.Vector4[uchar1]* value4u = new types.Vector4[uchar1]()
338
+ cdef types.Vector2[uchar1] value2u = types.Vector2[uchar1]()
339
+ cdef types.Vector3[uchar1] value3u = types.Vector3[uchar1]()
340
+ cdef types.Vector4[uchar1] value4u = types.Vector4[uchar1]()
341
341
342
342
cdef float1 value1f
343
- cdef types.Vector2[float1]* value2f = new types.Vector2[float1]()
344
- cdef types.Vector3[float1]* value3f = new types.Vector3[float1]()
345
- cdef types.Vector4[float1]* value4f = new types.Vector4[float1]()
343
+ cdef types.Vector2[float1] value2f = types.Vector2[float1]()
344
+ cdef types.Vector3[float1] value3f = types.Vector3[float1]()
345
+ cdef types.Vector4[float1] value4f = types.Vector4[float1]()
346
346
347
347
if self .get_data_type() == PyMAT_TYPE.PyMAT_TYPE_8U_C1:
348
348
status = getValueUchar1(self .mat, x, y, & value1u, memory_type.value)
349
349
return types.PyERROR_CODE(status), self .get_data()[x, y]
350
350
elif self .get_data_type() == PyMAT_TYPE.PyMAT_TYPE_8U_C2:
351
- status = getValueUchar2(self .mat, x, y, value2u, memory_type.value)
351
+ status = getValueUchar2(self .mat, x, y, & value2u, memory_type.value)
352
352
return types.PyERROR_CODE(status), np.array([value2u.ptr()[0 ], value2u.ptr()[1 ]])
353
353
elif self .get_data_type() == PyMAT_TYPE.PyMAT_TYPE_8U_C3:
354
- status = getValueUchar3(self .mat, x, y, value3u, memory_type.value)
354
+ status = getValueUchar3(self .mat, x, y, & value3u, memory_type.value)
355
355
return types.PyERROR_CODE(status), np.array([value3u.ptr()[0 ], value3u.ptr()[1 ], value3u.ptr()[2 ]])
356
356
elif self .get_data_type() == PyMAT_TYPE.PyMAT_TYPE_8U_C4:
357
- status = getValueUchar4(self .mat, x, y, value4u, memory_type.value)
357
+ status = getValueUchar4(self .mat, x, y, & value4u, memory_type.value)
358
358
return types.PyERROR_CODE(status), np.array([value4u.ptr()[0 ], value4u.ptr()[1 ], value4u.ptr()[2 ],
359
359
value4u.ptr()[3 ]])
360
360
361
361
elif self .get_data_type() == PyMAT_TYPE.PyMAT_TYPE_32F_C1:
362
362
status = getValueFloat1(self .mat, x, y, & value1f, memory_type.value)
363
363
return types.PyERROR_CODE(status), self .get_data()[x, y]
364
364
elif self .get_data_type() == PyMAT_TYPE.PyMAT_TYPE_32F_C2:
365
- status = getValueFloat2(self .mat, x, y, value2f, memory_type.value)
365
+ status = getValueFloat2(self .mat, x, y, & value2f, memory_type.value)
366
366
return types.PyERROR_CODE(status), np.array([value2f.ptr()[0 ], value2f.ptr()[1 ]])
367
367
elif self .get_data_type() == PyMAT_TYPE.PyMAT_TYPE_32F_C3:
368
- status = getValueFloat3(self .mat, x, y, value3f, memory_type.value)
368
+ status = getValueFloat3(self .mat, x, y, & value3f, memory_type.value)
369
369
return types.PyERROR_CODE(status), np.array([value3f.ptr()[0 ], value3f.ptr()[1 ], value3f.ptr()[2 ]])
370
370
elif self .get_data_type() == PyMAT_TYPE.PyMAT_TYPE_32F_C4:
371
- status = getValueFloat4(self .mat, x, y, value4f, memory_type.value)
371
+ status = getValueFloat4(self .mat, x, y, & value4f, memory_type.value)
372
372
return types.PyERROR_CODE(status), np.array([value4f.ptr()[0 ], value4f.ptr()[1 ], value4f.ptr()[2 ],
373
373
value4f.ptr()[3 ]])
374
374
0 commit comments