Search found 8 matches

by linzijie876
06 Apr 2024, 09:26
Forum: General questions
Topic: How to output images from coppeliasim?
Replies: 1
Views: 166

How to output images from coppeliasim?

I can use screenshot software to record the scene but it is not clear.

Can I output the image of scene with a high quality (at least 600dpi) from coppeliasim?
by linzijie876
05 Apr 2024, 13:16
Forum: General questions
Topic: How can I input sequence of Pose into Coppelisasim just to display animation?
Replies: 3
Views: 172

Re: How can I input sequence of Pose into Coppelisasim just to display animation?

Make sure the object to animate is static, then apply the poses sequentially with sim.setObjectPose, e.g.: function sysCall_init() handle = sim.getObject '.' poses = { {0, 0, 0, 0, 0, 0, 1}, {0, 0, 0, 0, 0, 0, 1}, ... } end function sysCall_actuation() index = (index or 0) + 1 if index <= #poses th...
by linzijie876
04 Apr 2024, 16:00
Forum: General questions
Topic: How can I input sequence of Pose into Coppelisasim just to display animation?
Replies: 3
Views: 172

How can I input sequence of Pose into Coppelisasim just to display animation?

I simulate a complex mathematical model in MATLAB to get a sequence of Pose(Frame Transformation Matrix) of a complex Robot. In order to clearly display my results, I want to input this sequence of Transformation Matrix into Coppeliasim for animation. So, the Robot can move in the coppeliasim. Just ...
by linzijie876
04 Sep 2023, 11:11
Forum: General questions
Topic: How to import a new 3d model with color or texture
Replies: 1
Views: 377

How to import a new 3d model with color or texture

I have built a nice 3D-model spacecraft in Blender. Its different parts have different color. I can convert it into other file format in Blender.


Which file format do i need to save such a 3d model and then import to coppelia? The color or texture must be reserved in coppelia.
by linzijie876
13 Apr 2023, 03:30
Forum: General questions
Topic: Can I add texture to vision sensor?
Replies: 1
Views: 210

Can I add texture to vision sensor?

I can change the color of a vision sensor, but I want to change the texture of exquisite one. There seems to be no corresponding interface.
by linzijie876
08 Apr 2023, 07:24
Forum: General questions
Topic: About installation of ZeroMQ remote API for Matlab
Replies: 2
Views: 370

Re: About installation of ZeroMQ remote API for Matlab

Are there any more detailed materials or demo about complete procedure to set ZeroMQ in Matlab? There is few related tutorial on the internet.
by linzijie876
07 Apr 2023, 11:39
Forum: General questions
Topic: About installation of ZeroMQ remote API for Matlab
Replies: 2
Views: 370

About installation of ZeroMQ remote API for Matlab

In the User Manual, it says "Matlab clients require the bundled JeroMQ, which installs automatically if not yet present." The first step of using ZeroMQ in Matlab is to install JeroMQ. However, I do not know how to complete this operation. After I download the code from Github(JeroM https:...
by linzijie876
06 Apr 2023, 10:59
Forum: General questions
Topic: How can I get the focal length (Unit: mm) of Vision Sensor
Replies: 1
Views: 256

How can I get the focal length (Unit: mm) of Vision Sensor

I want to get the parameter (focal length) of a vision sensor. However, method from other topics is using resolution and perspective angle to get the focal length in pixel.


I need the specific focal length in millimeter unit. What i need may also be the size of a pixel in international unit.