mwindowshz
mwindowshz
> hello everyone, i am also struggling with the same issue ,but i figured out how to get the parser.py to access your edx course structure after going through multiple...
Hi I am trying to understand how to fix this issue. unfortunately @masc-it repository does not work. I am using vscode, and have very limited autocomplete while writing code. mostly...
seems like the issue is with language serever. by changing it to jedi auto complete seems to work!! so go to setting in vscode search for server, and python and...
I found this answer in pylance (vs code default python langage server) about producing some generate stub that can be used when a project is using Cython https://github.com/microsoft/pylance-release/issues/674#issuecomment-1104716079 Maybe this...
code to display image using opengl and imgui without pygame ``` def draw_image_with_pyimgui(opencv_img): height ,width, depth = opencv_img.shape if depth==3: opencv_img = cv2.cvtColor(opencv_img, cv2.COLOR_BGR2RGBA ) texture = gl.glGenTextures(1) gl.glBindTexture(gl.GL_TEXTURE_2D, texture)...
Yes this would be a great feature, just like in Spyder the debug console is limited and not easy to use. Interactive python is much better
Hi Just found out your question, TFRecords save the jpg data and boxes data in same file. I loaded a file, with functions to read tfrecords, you can use this,...