Search found 4 matches

by pbustos
20 Mar 2020, 15:19
Forum: Bug reports
Topic: Error inserting model from file using b0 Python API
Replies: 2
Views: 2888

Error inserting model from file using b0 Python API

Hello, I am trying to insert a model from the Python b0 API: #!/usr/bin/env python3 import b0RemoteApi client = b0RemoteApi.RemoteApiClient('b0RemoteApi_pythonClient','b0RemoteApiAddOn') r1 = client.simxLoadModelFromFile('cup.ttm', client.simxServiceCall()) while(True): pass And get the following er...
by pbustos
20 Jan 2020, 17:57
Forum: Bug reports
Topic: Memory leak with b0-based simxGetVisionSensorImage
Replies: 2
Views: 2538

Re: Memory leak with b0-based simxGetVisionSensorImage

Thank you very much,

it works fantastic now, no memory leaks.

Pablo
by pbustos
15 Jan 2020, 19:09
Forum: Bug reports
Topic: Memory leak with b0-based simxGetVisionSensorImage
Replies: 2
Views: 2538

Memory leak with b0-based simxGetVisionSensorImage

Hello, I have a simple Python script that read images from a scene's camera: import vrep, b0RemoteApi client = b0RemoteApi.RemoteApiClient('b0RemoteApi_pythonClient','b0RemoteApiAddOn') wall_camera = client.simxGetObjectHandle('camera_1_rgb', client.simxServiceCall()) while True: a,resolution,image ...