Denis Candido

Results 5 comments of Denis Candido

@thiesmoeller I'm using your code to record videos from Basler camera but I don't know how to calculate precisely the total amount of time I want to record i.e. the...

The fps problem was being caused by the custom images that I was using at the camera simulation. It seems that the simulation can't produce videos larger than 20 fps....

@JustinLin610 Hello, did you solve this issue? I'm having the same problem.

@zhiltsov-max Unfortunately it gives the following exception: ``` Traceback (most recent call last): File "/home/[email protected]/coccidiose/tests-api-cvat/create-task-sdk.py", line 122, in created_task.export_dataset("COCO 1.0", annotations_filename, include_images=False) File "/home/[email protected]/anaconda3/envs/tf-od-210-310/lib/python3.10/site-packages/cvat_sdk/api_client/model_utils.py", line 201, in __getattr__ return self.__getitem__(attr)...

Thanks! I tried with: ```python with make_client('172.25.40.107', port='8080', credentials=('xxxxx', 'xxxxxx')) as client: print("Sending annotations") annotations_filename = f"./annotations/instances_default.json" task = client.tasks.retrieve(created_task.id) task.import_annotations('COCO 1.0', annotations_filename, status_check_period=0.1) ``` And it worked :)