Skip to main content

All Questions

Tagged with
0 votes
0 answers
215 views

Blender 3D to 2D Transformation giving wrong bounding box coordinates

Hello fellow stack overflowers, I was trying to use some 6D Pose Estimation algorithm with a custom dataset. Its going pretty good but I need to save the labels aka the 2d coordinates of the bounding ...
reddsoligarch's user avatar
0 votes
1 answer
81 views

Why can't vertex indices be sorted by Z_VIEW in blender python?

Run the following code: import bpy bpy.ops.object.mode_set(mode='EDIT') bpy.ops.mesh.sort_elements(type='VIEW_ZAXIS', elements={'EDGE'}) python console prompt ...
tallien1212's user avatar
1 vote
1 answer
659 views

Select vertices on one side of a cube

The aim is to select the vertices of one side of a cube. My intention was to change the view's orientation using bpy.ops.view3d.viewnumpad and then select the vertices that are visible, using bpy....
milesholt's user avatar
3 votes
0 answers
472 views

Camera pose estimation by matching edges

I've a camera at known location and rotation from where an image of a model is rendered (Top left of the figure). The camera is randomly translated and rotated to a very close unknown location and ...
Debaditya's user avatar
  • 367
9 votes
2 answers
3k views

No redraw after assigning new vertex position with python

I'm trying to write a new operator which modifies my geometry in some way, but I'm struggling with vertex manipulation. I can get the selected vertices fine and also print the individual components. ...
Miguellissimo's user avatar