☰
Find the basic food groups present in the food. Is it a meat, or is it a fish? Does it contain vegetables, does it contain egg? Ideal for general diet analysis based on the pyramid of food groups.
Learn more about how to preprocess your images in our Image Pre-processing Tutorial page.
Service available in the following LogMeal Plans:
Currently, there are more than 1300 dishes available for recognition. Each dish has a list of food groups according to its composition. For example, a sushi dish has 'fish' and 'rice' as food groups.
The complete list of food groups currently available are:
The available LogMeal API endpoints for accessing to this service are:
Accessible by the following Types of Users:
🔴 APIUser
Sample Code:
# Parameters img = <'replace-with-path-to-image'> api_user_token = <'replace-with-your-api-user-token'> headers = {'Authorization': 'Bearer ' + api_user_token} # Food Dish/Groups Detection api_url = 'https://api.logmeal.com/v2' endpoint = '/image/segmentation/complete' resp = requests.post(api_url + endpoint, files={'image': open(img, 'rb')}, headers=headers) print(resp.json()['foodFamily']) # display groups only
Sample Response:
[ { "id": 5, "name": "rice", "prob": 0.9994731307029724 }, { "id": 4, "name": "fish", "prob": 0.9935967922210693 } ]
Try now our FREE API Plan and start applying Food Recognition with one line of code!