AlonSpinner
AlonSpinner
Thanks for the quick reply. I fail to install ifcopenshell from your channel due to conflicts. Here is what I ran: ``` $ conda create --name=pyoccenv751 python=3.8 $ conda activate...
Hi aothms, Thanks for the build :) I copied the 3.8 version into my conda-env site-packages and ran into two errors: 1) ' /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found' 2) 'IfcOpenShell...
I'll try to make a workaround function SetCameraIntrinsics(fx,fy,px,py) with these: ``` cam.SetDistance cam.SetFOVy cam.SetZFocus cam.SetZRange cam.SetIOD cam.SetScale cam.SetTile cam.SetAspect ```
Using : http://www.songho.ca/opengl/gl_projectionmatrix.html def setOrthographicProjectionMatrix(cam,scale,aspect,n,f): # P1[0,0] = 2/scale # P1[1,1] = aspect*2/scale # P1[2,2] = -2/(f-n) # P1[2,3] = -(f+n)/(f-n) cam.SetProjectionType(cam.Projection_Orthographic) cam.SetZRange(n,f) #affects P1[2,2] P1[3,2] cam.SetScale(scale) #affects P1[1,1] P1[0,0]...
Here for the same issue! have you made any progress @jessebraham ?
Here for the same feature aswell
Hi, I am also facing some problems with ChAruCo detection. This is the board used (opencv-python, 4.8) marker_length: 7.35294117647 #mm square_length: 12.5 #mm pattern_size: [20,10] aruco_dict: 1 #aruco.DICT_4X4_100 code used...