Search found 121 matches

by zhy149
16 Feb 2022, 06:17
Forum: General questions
Topic: vision sensor calibration
Replies: 5
Views: 827

vision sensor calibration

hello, I have an intel real sense d435 camera in the real world. I want to do some surface grasping problems both in simulation and the real world. To simulate real-world noise, I plan to rotate and place the camera with some noise and do calibration, could you give me some hints on how to do this o...
by zhy149
11 Jan 2022, 17:48
Forum: General questions
Topic: Macbook Air M1 compatibility and efficiency
Replies: 2
Views: 598

Re: Macbook Air M1 compatibility and efficiency

Hello, which remote API and what language are you using? If using Python, I highly recommend to use the ZeroMQ-based remote API . Please try with that one and see if the problem persists. Additionally, try to keep CoppeliaSim in the foreground and see if that makes a difference. On macOS there can ...
by zhy149
10 Jan 2022, 01:52
Forum: General questions
Topic: Macbook Air M1 compatibility and efficiency
Replies: 2
Views: 598

Macbook Air M1 compatibility and efficiency

Hello, it seems that when I try to start remote api from the server side, the script runs very slow and gets stuck always. Also, it responds very slowly when I stop the simulation. I'm thinking perhaps it's because of an operating system compatibility issue. Can anyone give me some hints on this? I'...
by zhy149
09 Jan 2022, 23:19
Forum: General questions
Topic: MAC Using Python Remote API Failed
Replies: 3
Views: 581

Re: MAC Using Python Remote API Failed

by the way, I want to start and close the session from the python client-side automatically. Is this possible on Mac? I have a m1 version macbook air with the latest os.
by zhy149
09 Jan 2022, 23:08
Forum: General questions
Topic: MAC Using Python Remote API Failed
Replies: 3
Views: 581

MAC Using Python Remote API Failed

Hello, I'm using remote API for python on Mac. I opened a new scene and copied the required files into a folder. But the connection failed when I ran the test.py given in the coppeliasim python remote API folder. Could you give me some hints on how it could run? Like which port is the default port, ...
by zhy149
03 Jan 2022, 22:48
Forum: General questions
Topic: MacOS 12.1 Cannot Install CoppeliaSim EDU version
Replies: 2
Views: 533

Re: MacOS 12.1 Cannot Install CoppeliaSim EDU version

Hello, does this post solve your issue? Cheers Hello, I just successfully installed the software. After different trials, I think the post you mentioned has a valid point which might be helpful to other people who have M1 machines: move the package to be installed to application folder first, and t...
by zhy149
03 Jan 2022, 16:52
Forum: General questions
Topic: MacOS 12.1 Cannot Install CoppeliaSim EDU version
Replies: 2
Views: 533

MacOS 12.1 Cannot Install CoppeliaSim EDU version

Hello,

I cannot install CoppeliaSim EDU version, and APPLE told me that this may be that the version doesn't match my OS version, could you provide a new Mac version that does work for 12.1 MacOS?
Thank you very much!
by zhy149
19 Oct 2021, 03:05
Forum: General questions
Topic: setStringSignal and getStringSignal between python remote api and coppeliasim
Replies: 1
Views: 6727

setStringSignal and getStringSignal between python remote api and coppeliasim

Hello,

I tried to set a string signal using python api and get the signal on coppeliasim side but this doesn't work. However, one time setStringSignal from python side using oneshot mode doesn't work. Is there any prerequisite to do this successfully?

Thank you!
by zhy149
27 Aug 2021, 20:52
Forum: General questions
Topic: Pack Table in Coppeliasim and Unpack in Python Remote API
Replies: 1
Views: 2447

Pack Table in Coppeliasim and Unpack in Python Remote API

Hello Coppelia, I see that there are multiple different ways to pack table in Lua scripts: such as packInt, packFloat, packDouble, packTable, etc. But there are only unpackInt and unpackFloat for the remote API, what if I want to pack table of table such as {{1,2,3 },{3,4,5}} and unpack them in pyth...
by zhy149
11 Aug 2021, 14:04
Forum: General questions
Topic: Start a motion after the previous motion is done (or command)
Replies: 1
Views: 4361

Start a motion after the previous motion is done (or command)

Hello Coppelia, I'd like to achieve the effect that a command is executed after the previous one is fully finished. For example, I have two Inverse Kinematics movements, but I want the second one to be executed after the first one is done (now what I do is to do sim.wait(some time) or use time.sleep...