October 13th, 2021
about 3 years ago by Kili Technology
Changelog
New
- APP / Pose Estimation: You don't have to finish the pose estimation object to edit points anymore. To edit a point while drawing a pose, simply press escape and adjust the point's position. To continue drawing the pose, you simply need to click on the chip of the pose object.
Fix
- APP / Dataset: The thumbnails of video assets should now be properly visible.
- APP / Dataset list: You should only see invitations to join a project on the list of projects.
Change
- APP / Security: We now require an authentication token to access assets uploaded to Kili. In Python, you can fetch URLs with your api key as follows:
api_key = 'x31gbac0-fzif-zebz-8e4f-34718189933'
authorization = f'X-API-Key: {api_key}'
# With requests
res = requests.get(url, headers={'Authorization' : authorization})
# With urllib
req = urllib.request.Request(url)
req.add_header('authorization', authorization)
res = urllib.request.urlopen(req)
- APP / Export: When downloading a project, we now distinguish between the label format (kili, simple, tensorflow (upcoming), etc.) and the export type (latest label per asset or per labeler). Exports are also faster.