Cylinder3D icon indicating copy to clipboard operation
Cylinder3D copied to clipboard

TypeError: No matching definition for argument type(s) array(uint8, 3d, C), array(int32, 2d, C)

Open Avril-Dragon opened this issue 2 years ago • 6 comments

I don't know what happened. There is no such problem on the Internet. Can someone help me?

Avril-Dragon avatar Dec 01 '22 07:12 Avril-Dragon

Me too. Do you have a solution?

I don't know what happened. There is no such problem on the Internet. Can someone help me?

Me too. Do you have a solution?

sheng-yun421 avatar Feb 20 '23 12:02 sheng-yun421

Me too, i get the same error

brahami14 avatar Mar 13 '23 14:03 brahami14

modify the @nb.jit('u1:,:,:', nopython=True, cache=True, parallel=False) in the 379 lines in the dataset_semantickitti.py to @nb.jit('u1:,:,:', nopython=True, cache=True, parallel=False)

skyshoumeng avatar Aug 09 '23 14:08 skyshoumeng

Did anyone find the solution to this problem? @Avril-Dragon @skyshoumeng @sheng-yun421 @brahami14

ShahidNawaz01 avatar Nov 25 '23 15:11 ShahidNawaz01

I'm facing the same issue with flattening the 3D to 2D int ndarray. Kindly share details if anyone solved this issue. TIA

ravishankark1992 avatar Feb 12 '24 04:02 ravishankark1992

I faced exactly the same error with another repository which was based on this one. If you have this issue in the call of nb_process_label you should check that types of arguments correspond to (u1[:,:,:],i8[:,:]). For me setting np.int64 type for grid_ind = (np.floor((np.clip(xyz_pol,min_bound,max_bound)-min_bound)/intervals)).astype(np.int64) helped.

thegoldenbeetle avatar Mar 03 '24 00:03 thegoldenbeetle